1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

外部サーバのファイルをzipファイルにまとめてローカルにダウンロードする方法

Posted at

外部サーバ接続

sshで外部サーバに接続します。
(root のパスワードを聞かれる)

自分のパソコン$ ssh root@xxx.xxx.xxx.xxx

外部サーバで zip ファイル作成

目的のディレクトリ target に移動します。
(target ディレクトリの中身を全て zip ファイルとしてダウンロードする場合)

外部サーバ$ cd target

目的のディレクトリでzip作成します。
source.zip という名前で target ディレクトリ配下のファイルが全て zip ファイルにまとめます。

外部サーバ$ zip -r source *

zip コマンドが使えない場合は zip をインストールします。

外部サーバ$ yum install zip

sshを切断します。

外部サーバ$ exit

zip ファイルをローカルにダウンロード

自分のパソコンに先ほど作った外部サーバの zip ファイルをダウンロードします。
下の例だと /home ディレクトリにダウンロードされます。
(root のパスワードを聞かれる)

自分のパソコン$scp root@xxx.xxx.xxx.xxx:target/source.zip /home
1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?