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
'컴퓨터 > Windows' 카테고리의 다른 글
Windows에서 ZIP 파일로 손쉽게 압축하는 방법! (3) | 2024.11.05 |
---|---|
윈도우10 자동 재부팅 방지 (0) | 2021.10.19 |
윈도우(windows) 에서 폴더 못찾게 숨기기 (1) | 2017.04.18 |
Putty download 다운로드 (0) | 2016.01.17 |
Windows HDD raid-5 방법 / 하드 디스크 합쳐서 쓰기 (0) | 2016.01.17 |