Open main menu

OpenVZ Virtuozzo Containers Wiki β

Changes

Gentoo template creation

300 bytes added, 08:22, 9 October 2008
Set up udev
== Set up udev ==
 
Using udev you will have problems since some devices nodes are not created.
For example sshd will fail to start since /dev/random and /dev/urandom are missing.
So it's recommended to disable udev.
Edit <code>/vz/private/777/etc/conf.d/rc</code> and change the <code>RC_DEVICES</code> line to:
<pre>
RC_DEVICES="static"
</pre>
 
 
If you want to enable udev read on.
Create some device nodes needed to enter a container:
mknod udev/devices/ptyp0 c 2 0
mknod udev/devices/ptmx c 5 2
mknod udev/devices/random c 1 8
mknod udev/devices/urandom c 1 9
</pre>
4
edits