• 使用sshfs挂载服务器文件系统
sudo apt-get install sshfs
sshfs user@hostname:path /mnt/data

 centos:(0.5.2这个才行,新版本反而不行~~~)

wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm
rpm -ivh rpmforge-release-0.5.2-2.el6.rf.i686.rpm
yum install fuse-sshfs

 

  • 用curlftpfs挂载FTP服务器
  1. 安装curlftpfs
    1 sudo apt-get install curlftpfs

     

  2. 挂载FTP服务器
    1 curlftpfs ftp://username:password@192.168.1.1 /ftp

     

  3. 卸载挂载
    fusermount -u /ftp

     

相关文章:

  • 2021-11-08
  • 2021-09-01
  • 2021-08-13
  • 2021-05-30
  • 2021-10-03
  • 2022-02-11
  • 2021-07-15
猜你喜欢
  • 2021-06-25
  • 2021-10-11
  • 2022-12-23
  • 2022-12-23
  • 2021-05-13
  • 2021-07-06
  • 2022-12-23
相关资源
相似解决方案