I stumbled on this web page: http://sourceforge.net/projects/sogfl/?source=navbar
How do I install the downloaded file called sogfl_v0.1.0.1.tar.bz2 in Ubuntu?
Some help would be much appreciated.
I stumbled on this web page: http://sourceforge.net/projects/sogfl/?source=navbar
How do I install the downloaded file called sogfl_v0.1.0.1.tar.bz2 in Ubuntu?
Some help would be much appreciated.
Open a terminal (Ctrl+Alt+T should work), then cd to the directory to which you have downloaded the file (you should move the .tar.bz2
file into some empty directory):
mkdir -p ~/Apps/OpenVPN-gui
mv ~/Downloads/sogfl_v0.1.0.1.tar.bz2 ~/Apps/OpenVPN-gui/
cd ~/Apps/OpenVPN-gui/
Then you have to unpack it, it can be done by this command
bzcat sogfl_v0.1.0.1.tar.bz2 | tar x
Then you can see many files, i.e. README
in this case so do cat README
and see, that there is written to do typical configure & make & make install dance:
./configure
make
sudo make install
Note: There's probably a mistake in the README file - make
and make install
should be without ./
and if you're not root user, you probably will need do make install
with sudo
.
This is the way how to install most of the source tarballs. It's good to know it, but if you can, try to search for an Ubuntu package instead.
bzcat
totar
, but an equivalent, more novice-friendly way to extract a file that ends in.tar.bz2
(likesogfl_v0.1.0.1.tar.bz2
here) is just to runtar xf sogfl_v0.1.0.1.tar.bz2
. (You don't even need thej
flag--all remotely recent versions oftar
not only supportbz2
, but will automatically decompress a compressed archive during extraction, without having to be told to do so.) – Eliah Kagan Jul 09 '13 at 01:44