Results 1 to 7 of 7
I am new to linux, and I have looked around for an answer to this question but I am still confused.
I have poweriso that is an tar.gz and I ...
- 12-27-2010 #1Just Joined!
- Join Date
- Dec 2010
- Posts
- 2
Installing a tar file
I am new to linux, and I have looked around for an answer to this question but I am still confused.
I have poweriso that is an tar.gz and I want to install it, problem is when I follow the answers that are out there I end up with an error.
The file name is poweriso-1.3.tar.gz and it's in my download folder. I am assuming that I would enter the coding in the terminal? But I'm not getting anywhere. Any help would be greatly appreciated.
- 12-27-2010 #2
Fedora's package manager uses RPM files.
In contrast, tar.gz files are just gzipped tar archives, normally with the source code inside. You can also install these, but you won't have control over them with your package manager. So I recommend to first check if the package also exists in Fedora's repositories.
If not, unpack the archive:switch into the directory and follow the build and install instructions (often written to a README or INSTALL file). Mostly you have to follow these steps:Code:tar xzvf poweriso-*.tar.gz
Code:./configure make && make install
Refining Linux Advent calendar: “24 Outstanding ZSH Gems”
- 12-27-2010 #3Just Joined!
- Join Date
- Dec 2010
- Posts
- 2
This is the error I get when i try that method......
[Beast@beast ~]$ tar xzvf poweriso-*.tar.gz
tar (child): poweriso-*.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
[Beast@beast ~]$
Am I missing something?
- 12-27-2010 #4
You have to be in the right directory. poweriso-*.tar.gz is the name of your tar.gz file.
You should definitely read a few basics about tar archives. For instance this: Linux Blog tar — how to create and extract tar.gz and tar.bz2 archivesRefining Linux Advent calendar: “24 Outstanding ZSH Gems”
- 01-28-2011 #5Just Joined!
- Join Date
- Jan 2011
- Posts
- 8
try to untar it by using following command
tar -xvf poweriso-1.3.tar.gz
- 01-28-2011 #6Just Joined!
- Join Date
- Nov 2010
- Posts
- 61
Yes you need to be in the same directory before running the extract command.
For example, you saif the poweriso file was in your downloads which i am guessing is /home/youusername/Downloads so change to that directory first by typing "cd /home/youusername/Downloads"
then run the extract command "tar -xvf filename.tar.gz"
then configure the install "./configure"
then make "make"
then make install "make install".
ta da.
- 01-30-2011 #7
Read this link it help you
http://www.linuxforums.org/forum/lin...are-linux.htmlTake risks: if you win, you will be happy; if you lose, you will be wise.
New Users : Read This First


Reply With Quote
