Virtualize CentOS4
vserver yourguest build ...
- Empty the just created guest
rm -rf /vservers/yourguest/*
- Copy your old server to the previous folder
rsync -rv --progress --partial yourguest:/ /vservers/yourguest/
rm /vservers/yourguest/etc/fstab
- Remove the services that makes troubles at start
rm /vservers/yourguest/etc/rc.d/init.d/network
rm /vservers/yourguest/etc/rc.d/init.d/.....
- Disable Pam authentification for ssh access
edit /vservers/yourguest/etc/ssh/sshd_config -> (UsePAM no)
replace # Listen with Listen yourguestip (this has to been done on the host too is your host ip)
- Remove the useless modules
rm /etc/modprobe.conf
vserver yourguest start