Linux ftp上传文件 实战篇
清泛原创
连接FTP命令:
(需要关闭passive模式,不然上传不了)
查看远程FTP服务器文件命令:
若ls卡住不动(如上图),是由于防火墙未关闭导致。
(service iptables stop 临时关闭防火墙,处理完成后再开启:service iptables start)
连接OK后,即可进行文件上传下载操作了,命令如下:
$ftp xx.xx.xx.xx
username
password
ftp> passive
(需要关闭passive模式,不然上传不了)
查看远程FTP服务器文件命令:
ftp> ls
若ls卡住不动(如上图),是由于防火墙未关闭导致。
(service iptables stop 临时关闭防火墙,处理完成后再开启:service iptables start)
连接OK后,即可进行文件上传下载操作了,命令如下:
ftp> cd /remotedir
ftp> put /home/test remote_test
ftp> get remote_test /home/local_test
上一篇:支撑Github的开源技术
下一篇:Linux下部署企业级邮件服务器(postfix + dovecot + extmail)