After the Container ID and the installed OS template have been chosen, you can create the Container private area with the vzctl create command. The private area is the directory containing the actual files of the given Container; it is usually residing in /vz/private/CTID/. The private area is mounted to the /vz/root/CTID directory on the Hardware Node and provides Container users with a complete Linux file system tree.
For example, you can create a new Container CTID with centos-6-x86_64-minimal, by typing the following string:
# vzctl create CTID --ostemplate centos-6-x86_64-minimal
# vzctl set CTID --save --name HOSTNAME
# vzctl set CTID --save --onboot yes
# vzctl set CTID --save --hostname HOSTDOMAIN
# vzctl set CTID --save --ipadd IPADDRES
# vzctl set CTID --save --searchdomain HOSTDOMAIN
# vzctl set CTID --save --nameserver 8.8.8.8 --nameserver 8.8.4.4
# vzctl set CTID --save --cpus 1
# vzctl set CTID --save --ram 1G
# vzctl set CTID --save --swap 1G
# vzctl set CTID --save --diskspace 50g
# vzctl set CTID --save --quotaugidlimit 50
# vzctl set CTID --userpasswd root:password
# vzctl start CTID
# vzctl enter CTID