Mount --bind 与符号链接

Mount --bind 与符号链接

Linux 服务器
/www/website目录是我的 html 目录,
希望用户通过 ftp 访问/user/website/public_htmlchrooted 目录,并且仅限于 ftp 访问

我目前通过 来实现这一点
sudo mount --bind /www/website /user/website/public_html -t ext4
然而,几天后它就坏了,无法工作了(不知道为什么)。

那么我应该使用 mount --bind 还是应该使用符号链接?如果使用 mount --bind,我该如何防止它中断?

答案1

您的系统是否定期重启?如果您要进行绑定挂载,您确实应该在您的 中设置它们/etc/fstab。只有在它们是临时的时才应该手动挂载它们。重启后没有自动恢复挂载的魔法。您需要配置系统才能挂载东西。

绑定挂载在您的 fstab 中如下所示。

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
/dev/mapper/vg1-root /               ext4    errors=remount-ro 0       1
# also mount root to /srv/vg1-root/
/               /srv/vg1-root/  none    bind

相关内容