FTP サーバー : FTP クライアント AlmaLinux2023/03/07 |
クライアントコンピューターから FTP サーバーにファイル転送します。
AlmaLinux クライアントを例にします。 |
|
[1] | FTP クライアントをインストールします。 |
[root@dlp ~]# dnf -y install lftp
|
[2] | 任意の一般ユーザーでログインして FTP アクセスして利用します。 |
# lftp [オプション] [ホスト名] [redhat@dlp ~]$ lftp -u alma www.srv.world Password: # ログインユーザーのパスワード lftp alma@www.srv.world:~> # リモートホストのカレントディレクトリ表示 lftp alma@www.srv.world:~> pwd ftp://alma@www.srv.world # ローカルホストのカレントディレクトリ表示 lftp alma@www.srv.world:~> !pwd /home/redhat # リモートホストのカレントディレクトリのファイル一覧表示 lftp alma@www.srv.world:~> ls drwxr-xr-x 2 1000 1000 23 Mar 15 01:33 public_html -rw-r--r-- 1 1000 1000 399 Mar 15 16:32 test.py # ローカルホストのカレントディレクトリのファイル一覧表示 lftp alma@www.srv.world:~> !ls -l total 12 -rw-rw-r-- 1 redhat redhat 10 Mar 15 14:30 redhat.txt -rw-rw-r-- 1 redhat redhat 10 Mar 15 14:59 test2.txt -rw-rw-r-- 1 redhat redhat 10 Mar 15 14:59 test.txt # ディレクトリ移動 lftp alma@www.srv.world:~> cd public_html lftp alma@www.srv.world:~/public_html> pwd ftp://alma@www.srv.world/%2Fhome/alma/public_html # ローカルホストのファイルをリモートホストにアップロード lftp alma@www.srv.world:~> put redhat.txt 22 bytes transferred Total 2 files transferred lftp alma@www.srv.world:~> ls drwxr-xr-x 2 1000 1000 23 Mar 15 01:33 public_html -rw-r--r-- 1 1000 1000 10 Mar 15 17:01 redhat.txt -rw-r--r-- 1 1000 1000 399 Mar 15 16:32 test.py -rw-r--r-- 1 1000 1000 10 Mar 15 17:01 test.txt # ローカルホストの複数ファイルをリモートホストに一括アップロード lftp alma@www.srv.world:~> mput test.txt test2.txt 22 bytes transferred Total 2 files transferred lftp alma@www.srv.world:~> ls drwxr-xr-x 2 1000 1000 23 Mar 15 01:33 public_html -rw-r--r-- 1 1000 1000 399 Mar 15 16:32 test.py -rw-r--r-- 1 1000 1000 10 Mar 15 17:06 test.txt -rw-r--r-- 1 1000 1000 10 Mar 15 17:06 test2.txt # [get] の際にファイル上書きを許可する lftp alma@www.srv.world:~> set xfer:clobber on # リモートホストのファイルをローカルホストにダウンロード lftp alma@www.srv.world:~> get test.py 416 bytes transferred # リモートホストの複数ファイルをローカルホストに一括ダウンロード lftp alma@www.srv.world:~> mget test.txt test2.txt 20 bytes transferred Total 2 files transferred # リモートホストのカレントディレクトリにディレクトリ作成 lftp alma@www.srv.world:~> mkdir testdir mkdir ok, `testdir' created lftp alma@www.srv.world:~> ls drwxr-xr-x 2 1000 1000 23 Mar 15 01:33 public_html -rw-r--r-- 1 1000 1000 399 Mar 15 16:32 test.py -rw-r--r-- 1 1000 1000 10 Mar 15 17:06 test.txt -rw-r--r-- 1 1000 1000 10 Mar 15 17:06 test2.txt drwxr-xr-x 2 1000 1000 6 Mar 15 17:16 testdir 226 Directory send OK. # リモートホストのカレントディレクトリ内のディレクトリ削除 lftp alma@www.srv.world:~> rmdir testdir rmdir ok, `testdir' removed lftp alma@www.srv.world:~> ls drwxr-xr-x 2 1000 1000 23 Mar 15 01:33 public_html -rw-r--r-- 1 1000 1000 399 Mar 15 16:32 test.py -rw-r--r-- 1 1000 1000 10 Mar 15 17:06 test.txt -rw-r--r-- 1 1000 1000 10 Mar 15 17:06 test2.txt # リモートホストのファイル削除 lftp alma@www.srv.world:~> rm test2.txt rm ok, `test2.txt' removed lftp alma@www.srv.world:~> ls drwxr-xr-x 2 1000 1000 23 Mar 15 01:33 public_html -rw-r--r-- 1 1000 1000 399 Mar 15 16:32 test.py -rw-r--r-- 1 1000 1000 10 Mar 15 17:06 test.txt # リモートホストの複数ファイル一括削除 lftp alma@www.srv.world:~> mrm redhat.txt test.txt rm ok, 2 files removed lftp alma@www.srv.world:~> ls drwxr-xr-x 2 1000 1000 23 Mar 15 01:33 public_html # ![command] で任意のコマンド実行 lftp alma@www.srv.world:~> !cat /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin ..... ..... alma:x:1001:1001::/home/alma:/bin/bash # 終了 lftp alma@www.srv.world:~> quit 221 Goodbye. |
Sponsored Link |