Possible Duplicate:
How to install a .tar.gz (or .tar.bz2) file?
I've been trying to download some linux programs, and I get.tar.gz files in my downloads. I've been trying to extract it with terminal tar -zxvf
, and always get
no such file or directory
I can't seem to find my root directory of the download. When I select properties on my tar.gz file, I get
/home/Downloads
Is there no C:\
? I installed Ubuntu alongside Windows 7 without making a custom partition, is that why ? I would really appreciate it if you guys could help me out.
C:\
in Linux. That's a Windows thing. – Kyle Macey Oct 15 '12 at 17:40cd Downloads
,tar -zxvf filename.tar.gz
– penreturns Oct 15 '12 at 17:41