Warning: Undefined array key 0 in /www/wwwroot/kanochan.net/wp-content/plugins/code-snippets/php/snippet-ops.php(582) : eval()'d code on line 9
Warning: Attempt to read property "cat_ID" on null in /www/wwwroot/kanochan.net/wp-content/plugins/code-snippets/php/snippet-ops.php(582) : eval()'d code on line 9
mount bind 功能详解
mount bind 可为当前挂载点绑定一个新的挂载点。
mount bind 绑定后的两个目录类似于硬链接,无论读写 bar 还是读写 foo,都会反应在另一方,内核在底层所操作的都是同一个物理位置。
mkdir foo bar
mount --bind foo bar
foot文件夹里的内容挂载到bar文件夹中。
umount bar
取消挂载。