Fedora 34
Sponsored Link

FTP クライアント : Fedora2021/05/20

 
クライアントコンピューターから FTP サーバーにファイル転送します。Fedora クライアントを例にします。
[1] FTP クライアントをインストールします。
[root@dlp ~]#
dnf -y install lftp
[2] 任意の一般ユーザーでログインして FTP アクセスして利用します。
# lftp [オプション] [ホスト名]

[redhat@dlp ~]$
lftp -u fedora www.srv.world

Password:     # ログインユーザーのパスワード
lftp fedora@www.srv.world:~>

# リモートのカレントディレクトリ表示
lftp fedora@www.srv.world:~> pwd
ftp://fedora@www.srv.world

# ローカルのカレントディレクトリ表示
lftp fedora@www.srv.world:~> !pwd
/home/redhat

# リモートのカレントディレクトリのファイル一覧表示
lftp fedora@www.srv.world:~> ls
drwxr-xr-x    2 1000     1000           23 May 20 01:33 public_html
-rw-r--r--    1 1000     1000          399 May 20 16:32 test.py

# ローカルのカレントディレクトリのファイル一覧表示
lftp fedora@www.srv.world:~> !ls -l
total 12
-rw-rw-r-- 1 redhat redhat 10 May 20 14:30 redhat.txt
-rw-rw-r-- 1 redhat redhat 10 May 20 14:59 test2.txt
-rw-rw-r-- 1 redhat redhat 10 May 20 14:59 test.txt

# ディレクトリ移動
lftp fedora@www.srv.world:~> cd public_html
lftp fedora@www.srv.world:~/public_html> pwd
ftp://fedora@www.srv.world/%2Fhome/fedora/public_html

# ローカルのファイルをリモートにアップロード
# [-a] オプションでアスキー転送 (デフォルトはバイナリ転送)
lftp fedora@www.srv.world:~> put -a redhat.txt
22 bytes transferred
Total 2 files transferred
lftp fedora@www.srv.world:~> ls
drwxr-xr-x    2 1000     1000           23 May 20 01:33 public_html
-rw-r--r--    1 1000     1000           10 May 20 17:01 redhat.txt
-rw-r--r--    1 1000     1000          399 May 20 16:32 test.py
-rw-r--r--    1 1000     1000           10 May 20 17:01 test.txt

# ローカルの複数ファイルをリモートに一括アップロード
lftp fedora@www.srv.world:~> mput -a test.txt test2.txt
22 bytes transferred
Total 2 files transferred
lftp fedora@www.srv.world:~> ls
drwxr-xr-x    2 1000     1000           23 May 20 01:33 public_html
-rw-r--r--    1 1000     1000          399 May 20 16:32 test.py
-rw-r--r--    1 1000     1000           10 May 20 17:06 test.txt
-rw-r--r--    1 1000     1000           10 May 20 17:06 test2.txt

# [get] の際にファイル上書きを許可する
lftp fedora@www.srv.world:~> set xfer:clobber on 

# リモートのファイルをローカルにダウンロード
# [-a] オプションでアスキー転送 (デフォルトはバイナリ転送)
lftp fedora@www.srv.world:~> get -a test.py
416 bytes transferred

# リモートの複数ファイルをローカルに一括ダウンロード
lftp fedora@www.srv.world:~> mget -a test.txt test2.txt
20 bytes transferred
Total 2 files transferred

# リモートのカレントディレクトリにディレクトリ作成
lftp fedora@www.srv.world:~> mkdir testdir
mkdir ok, `testdir' created
lftp fedora@www.srv.world:~> ls
drwxr-xr-x    2 1000     1000           23 May 20 01:33 public_html
-rw-r--r--    1 1000     1000          399 May 20 16:32 test.py
-rw-r--r--    1 1000     1000           10 May 20 17:06 test.txt
-rw-r--r--    1 1000     1000           10 May 20 17:06 test2.txt
drwxr-xr-x    2 1000     1000            6 May 20 17:16 testdir
226 Directory send OK.

# リモートのカレントディレクトリ内のディレクトリ削除
lftp fedora@www.srv.world:~> rmdir testdir
rmdir ok, `testdir' removed
lftp fedora@www.srv.world:~> ls
drwxr-xr-x    2 1000     1000           23 May 20 01:33 public_html
-rw-r--r--    1 1000     1000          399 May 20 16:32 test.py
-rw-r--r--    1 1000     1000           10 May 20 17:06 test.txt
-rw-r--r--    1 1000     1000           10 May 20 17:06 test2.txt

# リモートのファイル削除
lftp fedora@www.srv.world:~> rm test2.txt
rm ok, `test2.txt' removed
lftp fedora@www.srv.world:~> ls
drwxr-xr-x    2 1000     1000           23 May 20 01:33 public_html
-rw-r--r--    1 1000     1000          399 May 20 16:32 test.py
-rw-r--r--    1 1000     1000           10 May 20 17:06 test.txt

# リモートの複数ファイル一括削除
lftp fedora@www.srv.world:~> mrm redhat.txt test.txt
rm ok, 2 files removed
lftp fedora@www.srv.world:~> ls
drwxr-xr-x    2 1000     1000           23 May 20 01:33 public_html

# ![command] で任意のコマンド実行
lftp fedora@www.srv.world:~> !cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
.....
.....
fedora:x:1001:1001::/home/fedora:/bin/bash

# 終了
lftp fedora@www.srv.world:~> quit
221 Goodbye.
関連コンテンツ