SSH用FTP将服务器上的文件上传到其他服务器 一:检查Linux系统是32位还是64位 getconf LONG_BIT 二:安装FTP客户端 yum install ftp rpm -Uvh http://mirror.centos.org/centos/6/os/i386/Packages/ftp-0.17-54.el6.i686.rpm rpm -Uvh http://mirror.centos.org/centos/6/os/x86_64/Packages/ftp-0.17-54.el6.x86_64.rpm ftp /*启用FTP客户端 open zhangfangzhou.cn /*打开远程服务器 user /*输入用户名 Password: /*输入密码 put FileZilla_3.7.4_win32-setup.exe /public_html/ark.net.cn/Software/FTP/FileZilla_3.7.4_win32-setup.exe /put是上传命令,第 一个FileZilla_3.7.4_win32-setup.exe是本地文件名,第二个是远程文件名。意思就是把本地的FileZilla_3.7.4_win32-setup.exe上传到远 程FTP里,并且命名为FileZilla_3.7.4_win32-setup.exe,这样SSH就可以自己上传了。