美文网首页
Ubuntu下挂载FTP到本地

Ubuntu下挂载FTP到本地

作者: blair_liu | 来源:发表于2022-02-13 17:10 被阅读0次

    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命令粘贴进去添加

    相关文章

      网友评论

          本文标题:Ubuntu下挂载FTP到本地

          本文链接:https://www.haomeiwen.com/subject/cdqhlrtx.html