리눅스에서의 파일을 압축하는 방법

yk183의 이미지

이제 첨 리눅스를 접해본 초보입니다...
hanterm을 사용하면서 저장한 파일들, 그림파일 등등을
인터넷 카페 게시판에 올리려는데요...
용량이 커서 압축을 한 다음 올리려는데 어떻게 해야할까요?
일반 알집의 형태로 압축은 불가능한지...(다른 사람이 윈도우 환경에서
열어야 하거든요....)
:roll:

송지석의 이미지

tar+gz로 압축해도 알집에서 열립니다.

(디렉토리 압축할 때 tar로 먼저 묶고 gzip으로 압축)

그리고 zip으로 압축하는 프로그램도 있습니다.

이름이 zip인가 할 겁니다. 압축프는 게 unzip이었고요..

rar도 압축할 수 있는데 이건 오픈소스가 아니라 바이너리 설치해야 합니다.

그리고 잘 찾아보면 x용 어플도 있을 겁니다. gnome archiever나..

11tank의 이미지

tar
설명 : 여러개의 파일이나 디렉토리를 하나의 파일로 묶어 준다.
형식 : tar [옵션] file1 file2...

옵션
-t : tar로 묶여진 파일의 리스트를 출력
-x : tar로 묶여진 파일을 푼다.
-c : 여러 개의 파일과 디렉토릴르 하나의 파일로 묶는다.
-f : 파일을 이용한다.
-v : 진행과정을 출력한다.
-z : 파일을 묶는 것과 동시에 gzip 으로 압축한다.

ex) dir1, dir2 디렉토리와 file이라는 파일을 test.tar라는 파일로 묶는다.
# tar cvf test.tar dir1/ dir2/ file

ex) test.tar 라는 파일의 내용을 출력한다.
# tar tvf test.tar

ex) test.tar 라는 파일을 푼다.
# tar xvf test.tar

cf)tar는 여러 개의 파일이나 디렉토리를 묶는 것이지 압축하는 것이 아니다.
디렉토리를 묶을 때에는 하위의 모든 파일과 디렉토리가 같이 묶인다.

gzip
설명 : 각각의 파일들을 개별적으로 압축
형식 : gzip [옵션] file1 file2 ...

옵션
-9 : 최고의 압축율로 압축
-l : 가장 빠르게 압축
-d : 압축 해제

cf) gzip은 파일 하나만을 압축한다. 여러 개의 파일이나 디렉토리를 압축하는 것이 아니다.
gzip으로 압축할 경우 원본 파일이 사라지며 원본의 압축 파일인 ***.gz가 생긴다.

따라서 tar로 하나의 파일로 만들고 gzip으로 압축을 하면 되지여...^.^

사용예

# tar cvfz test.tgz dir1/ dir2/ file1 (여러개의 파일과 디렉토리들을 묶어서 압축)
# tar xvzf test.tgz ( 묶여지고 압축된 파일을 풀어줌)

yk183의 이미지

답변 감사합니다~ :)

cdpark의 이미지

zip/unzip도 있습니다. rar도 있고요.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.