Tag: debian
Running Xen on Various Linux Distributions
by specialj on Jan.29, 2010, under virtualization
I have been looking to various GNU/Linux distributions to determine their level of support for Xen. Here’s what I found:
- Debian Etch – Xen Hypervisor 3.2.1 (via backports), Linux kernel 2.6.26 (via backports)
- Debian Lenny – Xen Hypervisor 3.2.1, Linux dom0 kernel 2.6.26
- Debian Squeeze (testing) – Xen Hypervisor 3.4.2, Linux dom0 kernel ???
- Ubuntu 8.04 (Hardy) – Xen Hypervisor 3.3.0 (via backports), Linux dom0 kernel 2.6.24
- Ubuntu 8.10-10.04 (Intrepid-Lucid) – Xen Hypervisor 3.3.0, no Linux dom0 kernel
- OpenSuse 11.2 – Xen Hypervisor 3.4.1, Linux dom0 kernel 2.6.31
As much as I like Debian and Debian based distros I think OpenSuse is probably the best platform for hosting Xen at the moment.
Setting up a user with only scp and sftp access
by specialj on Jan.19, 2010, under Sysadmin
In the olden days one had to use packages such as scponly and rssh in order to restrict a user account to just being able to use scp and sftp. Now that functionality is built into OpenSSH. A client wanted me to setup such an account for 1 user on a system. I modified sshd_config like this:
Match user username ChrootDirectory /home/%u ForceCommand internal-sftp X11Forwarding no AllowTcpForwarding no
Note that this only works in Ubuntu 8.10 and later and Debian 5.0 and later. Also, be aware that the home directry has to be owned by root and not writable by the user for security reason. So a directory inside the home directory will need to be created for the user to upload any files.