16.04では、curlftpfs#<login>:<pass>@<ip> /media/ftp Fuse rw,allow_other,noauto,user 0 0
内の/etc/fstab
文字列を使用してFTPをマウントしました。
17.10で、この文字列をfstabに追加し、Sudo mount -a
を実行しても何も起こりません。しかし同時に、ターミナル内のcurlftpfs <login>:<pass>@<ip> /mnt/ftp
経由でマウントできます(すでにchown -R
によって/ mnt/ftpのユーザー所有者になっています)。間違いはどこですか?
man 8 mount
から:
Command-line options available for the mount command are:
-a, --all
Mount all filesystems (of the given types) mentioned in fstab
(except for those whose line contains the noauto keyword). The
filesystems are mounted following their order in fstab.
fstab
エントリにはnoauto
キーワードがあります。
フラグを追加します:_ netdev文字列に
curlftpfs#<login>:<pass>@<ip> /media/ftp Fuse _netdev,rw,allow_other,auto,user 0 0