Find the answer to your Linux question:
Results 1 to 5 of 5
I am trying to decompress a file with an file ending of tar.bz2 without creating a directory or folder once decompressing the file and extracting the data. The only thing ...
  1. #1
    Just Joined!
    Join Date
    May 2008
    Posts
    3

    uncompressing a tar.bz2

    I am trying to decompress a file with an file ending of tar.bz2 without creating a directory or folder once decompressing the file and extracting the data. The only thing I know about extracting data from a file like this would be to
    type the command tar -jxvf file.tar.bz2. I know this extracts the data but my main concern is how do you just extract the data instead of the data being in a newly created sub-directory such as (/the file's name/data in the tar.bz2 file). I have tried to google this information but I don't see what I want or maybe I don't know what I'm looking for. Once again I want to strictly extract the important data without the extra folder that is created to put the important data into.

    Ex:
    tar -jzvf test1.tar.bz2
    /test1/data1
    /test1/data2
    /test1/data3
    /test1/ect...

    I want:
    tar -jzvf test1.tar.bz2
    /data1
    /data2
    /data3
    /ect...


    Thanks

  2. #2
    Linux Newbie raghaven.kumar's Avatar
    Join Date
    Mar 2008
    Location
    Bangalore, India
    Posts
    209
    you cant do that since you compressed them with the folder test
    if you want to that as you said, IMO, compress inside the test folder
    i.e. ~/test$ tar -cvjf data.tar.bz2 data1 data2 data3
    so on .....

  3. #3
    Just Joined!
    Join Date
    May 2008
    Posts
    3
    Thanks that helped!

  4. #4
    Linux Engineer khafa's Avatar
    Join Date
    Apr 2008
    Location
    Tokyo, Japan
    Posts
    858
    actually you can do what you wanted to do in the first place
    you do it as follows
    Code:
    tar --strip-components 1 -jxvf test1.tar.bz2
    and test1 will be gone
    Linux and me it's a love story

  5. #5
    Linux Newbie raghaven.kumar's Avatar
    Join Date
    Mar 2008
    Location
    Bangalore, India
    Posts
    209
    hey thanks, I never knew that !!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...