2
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.

rsyncのメモ

2
Last updated at Posted at 2022-02-02

要望

  • rsyncでssh接続したい
  • ポートの指定
  • リモート → ローカルへのコピー
  • あるディレクトリは除外したい
rsync -avz --rsh="ssh -p 2222" user@host:hostのディレクトリ ローカルのディレクトリ --exclude '除外ディレクトリ'
  • ローカル → リモートへのコピー
  • ssh接続(鍵指定)
rsync -avz --rsh="ssh -i ~/.ssh/鍵の名前" ローカルのディレクトリ user@host:リモートのディレクトリ

参考サイト

2
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
2
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?