728x90
반응형
1. rsync 다운로드
$ sudo yum install rsync
# 혹은
$ sudo apt install rsync
2. 사용법
$ rsync [OPTIONS] [SOURCE] [TARGET]
3. 예제
# 로컬 데이터를 로컬에 복사
$ rsync -avh /home/user/data /home/new_user/backup
# 로컬의 데이터를 리모트로 복사
$ rsync -avh /home/user/data remote_user@remotehost:/home/remote_user/backup
# ssh 포트가 다른 경우
$ rsync -avh -e "ssh -p 123" /home/user/data remote_user@remotehost:/home/remote_user/backup
# 리모트 데이터를 로컬로 가져옴
$ rsync -avh remote_user@remotehost:/home/remote_user/backup /home/user/data
-ravPh 옵션을 주면 Progress도 확인할 수 있다.
4. ssh 파일 전송 예제
rsync -ravPh abc.tar Server:~/
728x90
반응형
'Others' 카테고리의 다른 글
Others | SSH config 파일 사용법 (0) | 2024.03.06 |
---|---|
Others | IntelliJ 단축키 및 자동완성 (0) | 2022.08.29 |
Others | MacOS 에서 AWS EC2 인스턴스 GUI 원격 접속하기 (0) | 2022.07.07 |
Others | Unix TimeStamp 유닉스 시간 변환 (0) | 2022.05.16 |
CentOS, Ubuntu netstat 설치 방법 (0) | 2022.03.15 |