2024年11月Linux系统通过命令使用FTP的方法

发布时间:

  ⑴Linux系统下使用FTP,连接FTP服务器、上传文件、下载文件都是通过命令来完成的,下面就来介绍一下Linux系统通过命令使用FTP的方法。

  ⑵ftp命令使用Sample

  ⑶-bash-.$ ftp rwsrems.us.oracle.(连接另外一台主机

  ⑷Connected to rwsrems.us.oracle. (...。

  ⑸ (vsFTPd ..

  ⑹Name (rwsrems.us.oracle.:app: xxxxx

  ⑺ Please specify the password.

  ⑻Password:

  ⑼ Login suessful.

  ⑽Remote system type is UNIX.

  ⑾Using binary mode to transfer files.

  ⑿ Entering Passive Mode (,,,,,

  ⒀ Here es the directory listing.

  ⒁-rw-r--r-- Aug : temp.out

  ⒂ Directory send OK.

  ⒃ftp》 pwd(ftp命令下也可以执行普通的linux命令,pwd,ls,cd…

  ⒄ “/slot/ems/appmgr”

  ⒅ftp》 ls temp*

  ⒆ Entering Passive Mode (,,,,,

  ⒇ Here es the directory listing.

  ⒈-rw-r--r-- Aug : temp.out

  ⒉ Directory send OK.

  ⒊ftp》 get temp.out(从另一台主机往本地下载文件

  ⒋local: temp.out remote: temp.out

  ⒌ Entering Passive Mode (,,,,,

  ⒍ Opening BINARY mode data connection for temp.out ( bytes。

  ⒎ File send OK.

  ⒏ bytes received in . secs (e Kbytes/sec

  ⒐ftp》 put INVLTENT.plx_bk(从本机往另外一台主机上传文件

  ⒑local: INVLTENT.plx_bk remote: INVLTENT.plx_bk

  ⒒ Entering Passive Mode (,,,,,

  ⒓ FILE: INVLTENT.plx_bk.

  ⒔ File receive OK.

  ⒕ bytes sent in . secs (.e Kbytes/sec

  ⒖ftp》 bye(退出

  ⒗ Goodbye.