Linux FTP基本操作命令 ( 序列二 ftp)


1.登陸ftp服務器

ftp [IP] [PORT]        # 登陸ftp服務器,本機登陸可以不寫IP
實例:
[root@ftpsrv vsftpd]# ftp 127.0.0.1 21
Connected to 127.0.0.1 (127.0.0.1).
(vsFTPd 2.2.2)
Name (127.0.0.1:root): nice
Please specify the password.
Password:
Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp>

可以看出登陸后默認為二進制傳輸模式

2.ftp子命令

2.1.幫助命令

    ftp> ?|help                  # 顯示ftp內部命令的幫助信息

2.2.查看ftp中的文件列表(ls和dir都可以查看)

ftp> cd aaa      # 切換到ftp的aaa目錄
Directory successfully changed.
ftp> pwd        # 查看當前所在的ftp目錄
"/aaa"
ftp> ls
Entering Passive Mode (127,0,0,1,88,202).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
Directory send OK.
ftp>

2.3.切換ftp的目錄

ftp> dir
Entering Passive Mode (127,0,0,1,44,241).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 04 07:18 aaa
drwxr-xr-x    2 501      501          4096 Sep 05 08:59 bbb
Directory send OK.
ftp> ls
Entering Passive Mode (127,0,0,1,71,215).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 04 07:18 aaa
drwxr-xr-x    2 501      501          4096 Sep 05 08:59 bbb
Directory send OK.
ftp>

2.4.查詢linux系統信息

1) 查詢系統中的文件列表

ftp> ! [linux系統命令]          # 在ftp服務器中執行系統命令,之后回到ftp環境中

ftp> ! ls /usr/local/
aegis  bin  cloudmonitor  etc  games  include  lib  lib64  libexec  logs  nginx  sbin  share  src

2)切換linux中的工作目錄

ftp> lcd /tmp/            # 在ftp服務器中切換本地工作目錄(登陸ftp前的系統中的目錄),可以tab補全
Local directory now /tmp

2.5.下載上傳文件或目錄

1)創建和刪除ftp目錄

ftp> mkdir ccc
"/aaa/ccc" created
ftp> ls
Entering Passive Mode (127,0,0,1,194,152).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
drwxr-xr-x    2 501      501          4096 Sep 05 09:06 ccc
Directory send OK.
ftp> rmdir ccc
Remove directory operation successful.
ftp> ls
Entering Passive Mode (127,0,0,1,214,114).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
Directory send OK.

2)下載ftp的文件

# 下載單個文件

ftp> !pwd        # 查看當前所在的系統工作目錄
/tmp
ftp> ls
Entering Passive Mode (127,0,0,1,223,180).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
Directory send OK.
ftp> get aaa1    # 下載aaa1文件
local: aaa1 remote: aaa1
Entering Passive Mode (127,0,0,1,33,232).
Opening BINARY mode data connection for aaa1 (0 bytes).
Transfer complete.
ftp> !ls
aaa1
ftp> get aaa2 aaa3    # 下載aaa2文件,並命名為aaa3
local: aaa3 remote: aaa2
Entering Passive Mode (127,0,0,1,171,86).
Opening BINARY mode data connection for aaa2 (0 bytes).
Transfer complete.
ftp> !ls          # 查看,下載成功
aaa1  aaa3

 # 下載多個文件

ftp> mget aaa1 aaa2
mget aaa1? y
Entering Passive Mode (127,0,0,1,83,114).
Opening BINARY mode data connection for aaa1 (0 bytes).
Transfer complete.
mget aaa2? y
Entering Passive Mode (127,0,0,1,217,121).
Opening BINARY mode data connection for aaa2 (0 bytes).
Transfer complete.
ftp> !ls -l
total 1532
-rw-r--r-- 1 root root       0 Sep  5 17:20 aaa1    # 可以看到文件創建時間已經更改
-rw-r--r-- 1 root root       0 Sep  5 17:20 aaa2
-rw-r--r-- 1 root root       0 Sep  5 17:14 aaa3

