scp
ssh 원격 접속 프로토콜 기반으로 한 SecureCopy(scp)
local 과 remote 에 있는 파일과 디렉토리 보내거나 가져올때 사용
1. 파일 1개를 보낼 때 (local -> remote)
scp [옵션] [파일명] [remote_id]@[remote_ip]:[받는 위치]
# scp test root@172.20.20.78:/tmp/test/
test 100% 8 0.0KB/s 00:00
2. 파일 여러개를 보낼 때 (local -> remote)
scp [옵션] [파일명 1][파일명 2] [remote_id]@[remote_ip]:[받는 위치]
# scp test1 test2 root@172.20.20.78:/tmp/test/
test1 100% 5 0.0KB/s 00:00
test2 100% 13 0.0KB/s 00:00
3. 디렉토리를 보낼 때 (-r 옵션)
scp [옵션] [디렉토리] [remote_id]@[remote_ip]:[받는 위치]
# scp -r test root@172.20.20.78:/tmp/
test2 100% 13 0.0KB/s 00:00
test 100% 8 0.0KB/s 00:00
test1 100% 5 0.0KB/s 00:00
4. 파일을 받을 때 (remote -> local)
scp [옵션] [remote_id]@[remote_ip]:[원본 위치] [받는 위치]
# scp root@172.20.20.76:/root/test/test1 /tmp/test/
test1 100% 5 0.0KB/s 00:00
'Server > Linux' 카테고리의 다른 글
[Linux] grep (0) | 2022.01.30 |
---|---|
[Linux] wc (0) | 2022.01.29 |
[Linux] 서버 용량 확인 (df / du) (0) | 2021.12.05 |
[Linux] 네트워크 상태 확인 (netstat) (0) | 2021.12.03 |
[Linux] 도메인으로 IP 확인 (0) | 2021.12.02 |