![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Linux Support Linux - Operating Systems and Applications Support |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: May 2008
Posts: 7
OS: windows xp
|
how to open .tar.gz files in ubuntu
How do I open the .tar.gz files in ubuntu 8.04?
thanks and regards, |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#2 (permalink) |
|
Manager
Join Date: Sep 2004
Location: Colorado
Posts: 986
OS: Mac OS 9.1, Mac OS X 10.5.8, WinXP Pro, FreeBSD 6.0, Gentoo Linux
|
Re: how to open .tar.gz files in ubuntu
Ubuntu may be configured so that you get an option to handle those files by right clicking on them. A program that can let you explore archives graphically is Ark, which can be installed with the package manager (might be installed already).
From the command line you could use tar xzvf filename.tar.gz to expand the archive.
__________________
![]() Has it been a few days since I replied to your thread? Don't panic! I'm a busy college student and may forget a post if I'm extra busy (or it might just take me a while to be able to do a decent reply). If you still need help and are awaiting my reply after a few days, PM me about it. When posting what errors you get, please give the full message. It makes helping you much easier. |
|
|
|
|
|
#3 (permalink) |
|
Registered User
Join Date: May 2008
Posts: 2
OS: linux - ubuntu, windows xp
|
Re: how to open .tar.gz files in ubuntu
Hi, There is also a windows way of doing this. If you install Crusader or gnome commander using synaptic package manager in ubuntu you will find it quite easy to unpack those files.
It is just like what you had in total commander under your windows. |
|
|
|
|
|
#4 (permalink) |
|
Registered User
Join Date: Oct 2007
Location: Littleton, Colorado USA
Posts: 470
OS: xp 64 sp2 Fedora Core 8 (vmware xp core 8 x32) Minix
|
Re: how to open .tar.gz files in ubuntu
From a text screen: Enter
tar -vtzf <filename.tar.gz> -v is verbose, -t is table, -z is zip compression, -f means the <filename.tar.gz> follows. Do this first so you can see which directory/directories the fill will be untar into. The order of the vtz can be in any order but the -f must be at the end. Then run: tar -vxgf <filename.tar.gz> The -x replaces the -t which means eXtract. Generally, speaking when the tar is extracted it will place the files in and below the current working directory. Other compression methods that tar can use are -j for the bzip2 compression method. The -b was taken years ago and means blocking-factor for input or output. Recall that tar stands for tape archive and tapes record data in blocks and for efficiency have blocking-factors. The gzip compression method uses -z. Also have you tried double clicking on the file in the File Browser? |
|
|
|
![]() |
| Thread Tools | |
|
|