[Software]/Programming Tips2010. 1. 23. 16:45

bunzip2

리눅스 커널의 경우 .bz2라는 확장자가 붙은 압축 파일 형태로 배포되는 경우가 있습니다.

바로 이 .bz2를 풀어주는 명령어입니다. 이렇게 사용합니다.


bunzip2 linux-version.bz2
kerner을 풀때..
# bunzip2 linux-2.6.10.bz2 
 
이런 자료도 있음..
#tar xjvf file_name.tar.bz2 -C target_dir
   
The -C option is the target directory, if you want to decompress on the same
directory, you don't need to use this option.



※ www.kernel.org 등에서 커널 소스 파일을 구한 이후에 2번째 방식과 같이 풀어서 사용하자.

Posted by 바트정