Changes between Version 37 and Version 38 of TipAndDoc/Linux/LXC
- Timestamp:
- Dec 3, 2013 10:33:55 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TipAndDoc/Linux/LXC
v37 v38 847 847 }}} 848 848 849 = NFS=849 = mount inside container = 850 850 * コンテナの中ではAppArmorによってmountが禁止されているため、直接NFSマウントするにはAppArmorの再設定が必要 851 851 … … 863 863 864 864 * ホスト上でread-onlyマウントしていても、/var/lib/lxc/CONTAINER/fstabでのread/write権限設定によって上書きされるので注意 865 * cifsも同じやりかたでマウントできる(cifsではほすとじょうでread-onlyマウントしていると、設定は引き継がれる模様) 866 * ホスト上のマウントディレクトリを直接コンテナのディレクトリにbindする必要がある。つまり、以下のようなことは出来ない 867 * host# mount nfsserver:/path/to/export/dir1 /mnt/somewhere/dir1 868 * lxc/CONTAINER/fstab {{{/mnt/somewhere path/to/mountdir none bind 0 0}}} 869 * lxc$ ls -l /path/to/mountdir/dir1 # 何もマウントされていないように見える