Linux

僅當存在 Samba 掛載時才綁定掛載?(例如:BIND MOUNT 需要 NFS 掛載 172.16.xxfiles…)

  • April 14, 2022

我在 fstab 中使用以下內容安裝了 SAMBA:

//source/files /mnt/files cifs user,_netdev,cache=none,credentials=/usr/src/access.smb 0 0

然後我有以下 mount –bind 行:

/mnt/files /var/www/html/data none defaults,bind 0 0

但是第二個掛載不起作用。如果我重新啟動電腦,則只有第一個掛載有效。我需要手動安裝第二個(使用綁定)

請問,有人可以幫我嗎?我在 Unix Stack Exchange 上看到了這篇文章,但我不明白:https ://unix.stackexchange.com/questions/216287/how-do-i-set-up-bind-mounts-on-startup-correctly-in -系統世界

提前致謝。

像這樣的東西:

/mnt/files /var/www/html/data none x-systemd.requires=/mnt/files,x-systemd.automount,bind 0 0

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