茅屋为秋风 发表于 2018-5-25 09:50:18

linux ftp 使用

  关于linux 服务器使用ftp客户端连接下载文件:
  ftp8.8.8.8
  Connected to 8.8.8.8.
  220-FileZilla Server version 0.9.41 beta
  220-written by Tim Kosse (Tim.Kosse@gmx.de)
  220 Please visit http://sourceforge.net/projects/filezilla/
  502 GSSAPI authentication not implemented
  504 Auth type not supported
  KERBEROS_V4 rejected as an authentication type
  Name (8.8.8.8:root): wowo       //输入ftp用户名
  331 Password required for wowo
  Password:                      //输入ftp密码
  230 Logged on
  Remote system type is UNIX.
  ftp> bin      //将ftp传送模式 改为 二进制,可解决下载的.zip文件,在linux系统不能unzip 问题
  200 Type set to I
  ftp> passive
  Passive mode off.
  ftp> ls
  200 Port command successful
  150 Opening data channel for directory list.
  drwxr-xr-x 1 ftp ftp            0 Oct 282013 123
  drwxr-xr-x 1 ftp ftp            0 Oct 252013 wocao
  -rw-r--r-- 1 ftp ftp         252708 Dec 05 12:16 dandan
  drwxr-xr-x 1 ftp ftp            0 Dec 05 11:08 nima
  
页: [1]
查看完整版本: linux ftp 使用