web-dev-qa-db-ja.com

17.10でcurlftpfsを介してFTPをマウントする

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のユーザー所有者になっています)。間違いはどこですか?

1
user779898

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キーワードがあります。

2
waltinator

フラグを追加します:_ netdev文字列に

curlftpfs#<login>:<pass>@<ip> /media/ftp Fuse _netdev,rw,allow_other,auto,user 0 0
3
Damien Boyd