"Tar"의 두 판 사이의 차이

ph
이동: 둘러보기, 검색
(새 문서: ==split during creation== tar -cvpz <put options here> / | split -d -b 3900m - /name/of/backup.tar.gz. # <c>f</c> option이 없음 # <c>-d</c> : suffix는 numerical # <c>-b</c> : si...)
(차이 없음)

2017년 9월 27일 (수) 19:03 판

split during creation

tar -cvpz <put options here> / | split -d -b 3900m - /name/of/backup.tar.gz.
  1. f option이 없음
  2. -d : suffix는 numerical
  3. -b : size. 3900m은 FAT32 partition에 맞춘 것이다.
  4. 그 다음 차례로, stdin, prefix.

[1]

reconstitute the archive

cat *tar.gz* | tar -xvpzf - -C / 

[2]