398
336

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 5 years have passed since last update.

#scpコマンド
リモートマシンとローカルマシン、あるいはリモートマシン同士でファイルをコピーする際に使用するLinuxのコマンド。
通信にはsshを使用する。sshコマンドと同じ認証でデータ転送の通信を暗号化する。

sshを使用するため、ssh接続をできるようにしておく必要があります。

#scp

$ scp [オプション] コピー元パス 保存先パス

###オプション

オプション 説明
-i 鍵ファイル ssh接続に使用する鍵ファイルを指定する
-P ポート番号 (sshのポートを変更している場合などに)接続に使用するポートを指定する
-p コピー元のタイムスタンプやパーミッションを保持する
-r ディレクトリごと再帰的にコピーする

###パス
パスは以下のような構成で書きます。

ユーザ名@サーバのホスト名(or IPアドレス):コピーしたいファイル、もしくは保存先のパス

ローカルの場合はユーザ名@サーバのホスト名(or IPアドレス):を省略できる。

####リモートのファイル(test.txt)をローカルのカレントディレクトリへコピー

$ scp user@xxx.xxx.xxx.xxx:~/test.txt ./

####ローカルのカレントディレクトリのファイル(test.txt)をリモートのホームディレクトリ直下へコピー

$ scp test.txt user@xxx.xxx.xxx.xxx:~/
398
336
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
398
336

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?