<br><br><div class="gmail_quote">2008/7/5 Antonio Olivares <<a href="mailto:olivares14031@yahoo.com">olivares14031@yahoo.com</a>>:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
--- On Sat, 7/5/08, Luis Orlindo Tedeschi <<a href="mailto:luis.tedeschi@gmail.com">luis.tedeschi@gmail.com</a>> wrote:<br>
<br>
> From: Luis Orlindo Tedeschi <<a href="mailto:luis.tedeschi@gmail.com">luis.tedeschi@gmail.com</a>><br>
<div class="Ih2E3d">> Subject: How to install from tar.gz2<br>
> To: "For users of Fedora" <<a href="mailto:fedora-list@redhat.com">fedora-list@redhat.com</a>><br>
</div>> Date: Saturday, July 5, 2008, 8:01 AM<br>
<div class="Ih2E3d">> Folks; I am new to Linux/Fedora and I have a question<br>
> regarding tar.bz2<br>
> files. I searched for this topic and I did not get I clear<br>
> answer. How<br>
> to I install from a tar.gz2 file? Thanks in advance...<br>
> --<br>
> Luis Orlindo Tedeschi <<a href="mailto:luis.tedeschi@gmail.com">luis.tedeschi@gmail.com</a>><br>
><br>
> --<br>
<br>
</div>>From tar.gz2, I do not know or have enough experience with it, but the previous<br>
<br>
filename.tar.bz2, it is not that hard.<br>
<br>
1) extract the archive with<br>
$ tar -jxvf filename.tar.bz2<br>
<br>
2) change to the directory and read the files README,INSTALL,...,<br>
<br>
$ ./configure<br>
$ make<br>
$ su -c 'make install'<br>
password:<br>
<br>
Usually it is like that, it will depend on the archive.  With *.tar.gz, the process is similar only that the file is extracted with<br>
<br>
$ tar -zxvf filename.tar.gz<br>
<br>
HTH,<br>
<font color="#888888"><br>
Antonio<br>
</font><div><div></div><div class="Wj3C7c"><br>
<br>
<br>
<br>
--<br>
fedora-list mailing list<br>
<a href="mailto:fedora-list@redhat.com">fedora-list@redhat.com</a><br>
To unsubscribe: <a href="https://www.redhat.com/mailman/listinfo/fedora-list" target="_blank">https://www.redhat.com/mailman/listinfo/fedora-list</a><br>
</div></div></blockquote></div><br>Also sometimes tar archives have inside shell script files (like install.sh or upgrade.sh)<br>You may extract folder from archive, go in it (cd command) and run this script (./install.sh)<br>