3)上傳文件

# 上傳單個文件

# 創建測試文件

[root@ftpsrv tmp]# touch ddd1
[root@ftpsrv tmp]# touch ddd2
[root@ftpsrv tmp]# ll
total 1532
-rw-r--r-- 1 root root       0 Sep  5 17:20 aaa1
-rw-r--r-- 1 root root       0 Sep  5 17:20 aaa2
-rw-r--r-- 1 root root       0 Sep  5 17:14 aaa3
-rw-r--r-- 1 root root       0 Sep  5 17:23 ddd1
-rw-r--r-- 1 root root       0 Sep  5 17:23 ddd2

# 上傳

ftp> put ddd1       # 上傳單個文件,可以tab補全
local: ddd1 remote: ddd1
Entering Passive Mode (127,0,0,1,69,10).
Ok to send data.
Transfer complete.
ftp> put ddd1 eee1    # 上傳單個文件並改名
local: ddd1 remote: eee1
Entering Passive Mode (127,0,0,1,243,160).
Ok to send data.
Transfer complete.
ftp> ls
Entering Passive Mode (127,0,0,1,234,62).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
drwxr-xr-x    2 501      501          4096 Sep 05 09:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 09:23 ddd1
-rw-r--r--    1 501      501             0 Sep 05 09:23 eee1
Directory send OK

# 上傳多個文件

ftp> mput ddd1 ddd2
mput ddd1? y
Entering Passive Mode (127,0,0,1,92,11).
Ok to send data.
Transfer complete.
mput ddd2? y
Entering Passive Mode (127,0,0,1,66,108).
Ok to send data.
Transfer complete.
ftp> ls
Entering Passive Mode (127,0,0,1,191,91).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
drwxr-xr-x    2 501      501          4096 Sep 05 09:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 09:27 ddd1    # 查看修改時間可以確認已經上傳成功
-rw-r--r--    1 501      501             0 Sep 05 09:27 ddd2
-rw-r--r--    1 501      501             0 Sep 05 09:23 eee1
Directory send OK.

2.6.ftp文件目錄操作

1)修改ftp文件名

ftp> rename aaa1 qqq1
Ready for RNTO.
Rename successful.
ftp> ls
Entering Passive Mode (127,0,0,1,29,54).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 17:02 aaa2
drwxr-xr-x    2 501      501          4096 Sep 05 17:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 17:27 ddd1
-rw-r--r--    1 501      501             0 Sep 05 17:27 ddd2
-rw-r--r--    1 501      501             0 Sep 05 17:23 eee1
-rw-r--r--    1 501      501             0 Sep 05 17:37 fff
-rw-r--r--    1 501      501             0 Sep 05 17:01 qqq1    # 修改后的文件名
Directory send OK.

 

2)刪除ftp文件

ftp> delete aaa2    # 刪除aaa2文件
Delete operation successful.
ftp> ls
Entering Passive Mode (127,0,0,1,138,61).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 05 17:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 17:27 ddd1
-rw-r--r--    1 501      501             0 Sep 05 17:27 ddd2
-rw-r--r--    1 501      501             0 Sep 05 17:23 eee1
-rw-r--r--    1 501      501             0 Sep 05 17:37 fff
-rw-r--r--    1 501      501             0 Sep 05 17:01 qqq1
Directory send OK.

 # 刪除多個ftp文件

ftp> mdelete ddd1 ddd2 eee1
mdelete ddd1? y
Delete operation successful.
mdelete ddd2? y
Delete operation successful.
mdelete eee1? y
Delete operation successful.
ftp> ls
Entering Passive Mode (127,0,0,1,166,205).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 05 17:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 17:37 fff
-rw-r--r--    1 501      501             0 Sep 05 17:01 qqq1
Directory send OK.

