Some Linux Nerd Asked: 2014-07-17 15:06:09 +0800 CST2014-07-17 15:06:09 +0800 CST 2014-07-17 15:06:09 +0800 CST 如何在 /etc/fstab 中执行“mount --bind”? 772 我正在尝试添加mount --bind /proc/ /chroot/mysql/proc到/etc/fstab. 我怎样才能做到这一点? unix 2 个回答 Voted Best Answer Matheus 2014-07-17T15:18:39+08:002014-07-17T15:18:39+08:00 该mount命令接受--bind或-o bind。 在/etc/fstab文件中,您可以使用以下行: /source /destination none defaults,bind 0 0 Zoredache 2014-07-17T15:16:29+08:002014-07-17T15:16:29+08:00 如果我有一个卷安装在/media/3tb-vol1/Private/,并且我想将它绑定到/srv/Private我有一个/etc/fstab这样的。 /media/3tb-vol1/Private/ /srv/Private none bind
该
mount
命令接受--bind
或-o bind
。在
/etc/fstab
文件中,您可以使用以下行:如果我有一个卷安装在
/media/3tb-vol1/Private/
,并且我想将它绑定到/srv/Private
我有一个/etc/fstab
这样的。