Ubuntu下挂载FTP到本地
2022-02-13 本文已影响0人
blair_liu
1.安装curlftpfs
sudo apt-get install curlftpfs
2.新建要挂载的位置
sudo mkdir /mnt/ftp -p
sudo chown -R username:groupname /mnt/ftp
3.挂载
curlftpfs xxx.xxx.xxx.xxx /mnt/ftp -o user=username:password
# 乱码就这样:
curlftpfs xxx.xxx.xxx.xxx /mnt/ftp -o user=username:password -o codepage=gbk
4.卸载
fusermount -u /mnt/ftp
5.开机挂载
打开软件Startup Applications Preferences
添加
将3命令粘贴进去添加