Open main menu

OpenVZ Virtuozzo Containers Wiki β

Changes

Bind mounts

335 bytes added, 07:26, 27 September 2016
fix for OpenVZ 7
{{Note|When specifying destination directory, always use /vz/root/ or ${VE_ROOT} env. variable <nowiki>(avoid using /vz/private)</nowiki>}}
{{Note|When binding directories from one container to another, make sure you have proper boot order (See [[Man/vzctl.8|BOOTORDER]] param.)}}
 
 
'''Instruction above do not work on OpenVZ 7'''
 
Use this fix to enable Bind mounts on OpenVZ 7
 
<source lang="bash">
cat <<'EOF' > /etc/vz/conf/vps.mount
#!/bin/bash
. ${VE_CONFFILE}
VE_MOUNT=$(echo ${VE_CONFFILE} | sed 's/\.conf$/.mount/')
[ -x ${VE_MOUNT} ] && . ${VE_MOUNT}
exit 0
EOF
 
chmod +x /etc/vz/conf/vps.mount
</source>
== See also ==
Anonymous user