Changes between Version 15 and Version 16 of TipAndDoc/Linux/LXC


Ignore:
Timestamp:
Oct 23, 2012 10:12:37 PM (12 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/Linux/LXC

    v15 v16  
    365365192.168.83.0/24 dev eth1  proto kernel  scope link  src 192.168.83.212 
    366366}}} 
     367 
     368 = mount bind = 
     369 * /var/lib/lxc/>container name>/fstab を用いて、ホストの特定ディレクトリ以下をゲストにbind出来る 
     370 
     371 * fstab 
     372{{{ 
     373/media mnt none bind 0 0 
     374}}} 
     375  * host:/media -> guest:/mnt とマウントされる 
     376  * mntに「/」が'''無い'''ことに注意 
     377  * mitty@lxc:~$ mount 
     378{{{ 
     379/dev/disk/by-uuid/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX on /mnt type ext4 (rw,relatime,errors=remount-ro,user_xattr,barrier=1,data=ordered) 
     380}}} 
     381  * mitty@lxc:~$ ls -l /mnt/ 
     382{{{ 
     383total 0 
     384-rw-r--r-- 1 root root 0 Oct 23 22:01 host-media 
     385}}} 
     386 
     387 1. mitty@lxc:~$ sudo rm /mnt/host-media 
     388{{{ 
     389removed `/mnt/host-media' 
     390}}} 
     391 1. mitty@host:~$ ls -l /media/host-media 
     392{{{ 
     393ls: cannot access /media/host-media: No such file or directory 
     394}}} 
     395 
     396 == read-only bind == 
     397 * fstab 
     398{{{ 
     399/media mnt none bind,ro 0 0 
     400}}} 
     401 * mountコマンドの出力結果は「(rw,relatime,errors=remount-ro,user_xattr,barrier=1,data=ordered)」で変わらないが、read-only化される 
     402 * mitty@lxc:~$ sudo rm /mnt/host-media 
     403{{{ 
     404rm: cannot remove `/mnt/host-media': Read-only file system 
     405}}}