3)刪除ftp目錄

ftp> rmdir bbb    # 刪除bbb目錄
Remove directory operation successful.
ftp> ls
Entering Passive Mode (127,0,0,1,143,198).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 17:37 fff
-rw-r--r--    1 501      501             0 Sep 05 17:01 qqq1
Directory send OK.

2.7.其他ftp命令

1)切換傳輸模式

ftp> ascii        # 切換為ascii模式
200 Switching to ASCII mode.
ftp> bin        # 切換為二進制模式,默認登陸就是二進制傳輸模式
200 Switching to Binary mode.

2)關閉和重連ftp

ftp> close      # 斷開ftp的連接
Goodbye.
ftp> ls        # 可以看出,無法顯示ftp服務器的文件列表
Not connected.
ftp> open 127.0.0.1 21    # 重新連接ftp服務器
Connected to 127.0.0.1 (127.0.0.1).
(vsFTPd 2.2.2)
Name (127.0.0.1:root): admin     # 使用admin登陸ftp
Please specify the password.
Password:
Login successful.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls        # 可以再次查看ftp服務器的文件列表
Entering Passive Mode (127,0,0,1,227,247).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 05 17:47 aaa
drwxr-xr-x    2 501      501          4096 Sep 05 16:59 bbb
Directory send OK.

3) 退出ftp會話

ftp> quit    # 也可以使用bye和exit
221 Goodbye.
[root@ftpsrv vsftpd]#

 

 

ftp操作命令

 

原文:https://www.cnblogs.com/tssc/p/9593614.html

1.登陸ftp服務器

ftp [IP] [PORT]        # 登陸ftp服務器,本機登陸可以不寫IP
實例演示:
1
2
3
4
5
6
7
8
9
10
[root@ftpsrv vsftpd]# ftp 127.0.0.1 21
Connected to 127.0.0.1 (127.0.0.1).
(vsFTPd 2.2.2)
Name (127.0.0.1:root): nice
Please specify the password.
Password:
Login successful.
Remote system  type  is UNIX.
Using binary mode to transfer files.
ftp>

  可以看出登陸后默認為二進制傳輸模式

2.ftp子命令

2.1.幫助命令

1
ftp> ?|help                  # 顯示ftp內部命令的幫助信息

2.2.查看ftp中的文件列表(ls和dir都可以查看)

1
2
3
4
5
6
7
8
9
10
11
12
13
ftp> dir
Entering Passive Mode (127,0,0,1,44,241).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 04 07:18 aaa
drwxr-xr-x    2 501      501          4096 Sep 05 08:59 bbb
Directory send OK.
ftp> ls
Entering Passive Mode (127,0,0,1,71,215).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 04 07:18 aaa
drwxr-xr-x    2 501      501          4096 Sep 05 08:59 bbb
Directory send OK.
ftp>

2.3.切換ftp的目錄

1
2
3
4
5
6
7
8
9
10
11
ftp> cd aaa      # 切換到ftp的aaa目錄
Directory successfully changed.
ftp> pwd        # 查看當前所在的ftp目錄
"/aaa"
ftp> ls
Entering Passive Mode (127,0,0,1,88,202).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
Directory send OK.
ftp>

2.4.查詢linux系統信息

1) 查詢系統中的文件列表

1
ftp> ! [linux系統命令]          # 在ftp服務器中執行系統命令,之后回到ftp環境中

  

1
2
ftp> ! ls /usr/local/
aegis  bin  cloudmonitor  etc  games  include  lib  lib64  libexec  logs  nginx  sbin  share  src

2)切換linux中的工作目錄

1
2
ftp> lcd /tmp/            # 在ftp服務器中切換本地工作目錄(登陸ftp前的系統中的目錄),可以tab補全
Local directory now /tmp

2.5.下載上傳文件或目錄

