tar -cML 사용으로 분할하여 묶었어요. 풀때는 어떻게 풀죠?

ppox379의 이미지

안녕하세요.

tar -cML 사용으로 분할하여 묶었어요. 풀때는 어떻게 풀죠?

분할 압축하여 전송하고자 합니다.
<서버1>
1. tar로 분할
2. 각각 gzip 압축

3. 전송

<서버2> 4. gzip 풀기 5. tar 풀기

명령어를
tar -cML 40000000 -f a1.tar 해당디렉토리

이렇게 4g씩 분할 했습니다.
다음 파일 이름을 달라고 해서
n a2.tar
이런식으로 물을때 마다 줬구요.

a1.tar
a2.tar
a3.tar

이렇게 만들어 졌습니다. 각각 gzip으로 압축
a1.tar.gz
a2.tar.gz
a3.tar.gz

다른 서버에 전송 후

gunzip a1.tar.gz
gunzip a2.tar.gz
gunzip a3.tar.gz

tar를 푸려고 하는데
하나씩 풀면 오류가 납니다.

tar -xvf a1.tar

tar: 아카이브에 예기치 않은 EOF
tar: 아카이브에 예기치 않은 EOF
tar: Error is not recoverable: exiting now

어떻게 풀어야 할까요?

ppox379의 이미지


tar -xvf a1.tar 원본디렉토리명
하면
Prepare volume #2 for `a1.tar' and hit return:n a2.tar

이렇게 n a2.tar 하고 입력..

tar -cML 40000000 -f a1.tar data 라고 분할 했으면

tar -xvf a1.tar data 라고 써주면 됩니다.

shint의 이미지

전 잘 안됩니다.

리눅스 분할압축'으로 찾아보시면. 이렇게 사용하라고 합니다.
http://blog.naver.com/drscg?Redirect=Log&logNo=80033814461

압축
tar cvfz - free | split -b 1m - free.tar.gz
 
해제
cat free.tar.gz* | tar xvfz -

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

ppox379의 이미지

저런 방법도 있지만 tar에 있는 기능으로 써야해서 저렇게 했습니다.

제가 풀때 명령을 잘못썼네요.

M 옵션을 안 썼었네요.

tar -xMf a1.tar

이렇게 해야합니다.
다음 파일 물으면 n a2.tar 이런식입니다.

shint의 이미지


#2에서 a1.tar 와 a2.tar 가 헛갈립니다.

shint@shint-note /home
$ tar -cML 4000 -f a1.tar zip
Prepare volume #2 for ‘a1.tar’ and hit return: n a2.tar
Prepare volume #3 for ‘a2.tar’ and hit return: n a3.tar
Prepare volume #4 for ‘a3.tar’ and hit return: n a4.tar
 
shint@shint-note /home
$ tar -xMf a1.tar
Prepare volume #2 for ‘a1.tar’ and hit return: n a2.tar
Prepare volume #3 for ‘a2.tar’ and hit return: n a3.tar
Prepare volume #4 for ‘a3.tar’ and hit return: n a4.tar

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

ppox379의 이미지

위에 잘못썼습니다.

tar -xvf a1.tar 원본디렉토리명
이렇게 풀면 안됩니다.

디렉토리명 필요 없다네요;;
압축할때 묶었던 디렉토리명 그대로 풀립니다.

tar -xMf a1.tar

이렇게 해야합니다.
다음 파일 물으면 n a2.tar 이런식입니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.