How to Install software in Ubuntu/Linux
|
Ubuntu is the most popular GNU/Linux Distribution available in today’s Free and Open Source Software world. And today I’ll show you couple of methods you can use to install software in an Ubuntu System.
1. Using apt.
Apt (Advanced Packaging Tool) is the most favourite method of software installation in Debian based systems. You have so many repositories where you can download more than 60,000 software. This repositories are referred in the sources list at /etc/apt/sources.list.
Eg: Install VLC player
#apt-get install vlc
2. Using Synaptic Package Manager
Synaptic Package Manager will allow you to install software by searching the repositories. It’s a GUI based package manager. You can view the software by category and by clicking on Apply button you can easily install the software.
3. Downloading Deb packages.
You can download .deb packages and install them using command line and also using GDebi GUI tool.
Eg: Install Skype
#dpkg -i skype-ubuntu-intrepid_2.1.0.47-1_i386.deb
In GDebi, you can just right click on the .deb package and open it in GDebi, then you can install it from there.
These are the three main ways to install software in Ubuntu. But you can still use the traditional source installation too, but the life has being lot more easier with Ubuntu these days.
0 comments:
Post a Comment