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 | 31 |
Tags
- SQL
- Django
- numpy
- GraphQL
- check_password
- python
- array
- for loop
- allauth
- Django-allauth
- FastAPI
- flask
- graphene-django
- tkinter Radio 동적버튼
Archives
- Today
- Total
객
[펌] 압축관련 2 본문
펌 : http://forum.falinux.com 블러그에서 퍼 가지고 왔습니다.
자세한 사항은 위 사이트에서 참고 하세요?(주소창에서 치고 드러가시면......)
1. xz 압축 파일 만들기 및 압축풀기
테스트를 위해 압축할 파일 복사하기
root@test# cp -a /usr/bin/aplay .
root@test# ls
aplay
aplay 파일 압축하기
root@test# xz aplay
root@test# ls
aplay.xz
aplay.xz 파일 압축해지 하기
root@test# xz -d aplay.xz 또는 unxz aplay.xz
root@test# ls
aplay
2. tar.xz 압축파일을 만들고, 해지 하는 방법
tar 파일 만들기
root@test# tar -cvf aplay.tar aplay
aplay
root@test# ls
aplay aplay.tar
xz 압축파일 만들기
root@test# xz aplay.tar
root@test# ls
aplay aplay.tar.xz
xz 압축파일 풀기
root@test# xz -d aplay.tar.xz 또는 unxz aplay.tar.xz
root@test# ls
aplay aplay.tar
tar 파일 풀기
root@test# tar -xvf aplay.tar
aplay