LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Installing software in UBUNTU 8.10 (https://www.linuxquestions.org/questions/linux-newbie-8/installing-software-in-ubuntu-8-10-a-776852/)

aravindarumugam 12-19-2009 07:28 AM

Installing software in UBUNTU 8.10
 
Hi!
i installed ubuntu 8.10 in my desktop today.I dont know anything based on linux so please heLp me in downloading and installing the following programs:
VLC MEDIA PLAYER
MOZILLA FIREFOX (LATEST)
ITUNES
UTORRENT
how should i use .tar.bz2 file

EricTRA 12-19-2009 07:33 AM

Hello and welcome to LinuxQuestions,

Installing software in Ubuntu is quite easy and straightforward. There are a lot of good guides on the internet, easily found by Google. Here are some:
Ubuntu installing software 1
Ubuntu installing software 2.

tar.bz2 files are compressed archive files that generally contain source code to compile or install. Since you're new to Linux/Ubuntu I advice you to stick to using the easy way of installation as described above in the links until you're more at ease with Linux and feel at comfort using the command line.

Kind regards,

Eric

pixellany 12-19-2009 08:14 AM

Welcome to LQ!!

First--if it all possible, always use the package manager to install SW. You will find this in your menus----Look for Synaptic or Adept---or maybe something that just says "install programs" or "install software".

If you have to install something that you downloaded, then it depends very much on exactly what it is. Most downloaded SW will come with instructions--often in a "README" file included in the package.

Whenever you see "tar.gz", tar.bz2", etc. you first have to extract from the archive---eg:

for tar.gz: tar -xzvf filename

for tar.bz2: tar -xjvf filename

These commands are normally issued as the root user. In Ubuntu, unless you have enabled the root account, just add "sudo" in front of any command that needs admin (root) privileges.

dreamwalking 12-19-2009 08:19 AM

Hi,

the above links will certainly give you the information you want.

I use Debian, but, since Ubuntu uses the same package management, for a quick reference:

Quote:

sudo apt-get update
sudo apt-get install vlc
should install vlc

Quote:

sudo apt-get update
sudo apt-get install firefox
or check this thread for the latest version
http://ubuntuforums.org/showthread.php?t=330386

.tar.bz2 files :
Quote:

tar -xjf /path/to/file.tar.bz2
cd /path/to/uncompressed/folder
./configure && make
sudo make install


All times are GMT -5. The time now is 05:00 PM.