unzipping archives on the server?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • damn
    Junior Member
    • Mar 2004
    • 18

    #1

    unzipping archives on the server?

    Hi there.
    How can i unzip or, shall i say untargzip archive on the server?
  • Andy
    Senior Member
    • Mar 2004
    • 257

    #2
    You can do it from cpanel file manager
    Click on file and at top right hand corner there will be an option to extract
    Andy

    Comment

    • Frank Hagan
      Senior Member
      • Mar 2004
      • 724

      #3
      You can also do it from a SSH "shell" connection ... just type "man tar" for the commands to do so, or Google "tar linux" for several sites showing the commands.

      Comment

      • Amitabh
        Member
        • Mar 2004
        • 78

        #4
        if you have a file name ending in gz(gzipped tar), then
        Code:
        tar -zxvf <tar file name>
        if you have a file name ending in bz2(bzipped tar), then
        Code:
        tar -jxvf <tar file name>

        Comment

        • Pari123
          Junior Member
          • Jun 2005
          • 20

          #5
          unzipping files created by xp

          hi all,

          just uploaded a folder that I had zipped through winxp. however, on cpanel, when you try and extract the files it does not do so. There is a message advising of v2 or higher.

          can anyone help Please?
          thanks Pari

          Comment

          • Amitabh
            Member
            • Mar 2004
            • 78

            #6
            Use SSH, and use the unzip command .

            Comment

            Working...