明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

Linux系統(tǒng)通過命令使用FTP的方法

[摘要]Linux系統(tǒng)下使用FTP,連接FTP服務(wù)器、上傳文件、下載文件都是通過命令來完成的,下面就來介紹一下Linux系統(tǒng)通過命令使用FTP的方法。ftp命令使用Sample-bash-3.00$ ftp...

  Linux系統(tǒng)下使用FTP,連接FTP服務(wù)器、上傳文件、下載文件都是通過命令來完成的,下面就來介紹一下Linux系統(tǒng)通過命令使用FTP的方法。

Linux系統(tǒng)通過命令使用FTP的方法

  ftp命令使用Sample

  -bash-3.00$ ftp rws60001rems.us.oracle.com(連接另外一臺(tái)主機(jī))

  Connected to rws60001rems.us.oracle.com (139.185.21.141)。

  220 (vsFTPd 1.2.1)

  Name (rws60001rems.us.oracle.com:app7740): xxxxx

  331 Please specify the password.

  Password:

  230 Login successful.

  Remote system type is UNIX.

  Using binary mode to transfer files.

  ftp》 ls

  227 Entering Passive Mode (139,185,21,141,216,189)

  150 Here comes the directory listing.

  -rw-r--r-- 1 60202384 60402384 524 Aug 08 00:37 temp1.out

  226 Directory send OK.

  ftp》 pwd(ftp命令下也可以執(zhí)行普通的linux命令,pwd,ls,cd…)

  257 “/slot/ems2384/appmgr”

  ftp》 ls temp1*

  227 Entering Passive Mode (139,185,21,141,178,113)

  150 Here comes the directory listing.

  -rw-r--r-- 1 60202384 60402384 524 Aug 08 00:37 temp1.out

  226 Directory send OK.

  ftp》 get temp1.out(從另一臺(tái)主機(jī)往本地下載文件)

  local: temp1.out remote: temp1.out

  227 Entering Passive Mode (139,185,21,141,126,148)

  150 Opening BINARY mode data connection for temp1.out (524 bytes)。

  226 File send OK.

  524 bytes received in 0.0017 secs (3e 02 Kbytes/sec)

  ftp》 put INVLTENT.plx_bk(從本機(jī)往另外一臺(tái)主機(jī)上傳文件)

  local: INVLTENT.plx_bk remote: INVLTENT.plx_bk

  227 Entering Passive Mode (139,185,21,141,109,145)

  150 FILE: INVLTENT.plx_bk.1

  226 File receive OK.

  331776 bytes sent in 0.00457 secs (7.1e 04 Kbytes/sec)

  ftp》 bye(退出)

  221 Goodbye.

Linux是一套免費(fèi)使用和自由傳播的類Unix操作系統(tǒng)