Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- statefulset
- 성남
- EC2
- pod
- 동대문구
- 광명
- 범계역아파트
- 외대앞역
- 개봉역
- 신혼부부아파트
- 행당역
- 쿠버네티스
- describe-instances
- 고덕그라시움아파트
- 신이문역
- k8s
- 5호선
- ELB
- kubectl
- React Native
- docker
- 답십리역
- Ansible
- 9억이하
- 안양어반포레자연&e편한세상
- 명령어
- aws cli
- 상일동역
- Configmap
- 아파트
Archives
- Today
- Total
목록서버간 파일전송 (1)
게으름을 위한 부지런한 게으름뱅리' 블로그

scp (Secure Copy Protocol) 명령어는 파일을 안전하게 복사하기 위해 사용됩니다. scp 명령어는 SSH 프로토콜을 기반으로 하며, 원격 서버와 로컬 머신 간에 파일을 복사할 수 있습니다.#로컬 파일을 원격 서버로 복사하기scp localfile.txt username@remotehost:/path/to/destination/ #원격 서버의 파일을 로컬 머신으로 복사하기scp username@remotehost:/path/to/remote/file.txt /local/destination/#로컬 디렉터리를 원격 서버로 복사하기 (디렉터리 복사)scp -r localdir/ username@remotehost:/path/to/destination/#원격 서버의 디렉터리를 로컬 머신으로 복..
IT/Linux
2024. 8. 19. 21:23