×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles

    Unpack: Difference between revisions

    Content added Content deleted
    imported>mutante
    mNo edit summary
     
    imported>Took
    m (links)
     
    (2 intermediate revisions by one other user not shown)
    Line 2: Line 2:




    .tar.gz
    === .tar.gz ===


    To uncompress a .tar.gz file, execute the following command:
    To uncompress a .tar.gz file, execute the following command:
    Line 8: Line 8:
    tar -xzfv filename.tar.gz
    tar -xzfv filename.tar.gz


    .gz
    === .gz ===


    To uncompress a gzip file, execute the following command:
    To uncompress a gzip file, execute the following command:
    Line 15: Line 15:




    .tar
    === .tar ===


    To uncompress a tar file, execute the following command:
    To uncompress a tar file, execute the following command:
    Line 21: Line 21:
    tar -xvf example.tar
    tar -xvf example.tar


    ==== streaming tar to another server ====


    see [[Backup streaming tar]]
    .bz2

    === .bz2 ===


    To uncompress a bzip2 file, execute the following command:
    To uncompress a bzip2 file, execute the following command:
    Line 29: Line 32:




    .zip
    === .zip ===


    To uncompress a zip file , execut the following command:
    To uncompress a zip file , execut the following command:


    unzip filename.zip
    unzip filename.zip

    === Related ===
    [[HowTo/UncompressFilesInLinux]]

    [http://hardcoder.web-produzent.de/showtopic.php?threadid=109 Softcoder-Board: packen mit tar (und gz)]

    [[Category:Linux]]
    [[Category:Computer]]
    [[Category:HowTo]]

    Latest revision as of 00:29, 5 March 2006

    How to unpack compressed files with the various different extentions.


    .tar.gz[edit]

    To uncompress a .tar.gz file, execute the following command:
    
     tar -xzfv filename.tar.gz
    

    .gz[edit]

    To uncompress a gzip file, execute the following command:
    
    gunzip filename.txt.gz     
    


    .tar[edit]

    To uncompress a tar file, execute the following command:
    
    tar -xvf example.tar
    

    streaming tar to another server[edit]

    see Backup streaming tar

    .bz2[edit]

    To uncompress a bzip2 file, execute the following command:
    
    bunzip2 filename.txt.bz2     
    


    .zip[edit]

    To uncompress a zip file , execut the following command:
    
    unzip filename.zip
    

    Related[edit]

    HowTo/UncompressFilesInLinux

    Softcoder-Board: packen mit tar (und gz)

    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.