<br><br><div class="gmail_quote">2008/7/5 Antonio Olivares &lt;<a href="mailto:olivares14031@yahoo.com">olivares14031@yahoo.com</a>&gt;:<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 &lt;<a href="mailto:luis.tedeschi@gmail.com">luis.tedeschi@gmail.com</a>&gt; wrote:<br>
<br>
&gt; From: Luis Orlindo Tedeschi &lt;<a href="mailto:luis.tedeschi@gmail.com">luis.tedeschi@gmail.com</a>&gt;<br>
<div class="Ih2E3d">&gt; Subject: How to install from tar.gz2<br>
&gt; To: &quot;For users of Fedora&quot; &lt;<a href="mailto:fedora-list@redhat.com">fedora-list@redhat.com</a>&gt;<br>
</div>&gt; Date: Saturday, July 5, 2008, 8:01 AM<br>
<div class="Ih2E3d">&gt; Folks; I am new to Linux/Fedora and I have a question<br>
&gt; regarding tar.bz2<br>
&gt; files. I searched for this topic and I did not get I clear<br>
&gt; answer. How<br>
&gt; to I install from a tar.gz2 file? Thanks in advance...<br>
&gt; --<br>
&gt; Luis Orlindo Tedeschi &lt;<a href="mailto:luis.tedeschi@gmail.com">luis.tedeschi@gmail.com</a>&gt;<br>
&gt;<br>
&gt; --<br>
<br>
</div>&gt;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 &#39;make install&#39;<br>
password:<br>
<br>
Usually it is like that, it will depend on the archive. &nbsp;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>