We currently migrate to MediaWiki from our old installation, but not all content has been migrated yet. Take a look at the Wiki Team page for instructions how to help or browse through our new wiki at wiki.linux-vserver.org to find the information already migrated.
Host:
Guest:
Debian is lacking the required rpm tools to install a SuSE/SLES? system directly (the required apt-rpm is available in source only for apt-0.5.xx, and Debian is already at 0.6.xx).
chkconfig -d -f boot.swap boot.isapnp boot.idedma boot.loadmodules \ boot.device-mapper boot.md boot.proc boot.shm boot.sched \ boot.rootfsck hotplug boot.localfs boot.crypto boot.clock \ boot.scpm boot.ipconfig chkconfig -d -f coldplug irq_balancer random network fbset powersaved kbd hwscan
SuSE's /etc/init.d/rc expects two enviromnet variables: RUNLEVEL and PREVLEVEL. the vserver.start scripts failes to set those. We've got workarrounds:
a) edit /etc/init.d/rc to set those values (not recomended)
b) apply the following patch to vserver.start to set the values:
--- vserver.start.orig 2006-03-02 10:37:49.000000000 +0000 +++ vserver.start 2006-03-02 10:10:36.000000000 +0000 @@ -135,7 +134,7 @@ $_VUNAME --xid self --set -t context="$VSERVER_DIR" -- \ $_VATTRIBUTE --set "${OPTS_VATTRIBUTE[@]}" -- \ $_SAVE_CTXINFO "$VSERVER_DIR" \ - $_ENV -i -- \ + $_ENV -i -- PREVLEVEL="N" RUNLEVEL="$RUNLEVEL_START" \ $_VCONTEXT --migrate-self --endsetup --chroot $SILENT_OPT \ "${OPTS_VCONTEXT_MIGRATE[@]}" "${OPTS_VCONTEXT_ENTER[@]}" -- \ "${INITCMD_START[@]}" @@ -151,7 +150,7 @@ $_EXEC_ULIMIT "$VSERVER_DIR/ulimits" \ $_CHCONTEXT_COMPAT "${CHCONTEXT_OPTS[@]}" "${CHCONTEXT_INIT_OPTS[@]}" \ $_SAVE_CTXINFO "$VSERVER_DIR" \ - $_ENV -i -- \ + $_ENV -i -- PREVLEVEL="N" RUNLEVEL="$RUNLEVEL_START" \ $_CHAINECHO "${_IS_FAKEINIT:+$startsync_pipe}" "" \ $_CAPCHROOT "${CAPCHROOT_OPTS[@]}" . \ "${INITCMD_START[@]}"
edit me: do we need to modify the vserver.stop script as well?