| 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 | {{{ |
| 383 | total 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 | {{{ |
| 389 | removed `/mnt/host-media' |
| 390 | }}} |
| 391 | 1. mitty@host:~$ ls -l /media/host-media |
| 392 | {{{ |
| 393 | ls: 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 | {{{ |
| 404 | rm: cannot remove `/mnt/host-media': Read-only file system |
| 405 | }}} |