[Linux] tar 파일, tar.gz 파일 압축 / 압축 해제
* tar : Unix/Linux 환경의 아카이브 명령어로 여러 파일을 하나로 묶는데 사용 tar -[옵션] [파일명.tar] [압축할 파일들 혹은 / 디렉터리들] 압축하기 # file1.log, file2.log 파일들을 archive.tar로 압축 tar -cvf archive.tar file1.log file2.log # logs 디렉터리를 archive.tar로 압축 tar -cvf archive.tar logs # log 확장자 파일들을 archive라는 gzip으로 압축 tar -cvzf archive.tar.gz *.log 옵션 c (소문자) : tar 파일 생성 v : 진행 과정 출력 f : 파일명 지정 z : gzip으로 압축 압축풀기 # archive.tar 파일 압축 해제 tar -x..
Linux
2021. 11. 17. 19:46
[Linux] scp를 이용하여 로컬-서버 간 파일 전송
로컬에서 서버로 파일 전송 % scp -i @: 파일을 전송할 로컬에서 실행 예시) % scp -i ~/Downloads/key.pem ~/Downloads/conf.properties jane@255.255.255.255:/home/jane/ 서버에서 로컬로 파일 다운로드 % scp -i @: 파일을 다운받을 로컬에서 실행 예시) % scp -i ~/Downloads/key.pem jane@255.255.255.255:/home/jane/conf.properties ~/Downloads/
Linux
2021. 11. 17. 19:28