컴퓨터/Windows

윈도우 10 에서 tar 파일 압축/해제 하기

김치부침개21 2021. 8. 18. 12:09
반응형

tar, tar.gz 파일을 사용하는 경우가 있다. 윈도우에서는 보통 zip 파일로 압축을 많이 하지만 리눅스에서는 tar를 사용하여 압축을 많이 한다. 윈도우10에서는 tar 명령어는 공식적으로 cmd에서 지원하기 때문에 아래와 같이 사용할수 있다.

>cmd

압축하기

tar -cvzf [생성파일이름] [압출폴더이름]

 

압축해제

tar -zxvf [압출파일이름] -C [해제폴더이름]

 

인자설명

>tar --help

tar(bsdtar): manipulate archive files
First option must be a mode specifier:
  -c Create  -r Add/Replace  -t List  -u Update  -x Extract
Common Options:
  -b #  Use # 512-byte records per I/O block
  -f <filename>  Location of archive (default \\.\tape0)
  -v    Verbose
  -w    Interactive
Create: tar -c [options] [<file> | <dir> | @<archive> | -C <dir> ]
  <file>, <dir>  add these items to archive
  -z, -j, -J, --lzma  Compress archive with gzip/bzip2/xz/lzma
  --format {ustar|pax|cpio|shar}  Select archive format
  --exclude <pattern>  Skip files that match pattern
  -C <dir>  Change to <dir> before processing remaining files
  @<archive>  Add entries from <archive> to output
List: tar -t [options] [<patterns>]
  <patterns>  If specified, list only entries that match
Extract: tar -x [options] [<patterns>]
  <patterns>  If specified, extract only entries that match
  -k    Keep (don't overwrite) existing files
  -m    Don't restore modification times
  -O    Write entries to stdout, don't restore to disk
  -p    Restore permissions (including ACLs, owner, file flags)
bsdtar 3.3.2 - libarchive 3.3.2 zlib/1.2.5.f-ipp

반응형