I'm trying to download and install software for my Ubuntu Linux machine. I've downloaded it by wget or the download link and so I get this tar.gz file. After that, I extracted it and saved it to my desktop. What's the next step? How do I install this kind of software?
- 69,427
- 39
2 Answers
To install one usually only needs a few commands. After downloading and placing the tar in the directory you wish to install it in (I use my home dir as it is easy) follow the steps by opening a terminal and making sure you are in your home by typing
ls
This will show the files in the directory and you should also see pcmonitor.tar.gz listed
Next you want to unpack pcmonitor.tar.gz with
tar xzvf pcmonitor.tar.gz
This will create a directory named pcmonitor. Check for it by using ls. Now you want to run install do this with
sudo ./install
The sudo is because the installation needs root privledges. From here the installation should take over. Hope this helps.
P.S. It is note worthy to state that this install is not the usual
tar xvzf *.tar.gz
cd *
./configure [options]
make
sudo make install
that works for many other tarballs you may download in the future.
- 144,580
- 457
There are two common approaches to install a software/package in Ubuntu:
Search for the software package you are looking in the Ubuntu Software Center, if you find the package in Ubuntu Software Center then all you need to do is click the Install button (it needs working Internet connection) and you are done!
Extract the
tar.gzand follow the steps as shown here. If your downloaded file contains.debextension use the commanddpkg -i package.debor simply open it with Synaptic Package Manager.