LoginSignup
0
0

More than 5 years have passed since last update.

ftp サイトのミラー (lftp)

Posted at

lftp を使って ftp サイトのミラーをする方法です。

インストール

Arch Linux

sudo pacman -S lftp

Ubuntu

sudo apt install lftp

CentOS

sudo yum install lftp

設定ファイル
ホームに .lftprc を作成
 これを作成しないとエラーメッセージが出ます。

$HOME/.lftprc
set ftp:ssl-auth TLS
set ftp:ssl-force true
set ftp:ssl-allow yes
set ftp:ssl-protect-list yes
set ftp:ssl-protect-data yes
set ftp:ssl-protect-fxp yes
set ssl:verify-certificate no

使用例

$ lftp -u scott,tiger123 ftp.example.com

> ls
> mirror
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0