일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- k8s
- Configmap
- aws cli
- React Native
- pod
- amazon ebs
- describe-instances
- private repostiroy
- docker myql
- 쿠버네티스교과서
- amazon ebs종류
- Ansible
- ELB
- 쿠버네티스
- jenkins parameter
- kubectl명령어
- statefulset
- linux 파일복사
- nexus proxy
- 명령어
- aws cli ec2
- docker
- EC2
- cli ec2
- yaml예시
- sql 공유
- 서버간 파일전송
- amazon ebs활용
- kubectl
- SecurityContextHolder
- Today
- Total
목록2024/08 (2)
게으름을 위한 부지런한 게으름뱅리' 블로그
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/#원격 서버의 디렉터리를 로컬 머신으로 복..
♪ tar 압축하기tar 명령어는 파일과 디렉토리를 압축하고 아카이브하는 데 많이 사용됩니다. 여기서는 다양한 방법으로 디렉토리를 압축하는 예시를 소개하겠습니다. 1. 기본 tar 아카이브 만들기디렉토리를 .tar 형식으로 압축합니다.tar -cvf archive.tar /path/to/directory 2. gzip으로 압축하기tar -czvf archive.tar.gz /path/to/directory 또는tar -czvf archive.tgz /path/to/directory 3. bzip2로 압축하기tar -cjvf archive.tar.bz2 /path/to/directory 4. xz로 압축하기tar -cJvf archive.tar.xz /path/to/directory 5.압축하지 않고 ..