Centos

掛載綁定在 fstab 中不生效 - Centos 6

  • March 11, 2016

我在 fstab 中使用這一行將 /sftp/feeds/incoming 綁定到 /var/www/online/public_html/feeds

/sftp/feeds/incoming   /var/www/online/public_html/feeds   none   bind   0 0

但它沒有生效。

如果我使用:

mount --bind /var/www/online/public_html/feeds /sftp/feeds/incoming

在可以正常工作但在重新啟動時當然會失去的命令行上。

我認為語法錯誤或提供的參數順序錯誤。它應該與您的mount命令相同:

/var/www/online/public_html/feeds  /sftp/feeds/incoming     none   bind   0 0

安裝手冊頁

綁定安裝。

從 Linux 2.4.0 開始,可以在其他地方重新安裝文件層次結構的一部分。電話是

mount --bind olddir newdir

或空頭期權

mount -B olddir newdir

或 fstab 條目是:

/olddir /newdir none bind

在此呼叫之後,可以在兩個地方訪問相同的內容。還可以重新掛載單個文件(在單個文件上)。

此呼叫僅附加(部分)單個文件系統,而不附加可能的子掛載。包括子掛載在內的整個文件層次結構使用

引用自:https://serverfault.com/questions/763201