1)創建和刪除ftp目錄

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ftp> mkdir ccc
"/aaa/ccc"  created
ftp> ls
Entering Passive Mode (127,0,0,1,194,152).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
drwxr-xr-x    2 501      501          4096 Sep 05 09:06 ccc
Directory send OK.
ftp> rmdir ccc
Remove directory operation successful.
ftp> ls
Entering Passive Mode (127,0,0,1,214,114).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
Directory send OK.

2)下載ftp的文件

# 下載單個文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ftp> !pwd        # 查看當前所在的系統工作目錄
/tmp
ftp> ls
Entering Passive Mode (127,0,0,1,223,180).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
Directory send OK.
ftp> get aaa1    # 下載aaa1文件
local: aaa1 remote: aaa1
Entering Passive Mode (127,0,0,1,33,232).
Opening BINARY mode data connection  for  aaa1 (0 bytes).
Transfer complete.
ftp> !ls
aaa1
ftp> get aaa2 aaa3    # 下載aaa2文件,並命名為aaa3
local: aaa3 remote: aaa2
Entering Passive Mode (127,0,0,1,171,86).
Opening BINARY mode data connection  for  aaa2 (0 bytes).
Transfer complete.
ftp> !ls          # 查看,下載成功
aaa1  aaa3

  # 下載多個文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
ftp> mget aaa1 aaa2
mget aaa1? y
Entering Passive Mode (127,0,0,1,83,114).
Opening BINARY mode data connection  for  aaa1 (0 bytes).
Transfer complete.
mget aaa2? y
Entering Passive Mode (127,0,0,1,217,121).
Opening BINARY mode data connection  for  aaa2 (0 bytes).
Transfer complete.
ftp> !ls -l
total 1532
-rw-r--r-- 1 root root       0 Sep  5 17:20 aaa1    # 可以看到文件創建時間已經更改
-rw-r--r-- 1 root root       0 Sep  5 17:20 aaa2
-rw-r--r-- 1 root root       0 Sep  5 17:14 aaa3

3)上傳文件

# 上傳單個文件

# 創建測試文件

1
2
3
4
5
6
7
8
9
[root@ftpsrv tmp]# touch ddd1
[root@ftpsrv tmp]# touch ddd2
[root@ftpsrv tmp]# ll
total 1532
-rw-r--r-- 1 root root       0 Sep  5 17:20 aaa1
-rw-r--r-- 1 root root       0 Sep  5 17:20 aaa2
-rw-r--r-- 1 root root       0 Sep  5 17:14 aaa3
-rw-r--r-- 1 root root       0 Sep  5 17:23 ddd1
-rw-r--r-- 1 root root       0 Sep  5 17:23 ddd2

# 上傳

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ftp> put ddd1       # 上傳單個文件,可以tab補全
local: ddd1 remote: ddd1
Entering Passive Mode (127,0,0,1,69,10).
Ok to send data.
Transfer complete.
ftp> put ddd1 eee1    # 上傳單個文件並改名
local: ddd1 remote: eee1
Entering Passive Mode (127,0,0,1,243,160).
Ok to send data.
Transfer complete.
ftp> ls
Entering Passive Mode (127,0,0,1,234,62).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
drwxr-xr-x    2 501      501          4096 Sep 05 09:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 09:23 ddd1
-rw-r--r--    1 501      501             0 Sep 05 09:23 eee1
Directory send OK

# 上傳多個文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ftp> mput ddd1 ddd2
mput ddd1? y
Entering Passive Mode (127,0,0,1,92,11).
Ok to send data.
Transfer complete.
mput ddd2? y
Entering Passive Mode (127,0,0,1,66,108).
Ok to send data.
Transfer complete.
ftp> ls
Entering Passive Mode (127,0,0,1,191,91).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 09:01 aaa1
-rw-r--r--    1 501      501             0 Sep 05 09:02 aaa2
drwxr-xr-x    2 501      501          4096 Sep 05 09:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 09:27 ddd1    # 查看修改時間可以確認已經上傳成功
-rw-r--r--    1 501      501             0 Sep 05 09:27 ddd2
-rw-r--r--    1 501      501             0 Sep 05 09:23 eee1
Directory send OK.

