Difference between revisions of "Installation on Debian"

From Linux-VServer

Jump to: navigation, search
(Distro Specific Notes)
(22 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''Note:''' Debian 6.0 is the final version to include precompiled Linux-Vserver kernels. In newer versions (including Debian Testing), you'll have to compile the kernel yourself or [http://linux-vserver.org/Frequently_Asked_Questions#Were_can_I_get_newer_versions_of_VServer_as_ready_made_packages_for_Debian.3F use a pre-packaged kernel]. [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574529]
+
Debian 6.0 'Squeeze' was the final version to include precompiled Linux-Vserver kernels [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574529]. In newer versions (including Debian Testing), you'll have to compile the kernel yourself or use a pre-packaged kernel. Information on alternative Debian repositories with more functional packages is [[Frequently_Asked_Questions#Were_can_I_get_newer_versions_of_VServer_as_ready_made_packages_for_Debian.3F | contained in this section of the FAQ]]. If you need to compile your own kernel, you need to apply the vserver-version.patch. See the [http://linux-vserver.org/Welcome_to_Linux-VServer.org]
  
Here is a list of kernels and util-vserver packages and their preferred sources/versions.
+
Here is a list of kernels and util-vserver in Debian's own repository and the actively maintained repo.psand.net repository:
  
  
Line 7: Line 7:
 
!Debian release  
 
!Debian release  
 
!repo.psand.net Kernel Version
 
!repo.psand.net Kernel Version
 +
!repo.psand.net Util-VServer Version
 
!Debian Kernel version
 
!Debian Kernel version
!Util-VServer version
+
!Debian Util-VServer version
 +
|-
 +
| Debian 8.0 Jessie
 +
| 3.14 3.18
 +
| 0.30.216-pre3120
 +
| x
 +
| 0.30.216-pre3054-1
 +
|-
 +
| Debian 7.0 Wheezy
 +
| 3.2 3.4 3.10 3.14 3.18
 +
| 0.30.216-pre3120
 +
| x
 +
| x
 
|-
 
|-
 
| Debian 6.0 Squeeze
 
| Debian 6.0 Squeeze
|  
+
| 2.6.36 2.6.38 3.0 3.2
 +
| 0.30.216-pre3038
 
| 2.6.32
 
| 2.6.32
| 2.3.0.36.29.6
+
| 0.30.216-pre2864
 
|-
 
|-
 
| Debian 5.0 Lenny  
 
| Debian 5.0 Lenny  
|  
+
| 2.6.36
 +
| 0.30.216-pre2925
 
| 2.6.26+17
 
| 2.6.26+17
 
| 2.3.0.35
 
| 2.3.0.35
 
|-
 
|-
 
| Debian 4.0 Etch
 
| Debian 4.0 Etch
|  
+
| x
 +
| x
 
| 2.6.18+6
 
| 2.6.18+6
 
| 2.0.2.2-rc9
 
| 2.0.2.2-rc9
Line 27: Line 43:
 
|}
 
|}
  
 
 
Information on alternative Debian repositories with more functional packages is [[Frequently_Asked_Questions#Were_can_I_get_newer_versions_of_VServer_as_ready_made_packages_for_Debian.3F | contained in this section of the FAQ]].
 
 
If you need to compile your own kernel, you need to apply the vserver-version.patch. See the [http://linux-vserver.org/Welcome_to_Linux-VServer.org]
 
  
  
Line 43: Line 54:
  
  
= Distro Specific Notes =
+
== Distro Specific Notes ==
  
=== Issues with Wheezy's 3.2.55 Kernel and Util-vserver ===
+
=== Jessie ===
 +
 
 +
==== Systemd on guests ====
 +
 
 +
For building new guests, or upgrading old ones, systemd needs to be prevented from installing.
 +
 
 +
* To make sure systemd is not present after upgrade see [http://without-systemd.org/wiki/index.php/How_to_remove_systemd_from_a_Debian_jessie/sid_installation]
 +
* To install a guest without systemd present a working example is:
 +
 
 +
vserver jessie64 build  -n jessie64 -m debootstrap --i-know-its-there \
 +
--context 44000 --hostname jessie64.whatever.com -- \
 +
-d jessie -- --arch=amd64 --include=sysvinit-core,sysvinit,sysvinit-utils \
 +
--exclude=systemd;
 +
 
 +
==== Systemd on hosts ====
 +
 
 +
Systemd must also be removed from hosts. With it present the host will loose it's /proc /sys and /dev on host starts or stops. See advice on how to remove it at [http://without-systemd.org/wiki/index.php/How_to_remove_systemd_from_a_Debian_jessie/sid_installation].
 +
 
 +
==== Getting Jessie Guests to Shutdown Properly ====
 +
 
 +
Disable "/etc/init.d/sendsigs" completely, so it doesn't kill off any processes too early (vserver stop will do that anyway if it hits the timeout).
 +
 
 +
  rm /etc/init.d/sendsigs
 +
  update-rc.d sendsigs remove
 +
 
 +
I also removed the "halt" and "reboot" scripts, though that's probably not necessary.
 +
 
 +
Add kill script links in /etc/rc6.d  for "cron", "dbus" and "ssh". These don't exist because their init scripts have a blank "Default-Stop" header. The simplest way to remedy this is to add override headers in /etc/insserv/overrides and force insserv to rebuild the links; this is a bit convoluted but is better than modifying the init scripts in case an upgraded package has newer ones, which won't be installed if the originals have been modified.
 +
 
 +
  for s in cron dbus ssh; do
 +
    sed -rn -e 's/^(# Default-Stop:).*$/\1 0 1 6/' -e '/^### BEGIN INIT INFO/,/^### END INIT INFO/p' /etc/init.d/$s > /etc/insserv/overrides/$s
 +
  done
 +
  /sbin/insserv -v -d
 +
 
 +
 
 +
 
 +
 
 +
 
 +
=== Wheezy ===
 +
 
 +
 
 +
 
 +
There are some issues with Wheezy's 3.2.55 Kernel and Util-vserver.
  
 
* Util-vserver 0.30.216-pre3060-1 from the APT repository (repo.psand.net) moves vshelper to a new location.  If you attempt to manage guests (restart, start, etc) without restarting the util-vserver service, vserver will display "vshelper functionality" errors.  The util-vserver service will notify the kernel of the new location when the service is restarted.  However, restarting util-vserver will also restart all of your guests.  You can immediately notify the kernel of the new vshelper location (without restarting util-vserver or your guests) by running the following command:
 
* Util-vserver 0.30.216-pre3060-1 from the APT repository (repo.psand.net) moves vshelper to a new location.  If you attempt to manage guests (restart, start, etc) without restarting the util-vserver service, vserver will display "vshelper functionality" errors.  The util-vserver service will notify the kernel of the new location when the service is restarted.  However, restarting util-vserver will also restart all of your guests.  You can immediately notify the kernel of the new vshelper location (without restarting util-vserver or your guests) by running the following command:
 
  echo /usr/lib/x86_64-linux-gnu/util-vserver/vshelper >| /proc/sys/kernel/vshelper
 
  echo /usr/lib/x86_64-linux-gnu/util-vserver/vshelper >| /proc/sys/kernel/vshelper
  
=== Issues with Squeeze's 2.6.32 Kernel and Util-vserver ===
+
=== Squeeze ===
 +
 
 +
There is one small issues with Squeeze's own Util-vserver:
  
 
* Util-vserver shipping with debian, does not have the symbolic link for squeeze, fixed by  
 
* Util-vserver shipping with debian, does not have the symbolic link for squeeze, fixed by  
 
   ln -s debian /usr/lib/util-vserver/distributions/squeeze
 
   ln -s debian /usr/lib/util-vserver/distributions/squeeze
  
=== Issues with Lenny's 2.6.26 Kernel and Util-vserver ===
+
=== Lenny ===
 +
 
 +
There are many issues with Lenny's own 2.6.26 Kernel and Util-vserver.
  
 
In lenny the tools are for the 2.2 version of vservers, you can find on beng repository packages for the 2.3 version of util-vserver until it is integrated in debian. See  
 
In lenny the tools are for the 2.2 version of vservers, you can find on beng repository packages for the 2.3 version of util-vserver until it is integrated in debian. See  

Revision as of 12:33, 14 March 2016

Debian 6.0 'Squeeze' was the final version to include precompiled Linux-Vserver kernels [1]. In newer versions (including Debian Testing), you'll have to compile the kernel yourself or use a pre-packaged kernel. Information on alternative Debian repositories with more functional packages is contained in this section of the FAQ. If you need to compile your own kernel, you need to apply the vserver-version.patch. See the [2]

Here is a list of kernels and util-vserver in Debian's own repository and the actively maintained repo.psand.net repository:


Debian release repo.psand.net Kernel Version repo.psand.net Util-VServer Version Debian Kernel version Debian Util-VServer version
Debian 8.0 Jessie 3.14 3.18 0.30.216-pre3120 x 0.30.216-pre3054-1
Debian 7.0 Wheezy 3.2 3.4 3.10 3.14 3.18 0.30.216-pre3120 x x
Debian 6.0 Squeeze 2.6.36 2.6.38 3.0 3.2 0.30.216-pre3038 2.6.32 0.30.216-pre2864
Debian 5.0 Lenny 2.6.36 0.30.216-pre2925 2.6.26+17 2.3.0.35
Debian 4.0 Etch x x 2.6.18+6 2.0.2.2-rc9


Contents

Building util-vserver Packages

Download the source, unpack it, enter the directory you just unpacked and run:

dpkg-buildpackage -rfakeroot -us -uc

You may need to satisfy some dependencies for this to work.


Distro Specific Notes

Jessie

Systemd on guests

For building new guests, or upgrading old ones, systemd needs to be prevented from installing.

  • To make sure systemd is not present after upgrade see [3]
  • To install a guest without systemd present a working example is:
vserver jessie64 build   -n jessie64 -m debootstrap --i-know-its-there \
--context 44000 --hostname jessie64.whatever.com -- \
-d jessie -- --arch=amd64 --include=sysvinit-core,sysvinit,sysvinit-utils \
--exclude=systemd;

Systemd on hosts

Systemd must also be removed from hosts. With it present the host will loose it's /proc /sys and /dev on host starts or stops. See advice on how to remove it at [4].

Getting Jessie Guests to Shutdown Properly

Disable "/etc/init.d/sendsigs" completely, so it doesn't kill off any processes too early (vserver stop will do that anyway if it hits the timeout).

 rm /etc/init.d/sendsigs
 update-rc.d sendsigs remove

I also removed the "halt" and "reboot" scripts, though that's probably not necessary.

Add kill script links in /etc/rc6.d for "cron", "dbus" and "ssh". These don't exist because their init scripts have a blank "Default-Stop" header. The simplest way to remedy this is to add override headers in /etc/insserv/overrides and force insserv to rebuild the links; this is a bit convoluted but is better than modifying the init scripts in case an upgraded package has newer ones, which won't be installed if the originals have been modified.

 for s in cron dbus ssh; do
   sed -rn -e 's/^(# Default-Stop:).*$/\1 0 1 6/' -e '/^### BEGIN INIT INFO/,/^### END INIT INFO/p' /etc/init.d/$s > /etc/insserv/overrides/$s
 done
 /sbin/insserv -v -d



Wheezy

There are some issues with Wheezy's 3.2.55 Kernel and Util-vserver.

  • Util-vserver 0.30.216-pre3060-1 from the APT repository (repo.psand.net) moves vshelper to a new location. If you attempt to manage guests (restart, start, etc) without restarting the util-vserver service, vserver will display "vshelper functionality" errors. The util-vserver service will notify the kernel of the new location when the service is restarted. However, restarting util-vserver will also restart all of your guests. You can immediately notify the kernel of the new vshelper location (without restarting util-vserver or your guests) by running the following command:
echo /usr/lib/x86_64-linux-gnu/util-vserver/vshelper >| /proc/sys/kernel/vshelper

Squeeze

There is one small issues with Squeeze's own Util-vserver:

  • Util-vserver shipping with debian, does not have the symbolic link for squeeze, fixed by
 ln -s debian /usr/lib/util-vserver/distributions/squeeze

Lenny

There are many issues with Lenny's own 2.6.26 Kernel and Util-vserver.

In lenny the tools are for the 2.2 version of vservers, you can find on beng repository packages for the 2.3 version of util-vserver until it is integrated in debian. See

Hard CPU scheduling

This will not work in the Debian 'Lenny' Kernel, the patch used simply does not contain any of this functionality.

Problems due to Xattrs

There are two sets of issues within the Lenny kernel caused by the change in value of the Xattrs (extended attributes) applied to file in Vserver setups. The patch used in Debian Lenny uses Xattr flags which are set in positions which differ from the flags set by Debian kernels as well as most of the mainline Vserver patches. This result is that Xattrs of files in a non lenny system appear to have completely different flags in Lenny and vice versa. Since these flags are crucial to vserver hashification and chroot security, they can have devastating effects on Vserver guests and on host system security. If you have recently moved to or away from the stock Lenny Vserver kernel, have look at the symptoms below to see if any match your experiences, and apply the fixes/use another kernel as you see fit.

As of writing these issue has not been corrected within the Debian archive. These fixes must be applied whenever moving vserver guest from or to the Debian 'Lenny's vserver kernel. For more details and a more concise explanation see Bertls IRC explanation .

Chroot Security Problems

Linux-Vserver uses file Xattrs to protect guest superusers from being able to view files above their root, preventing access to host file. This creates issues for anyone who:

  • has created a guest with a Debian 2.6.26-*-vserver kernel and wishes to use it with another kernel.
  • has created a guest with a different kernel and wishes to use it on a Debian 2.6.26-*-vserver kernel based host.

In effect, the barrier normally in place for guest servers is not recognised by the kernel (the chroot problem) in the situation above and/or immutable links will not function correctly (the unification problem)failing to break when overwritten) in a unified guest setup. Symptoms suffered may include:

  • the possibility of vserver guest processes escaping their chroots and accessing other parts of the filesystem
  • guest not starting

To fix the barrier flags for a current kernel, see these instructions. Note that on some setups a barrier flags will appear on all directories under the guest hierarchy, and need to be unset in order to allow the servers to run. Use showattr to reveal the state of play for your guests and fix appropriately.

Unification Problems

There is a discrepancy between the immutable-unlink flag used for file unification, the process used in vhashify. This creates considerable issues for anyone who:

  • has unified guests with a Debian 2.6.26-*-vserver kernel and wishes to use them with another kernel.
  • has unified guests with a different kernel and wishes to then it on a Debian 2.6.26-*-vserver kernel based host.

Symptoms suffered may include:

  • file that cannot be deleted
  • any process involving the writing of files in guests not working
  • files not being unlinked on write

To fix the problem each file must be unlinked then the unification re-applied, or one could try this script submitted to bugs.debian.org.


/proc/mounts issue

The vserver's /proc/mounts let appear the vserver path on the host. lsof (for example) is able to print it.

"Ghosts" guests

Issue

Sometimes a guests loose it's name in vserver-stats and is acting like a zombie. It's impossible to restart or kill it. Stopping all the guests with the util-vserver init.d script doesn't solve the issue. vkill --xid $CTX doesn't either.

Fix
 echo 50 > /var/run/vservers/$vserver

Seems to fix the issue




References

Personal tools