2.6.ftp文件目錄操作

1)修改ftp文件名

1
2
3
4
5
6
7
8
9
10
11
12
13
14
ftp> rename aaa1 qqq1
Ready  for  RNTO.
Rename successful.
ftp> ls
Entering Passive Mode (127,0,0,1,29,54).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 17:02 aaa2
drwxr-xr-x    2 501      501          4096 Sep 05 17:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 17:27 ddd1
-rw-r--r--    1 501      501             0 Sep 05 17:27 ddd2
-rw-r--r--    1 501      501             0 Sep 05 17:23 eee1
-rw-r--r--    1 501      501             0 Sep 05 17:37 fff
-rw-r--r--    1 501      501             0 Sep 05 17:01 qqq1    # 修改后的文件名
Directory send OK.

2)刪除ftp文件

1
2
3
4
5
6
7
8
9
10
11
12
ftp> delete aaa2    # 刪除aaa2文件
Delete operation successful.
ftp> ls
Entering Passive Mode (127,0,0,1,138,61).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 05 17:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 17:27 ddd1
-rw-r--r--    1 501      501             0 Sep 05 17:27 ddd2
-rw-r--r--    1 501      501             0 Sep 05 17:23 eee1
-rw-r--r--    1 501      501             0 Sep 05 17:37 fff
-rw-r--r--    1 501      501             0 Sep 05 17:01 qqq1
Directory send OK.

 # 刪除多個ftp文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
ftp> mdelete ddd1 ddd2 eee1
mdelete ddd1? y
Delete operation successful.
mdelete ddd2? y
Delete operation successful.
mdelete eee1? y
Delete operation successful.
ftp> ls
Entering Passive Mode (127,0,0,1,166,205).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 05 17:18 bbb
-rw-r--r--    1 501      501             0 Sep 05 17:37 fff
-rw-r--r--    1 501      501             0 Sep 05 17:01 qqq1
Directory send OK.

3)刪除ftp目錄

1
2
3
4
5
6
7
8
ftp> rmdir bbb    # 刪除bbb目錄
Remove directory operation successful.
ftp> ls
Entering Passive Mode (127,0,0,1,143,198).
Here comes the directory listing.
-rw-r--r--    1 501      501             0 Sep 05 17:37 fff
-rw-r--r--    1 501      501             0 Sep 05 17:01 qqq1
Directory send OK.

2.7.其他ftp命令

1)切換傳輸模式

1
2
3
4
ftp> ascii        # 切換為ascii模式
200 Switching to ASCII mode.
ftp> bin        # 切換為二進制模式,默認登陸就是二進制傳輸模式
200 Switching to Binary mode.

2)關閉和重連ftp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ftp> close      # 斷開ftp的連接
Goodbye.
ftp> ls        # 可以看出,無法顯示ftp服務器的文件列表
Not connected.
ftp> open 127.0.0.1 21    # 重新連接ftp服務器
Connected to 127.0.0.1 (127.0.0.1).
(vsFTPd 2.2.2)
Name (127.0.0.1:root): admin     # 使用admin登陸ftp
Please specify the password.
Password:
Login successful.
Remote system  type  is UNIX.
Using binary mode to transfer files.
ftp> ls        # 可以再次查看ftp服務器的文件列表
Entering Passive Mode (127,0,0,1,227,247).
Here comes the directory listing.
drwxr-xr-x    2 501      501          4096 Sep 05 17:47 aaa
drwxr-xr-x    2 501      501          4096 Sep 05 16:59 bbb
Directory send OK.

3) 退出ftp會話

1
2
3
ftp> quit    # 也可以使用bye和exit
221 Goodbye.
[root@ftpsrv vsftpd]#

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM