How do I install applications in Ubuntu?
up vote
78
down vote
favorite
How can I install applications like Google Chrome on Ubuntu?
Are there any commands to install an application?
Index of answers:
- Basic usage of APT, Synaptic Package Manager and Ubuntu Software Center and how to install
.deb
files - List of methods, including offline options, with links to detailed information for each
- Advice for users coming from Windows
- Newer answer on using APT,
dpkg
andsnap
methods. Includes adding PPAs and using.sh
installers - Newer answer on KDE's Muon, Gdebi (a graphical installer for
.deb
packages), and Y PPA Manager - Installing software from a CD
software-installation
add a comment |
up vote
78
down vote
favorite
How can I install applications like Google Chrome on Ubuntu?
Are there any commands to install an application?
Index of answers:
- Basic usage of APT, Synaptic Package Manager and Ubuntu Software Center and how to install
.deb
files - List of methods, including offline options, with links to detailed information for each
- Advice for users coming from Windows
- Newer answer on using APT,
dpkg
andsnap
methods. Includes adding PPAs and using.sh
installers - Newer answer on KDE's Muon, Gdebi (a graphical installer for
.deb
packages), and Y PPA Manager - Installing software from a CD
software-installation
1
Mitch's answer is the best way to go. Although, if you'd like you could skip the first part of using the terminal for the "wget" command, by going to google.com/intl/en/chrome/browser and clicking "Download chrome". You could then select 32 bit or 64 bit. Save it where you'd like and double click it just like an installer in Microsoft Windows. Other than that, please refer to Mitch's answer. Welcome to Ubuntu, hope you enjoy it here!
– Eli
Jul 22 '13 at 0:07
add a comment |
up vote
78
down vote
favorite
up vote
78
down vote
favorite
How can I install applications like Google Chrome on Ubuntu?
Are there any commands to install an application?
Index of answers:
- Basic usage of APT, Synaptic Package Manager and Ubuntu Software Center and how to install
.deb
files - List of methods, including offline options, with links to detailed information for each
- Advice for users coming from Windows
- Newer answer on using APT,
dpkg
andsnap
methods. Includes adding PPAs and using.sh
installers - Newer answer on KDE's Muon, Gdebi (a graphical installer for
.deb
packages), and Y PPA Manager - Installing software from a CD
software-installation
How can I install applications like Google Chrome on Ubuntu?
Are there any commands to install an application?
Index of answers:
- Basic usage of APT, Synaptic Package Manager and Ubuntu Software Center and how to install
.deb
files - List of methods, including offline options, with links to detailed information for each
- Advice for users coming from Windows
- Newer answer on using APT,
dpkg
andsnap
methods. Includes adding PPAs and using.sh
installers - Newer answer on KDE's Muon, Gdebi (a graphical installer for
.deb
packages), and Y PPA Manager - Installing software from a CD
software-installation
software-installation
edited Nov 23 at 16:46
Zanna
49.1k13123234
49.1k13123234
asked Jun 12 '13 at 12:13
udaykumar
6182812
6182812
1
Mitch's answer is the best way to go. Although, if you'd like you could skip the first part of using the terminal for the "wget" command, by going to google.com/intl/en/chrome/browser and clicking "Download chrome". You could then select 32 bit or 64 bit. Save it where you'd like and double click it just like an installer in Microsoft Windows. Other than that, please refer to Mitch's answer. Welcome to Ubuntu, hope you enjoy it here!
– Eli
Jul 22 '13 at 0:07
add a comment |
1
Mitch's answer is the best way to go. Although, if you'd like you could skip the first part of using the terminal for the "wget" command, by going to google.com/intl/en/chrome/browser and clicking "Download chrome". You could then select 32 bit or 64 bit. Save it where you'd like and double click it just like an installer in Microsoft Windows. Other than that, please refer to Mitch's answer. Welcome to Ubuntu, hope you enjoy it here!
– Eli
Jul 22 '13 at 0:07
1
1
Mitch's answer is the best way to go. Although, if you'd like you could skip the first part of using the terminal for the "wget" command, by going to google.com/intl/en/chrome/browser and clicking "Download chrome". You could then select 32 bit or 64 bit. Save it where you'd like and double click it just like an installer in Microsoft Windows. Other than that, please refer to Mitch's answer. Welcome to Ubuntu, hope you enjoy it here!
– Eli
Jul 22 '13 at 0:07
Mitch's answer is the best way to go. Although, if you'd like you could skip the first part of using the terminal for the "wget" command, by going to google.com/intl/en/chrome/browser and clicking "Download chrome". You could then select 32 bit or 64 bit. Save it where you'd like and double click it just like an installer in Microsoft Windows. Other than that, please refer to Mitch's answer. Welcome to Ubuntu, hope you enjoy it here!
– Eli
Jul 22 '13 at 0:07
add a comment |
10 Answers
10
active
oldest
votes
up vote
69
down vote
accepted
You can install applications different ways. Terminal, the Ubuntu Software Center, and Synaptic.
With the Ubuntu Software Center, you just open it from the Launcher, and search for the application that you want.
If you know the right commands to install via terminal, then you'd just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, you can run the command(s) needed to install the application.
For synaptic, it has to be installed on you system. To install it, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo apt install synaptic
Once installed, you can open it, and search for the application that you want to install, and just mark it for installation.
Also in some cases, you have to download either a .deb file in case of your question about Chrome, and have to manually install it, or a .tar.gz file, and that also have to done manually.
Now as far as Chrome is concerned, you can install it by downloading the .deb file, or just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
For 32bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb
For 64bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
If you encounter any error during the installation, when its done do
sudo apt -f install
For pros and cons of the different ways to install see this Post.
Source for Chrome installation: Google
Addition
Installing software in Ubuntu can be done several ways:
Ubuntu Software Center
You can search for an application, or go through the categories:
Synaptic Package Manager
You can search for an application, or go through the categories:
Installing via Terminal
Installing from terminal can be done in several ways:
APT
You can search for an application. The command to search for software is:
apt search <application_name>
Adding Repositories:
Edit the sources list file, and add
sudo -H gedit /etc/apt/sources.list
Or add from terminal
sudo add-apt-repository <repository_name>
sudo apt update
sudo apt install <application_name>
Others ways you can install
Manual download of a .deb (Debian package):
- Once downloaded, you can double-click on the package to have it open in the Software Center, from where you can install it.
Or, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the download location, and run the command(s) below:
sudo dpkg -i <package_name>.deb
Other options:
.rpm
files are packaged for Fedora or Mandriva, but you can usealien
(you can install using Synaptic) that allows you to convert.rpm
files to.deb
. (may not work all the time).tar.gz
files are compressed. If you see the.tar.gz
, it could be compressed files that have a pre-compiled binary file, or files that have the source code allowing you to compile the application from source. To find out how to install from a.tar.gz
, see How to install from a .tar.gz.
For more info see Installing Software, or A beginners guide to installing programs in Ubuntu
1
Also, if you aren't worried about having the google branded version of the browser, you can always install chromium from the repository.
– AntonChanning
Jun 12 '13 at 12:40
I strongly advise to only install programs from the official Ubuntu repositories (Synaptic, Software Center, or apt-get). By this, you'll get automatic updates and security patches. Also, programs installed from other sources might in rare cases cause issues when upgrading to a newer Ubuntu release. Only if you really, really need a program, and it is not available in the official repositories, I'd consider a direct download of a .deb file.
– soulsource
Jul 19 '13 at 12:28
1
Why talk about Ubuntu Software Center as last? That's the easiest way by far and you push it to the bottom.
– Jop V.
Jul 19 '13 at 19:35
1
Ubuntu Software Center is the first listed in the addition.
– Mitch♦
Jul 19 '13 at 20:27
You could also add some info about gdebi in the "Manual Download" section.
– Nonny Moose
Feb 14 '17 at 23:27
add a comment |
up vote
29
down vote
There are many ways to install packages in Ubuntu. I will try to list the most used methods, giving links to detailed explanations for each one.
Installing packages with an internet connection
1. Installing packages via your web browser
The APT protocol (or apturl) is a very simple way to install a software package from a web browser.
2. Installing packages via a basic graphical method
Ubuntu Software Center is a one-stop shop for installing and removing software on your computer.
3. Installing packages via an advanced graphical method
Synaptic is a graphical front-end to apt, the package management system in Ubuntu.
4. Installing packages via text based methods
Aptitude - the text-based method
apt-get - the technical method
Installing packages without an internet connection
1. Using Keryx
Keryx is a portable, cross-platform package manager that provides a graphical interface for gathering updates, packages, and dependencies for offline computers.
2. Using the Synaptic package download script
Synaptic package manager has built-in feature to generate a package download script.
3. Using apt-offline
apt-offline is an offline text based apt package manager.
4. Installing downloaded packages
.deb packages (here fits the part from the question relating to the installation of Google Chrome)- .tar.gz and .tar.bz2 packages
- .rpm packages
Source: https://help.ubuntu.com/community/InstallingSoftware
add a comment |
up vote
26
down vote
How to install Ubuntu software when you're a (future) ex-Windows user!
16.04 and higher: Ubuntu Software Center has been renamed to Ubuntu Software
(Everything else remains the same)
The most important thing is to remember that some day you'll have to remove this piece of software that you're going to install, so always use a removal method identical to your installation method.
Therefore, use the following priority for installing software on Ubuntu:
- Forget about what you know about downloading and installing from websites all over the place and use the following priority list on how to install software under Ubuntu because you now have (and want to keep) a stable system.
For beginning users: first 3 months, up to a year of using Ubuntu
Install/remove from the standard Ubuntu repositories using the GUI of the Ubuntu Software (Center).
As per below screen shot, click the dash in the upper left corner, type
software
, click the Ubuntu Software(Center).
The Ubuntu Software (Center) opens:
and you have a ton of application categories on the left to choose from. Or type the name of the software in the search box in the top right corner (which is what we'll be using)
I'm as amazed as you, but there is indeed crap software for Ubuntu, :-) so just click the crap you want, click on "Install", wait a bit and done!
To remove software using this method, click on the "installed" button on the second screen shot, click the crap you want to uninstall and click the "Uninstall" button! Easy-peasy.
And if the software is not there, don't go downloading it from somewhere else and install it using some of the more advanced features below! You're a beginner!
(Intermediate users, 6 months-1 year of experience)
Use the TUI ofaptitude
Press Ctrl+Alt+T to go to a terminal and type:
sudo aptitude
and press Enter
If you get
aptitude: command not found
, type:
sudo apt install aptitude
to install aptitude and wait until nothing moves any more and then type:
sudo aptitude
to start it.
This is still kind of familiar: you can use the mouse, but it's like you're back in the 90's before the Internet was invented. And now comes the first hurdle: RTFM for aptitude!
This is important!
aptitude
can let you do more advanced things, but is a back-stabbing servant!
Now on to more advanced stuff: (Use only when directed by knowledgeable people on this site having >5000 reputation + at least one gold badge)
Press Ctrl+Alt+T and type:
apt install szPackageName
to install
apt purge szPackageName
to completely remove
apt remove szPackageName
to remove the application, keeping its configuration files. (meaning: you might want to reinstall this sometime later and you just spent a few hours configuring the damn thing and don't want to lose the config!)
Really advanced stuff: (Use only when directed by immortals, that is: knowledgeable people on this site having >10000 reputation + several gold badges)
a. Download and install a .deb file: use
dpkg --install szPackageName
anddpkg --purge szPackageName
anddpkg --remove szPackageName
to install, completely remove and remove without config files.
b. Install a PPA: clearly follow instructions. if anything goes wrong, copy-paste the error, ask a question on this site, insert a link to the question and answer you were following and report back to the immortal! ;-)
'Just download and build from source!!!'
Probably a developer telling you this and he knows nothing about installing and maintaining a stable system without any problems, but has the coolest stuff on the planet!
Depending on your point of view to be embraced with love or to be avoided like the plague.
So if you do download and build from source, use
CheckInstall
instead ofmake install
to be able to remove this software more easily in the future, like in this example regardless of what the developer says!
add a comment |
up vote
6
down vote
Installing from Ubuntu Software
You can install applications from the Ubuntu Software application present in your launcher:
Here you can search for applications which are present in Ubuntu's repository.
Installing from terminal
Sometimes it is easy to install a software directly from the terminal. You can do so by typing in terminal:
sudo apt install <package name>
ex, Firewalll:
sudo apt install gufw
If anything goes wrong, you can fix most of them by installing their dependencies as
sudo apt install -f
Installing from PPA
If a software isn't present in Ubuntu software or is an older version than the latest official release, you can add a PPA (a software repository) and install software from there. You can add a PPA in your Ubuntu by typing this in terminal:
sudo add-apt-repository ppa:<PPA NAME>
sudo apt update
sudo apt install <package name>
Installing DEB files
There are some software (such as Google Chrome) which are present as an executable .deb
from their website:
You can download their executable DEB files and run them by double clicking or through terminal by typing:
sudo dpkg -i <file name>.deb
sudo apt install -f
Some applications (such as netbeans) does not come as DEB file, but as a .sh
file. You can run them in terminal by typing:
chmod +x <file name>
sudo sh <file name> # or
sudo ./<file name>
Snaps
A new type of software packaging called "Snaps" is also present which is a collection of the software and its dependencies in a single file. It is a single, distro independent setup for installing a software. Many software such as VLC, Blender etc are present as a Snap package. You can find them in the Ubuntu software.
1
Instead ofsudo dpkg -i foo.deb
, dosudo apt install ./foo.deb
, which will install dependencies.
– muru
Feb 13 '17 at 1:58
It can be achieved bysudo apt install -f
too.
– Adnan
Feb 13 '17 at 20:38
the point is that you don't need to do it in two steps - it can be done in one with apt
– muru
Feb 13 '17 at 23:02
add a comment |
up vote
6
down vote
Yes, there is an alternative for Windows .exe
or .msi
files in Ubuntu; that is .deb
files. Double clicking on such a file will run the installer.
add a comment |
up vote
4
down vote
Installing from a CD
First ensure that the CD does contain the applications; sometimes it just brings some info about the apps and a link you can follow to do the installation through the Software Center.
If the applications are, in fact, on the the CD, then search in the CD folders to find the applications as .deb
or .bin
or .tar
or .sh
files.
If it's a .deb
file
Just double click on it and Software Center will install it for you.
You can also install them using a command line method.
If it's a .bin
file
Rename it to .bin32
or .bin64
depending your architecture. You can find that information by running
dpkg --print-architecture
Go to properties and permit the file to run as a program, then just double click on it and you will open the installer.
If it's a .tar
file
Double click on it and extract everything to a folder of your desire, into this folder you may find an icon with the program name, just double click on it to start the program.
If it's a .sh
file
Go to properties and permit it to run as a program, and then double click on it to start the installer.
2
This answer is misleading at best. A.bin
installer changing its behavior based on its suffix is far from universal; I'm not personally familiar with any specific installers that use that (though there's no technical impediment to an installer checking what name was used to run it, like this). As for.tar
files, it's common that they contain source code that has to be compiled rather than executables. Furthermore, even with .tar files that do contain executables, double-clicking on the executable is often insufficient. It's more common that one must launch the program from a .desktop file.
– Eliah Kagan
Apr 25 at 13:48
add a comment |
up vote
4
down vote
Note: This was written for a more specific question, but it covers techniques that apply here too.
If I am not mistaken, the chip magazine only offers installers for Windows. You should be able to run these with software called "WINE".
A better way would be to download the *.deb
files (or the source code) from the homepages of these programs (if they offer support for Ubuntu) through a friend's PC with a better connection to the internet and to install (or compile) them on your PC.
But: chip mainly offers software to tweak you system, you don't need that on Ubuntu ;)
And: the software-center is the 'best' way to get software for Ubuntu (I think). So, if it is a matter of time (and not money) I would prefer getting a cup of tea/coffee over the other methods, because this way you will be able to easily update the software.
1
G.Ashwin kumar said that the CD brough linux applications, considering he is sure about that maybe the CD is for an outdated Ubuntu version or it can be for other linux distribution such as OpenSUSE. Although if it's for Windows other option to install software from the internet with a slow internet connection is to use torrent files to download them.
– Rodrigo Martins
Dec 27 '12 at 14:34
add a comment |
up vote
3
down vote
I'll give you the best methods, starting from the simplest.
SIMPLEST: Open the Ubuntu software Center. The fastest way to do this is by hitting start key and typing "Software..." till it pops up. This is a complete store. You'll find everything here.
GEEKY: Ubuntu has by default something called APT. To install any package, just open a terminal (Ctrl + Alt + T) and typesudo apt-get install <package name>
. For instance, to get Chrome typesudo apt-get install chromium-browser
.
SYNAPTIC: Synaptic is a graphical package management program for apt. It provides the same features as the apt-get command line utility with a GUI front-end based on Gtk+.
KERYX: Keryx allows users to select packages to install, check for updates, and download these packages onto a USB portable storage device. The packages are saved onto the device and are then taken back to the Linux box that it originated from and are then installed. This is basically an offline tool to install packages.
add a comment |
up vote
2
down vote
1. Muon as Synaptic replacement
As we already know modern Synaptic is buggy, it often and ineffective rebuilds search index (see bug 1685376 and discussion on community.ubuntu.com).
So I suggest to use great tool from KDE - Muon.
Below is quote from package description:
Features of note include:
* A powerful, yet intuitive interface
* Fast, accurate package search using the apt-xapian index and the Synaptic search algorithm
* Support for filtering packages by status and category
* Media change support
* Support for configuring packages through the debconf system
* Warn about/disallow the installation of untrusted packages, depending on APT settings
* Uses Polkit for running privileged actions for enhanced security, convenience, and desktop integration
* Power management suspension during package downloads, installations and removals
* Support for download the latest changelog of a package
* Package screenshots
You can install it with sudo apt-get install muon
.
It is located in Applications -> System Tools -> Muon Package Manager.
2. GDebi
gdebi lets you install local deb packages resolving and installing
its dependencies. apt does the same, but only for remote (http, ftp)
located packages.
2.1. GUI-way - gdebi-gtk
Single deb-files may be installed from GUI with gdebi-gtk
(which is located in gdebi
package - install it with sudo apt-get install gdebi
).
Standard usage scenario: download some deb-file, open its location in file-manager, do right-click on it and select Open with GDebi Package Installer option for installation.
2.2. console-way - gdebi
GDebi is useful in terminal too, here exists gdebi
command (sudo apt-get install gdebi-core
).
Standard usage scenario: download some deb-file, go to its folder, install it with dependencies by executing the following command: sudo gdebi program.deb
.
3. Search and install software from Y PPA Manager (y-ppa-manager
)
Sometimes software is not packaged in official Ubuntu repositories. In this case we need third-party repositories known as PPAs (Personal Software Archives). There are a lot of them on LaunchPad. You can use special page https://launchpad.net/ubuntu/+ppas for search.
But it is difficult to find such repository for exact package. In that case special utility - Y PPA Manager may help.
One can install it with
sudo add-apt-repository ppa:webupd8team/y-ppa-manager
sudo apt-get update
sudo apt-get install y-ppa-manager
After installation it will be located in Applications -> System Tools -> Y PPA Manager. The most useful thing is Search in all Launchpad PPAs - you can search packages by name, then add its PPA and install needed package.
But anyway be careful with software, obtained from PPAs. It may trash your system and cause unpredictable behavior of system.
4. Plasma Discover as GUI for Snap, FlatPak and APT
If you are running Ubuntu 18.04 LTS (with any desktop), then you can install Plasma Discover to it and use as GUI for Snap, FlatPak and APT. See this Q&A for details:
sudo apt-get install plasma-discover
plasma-discover-flatpak-backend plasma-discover-snap-backend
qml-module-qtquick-controls qml-module-qtquick-dialogs kdelibs5-plugins
and you will get universal GUI:
add a comment |
up vote
1
down vote
Open a terminal (Ctrl+Alt+T), then type
sudo apt-get install package-name
where package-name
is the name of the package you want to install.
For example, to install VLC Player, which is provided by the vlc
package:
sudo apt-get install vlc
add a comment |
protected by Mitch♦ May 20 '14 at 4:46
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
10 Answers
10
active
oldest
votes
10 Answers
10
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
69
down vote
accepted
You can install applications different ways. Terminal, the Ubuntu Software Center, and Synaptic.
With the Ubuntu Software Center, you just open it from the Launcher, and search for the application that you want.
If you know the right commands to install via terminal, then you'd just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, you can run the command(s) needed to install the application.
For synaptic, it has to be installed on you system. To install it, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo apt install synaptic
Once installed, you can open it, and search for the application that you want to install, and just mark it for installation.
Also in some cases, you have to download either a .deb file in case of your question about Chrome, and have to manually install it, or a .tar.gz file, and that also have to done manually.
Now as far as Chrome is concerned, you can install it by downloading the .deb file, or just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
For 32bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb
For 64bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
If you encounter any error during the installation, when its done do
sudo apt -f install
For pros and cons of the different ways to install see this Post.
Source for Chrome installation: Google
Addition
Installing software in Ubuntu can be done several ways:
Ubuntu Software Center
You can search for an application, or go through the categories:
Synaptic Package Manager
You can search for an application, or go through the categories:
Installing via Terminal
Installing from terminal can be done in several ways:
APT
You can search for an application. The command to search for software is:
apt search <application_name>
Adding Repositories:
Edit the sources list file, and add
sudo -H gedit /etc/apt/sources.list
Or add from terminal
sudo add-apt-repository <repository_name>
sudo apt update
sudo apt install <application_name>
Others ways you can install
Manual download of a .deb (Debian package):
- Once downloaded, you can double-click on the package to have it open in the Software Center, from where you can install it.
Or, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the download location, and run the command(s) below:
sudo dpkg -i <package_name>.deb
Other options:
.rpm
files are packaged for Fedora or Mandriva, but you can usealien
(you can install using Synaptic) that allows you to convert.rpm
files to.deb
. (may not work all the time).tar.gz
files are compressed. If you see the.tar.gz
, it could be compressed files that have a pre-compiled binary file, or files that have the source code allowing you to compile the application from source. To find out how to install from a.tar.gz
, see How to install from a .tar.gz.
For more info see Installing Software, or A beginners guide to installing programs in Ubuntu
1
Also, if you aren't worried about having the google branded version of the browser, you can always install chromium from the repository.
– AntonChanning
Jun 12 '13 at 12:40
I strongly advise to only install programs from the official Ubuntu repositories (Synaptic, Software Center, or apt-get). By this, you'll get automatic updates and security patches. Also, programs installed from other sources might in rare cases cause issues when upgrading to a newer Ubuntu release. Only if you really, really need a program, and it is not available in the official repositories, I'd consider a direct download of a .deb file.
– soulsource
Jul 19 '13 at 12:28
1
Why talk about Ubuntu Software Center as last? That's the easiest way by far and you push it to the bottom.
– Jop V.
Jul 19 '13 at 19:35
1
Ubuntu Software Center is the first listed in the addition.
– Mitch♦
Jul 19 '13 at 20:27
You could also add some info about gdebi in the "Manual Download" section.
– Nonny Moose
Feb 14 '17 at 23:27
add a comment |
up vote
69
down vote
accepted
You can install applications different ways. Terminal, the Ubuntu Software Center, and Synaptic.
With the Ubuntu Software Center, you just open it from the Launcher, and search for the application that you want.
If you know the right commands to install via terminal, then you'd just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, you can run the command(s) needed to install the application.
For synaptic, it has to be installed on you system. To install it, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo apt install synaptic
Once installed, you can open it, and search for the application that you want to install, and just mark it for installation.
Also in some cases, you have to download either a .deb file in case of your question about Chrome, and have to manually install it, or a .tar.gz file, and that also have to done manually.
Now as far as Chrome is concerned, you can install it by downloading the .deb file, or just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
For 32bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb
For 64bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
If you encounter any error during the installation, when its done do
sudo apt -f install
For pros and cons of the different ways to install see this Post.
Source for Chrome installation: Google
Addition
Installing software in Ubuntu can be done several ways:
Ubuntu Software Center
You can search for an application, or go through the categories:
Synaptic Package Manager
You can search for an application, or go through the categories:
Installing via Terminal
Installing from terminal can be done in several ways:
APT
You can search for an application. The command to search for software is:
apt search <application_name>
Adding Repositories:
Edit the sources list file, and add
sudo -H gedit /etc/apt/sources.list
Or add from terminal
sudo add-apt-repository <repository_name>
sudo apt update
sudo apt install <application_name>
Others ways you can install
Manual download of a .deb (Debian package):
- Once downloaded, you can double-click on the package to have it open in the Software Center, from where you can install it.
Or, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the download location, and run the command(s) below:
sudo dpkg -i <package_name>.deb
Other options:
.rpm
files are packaged for Fedora or Mandriva, but you can usealien
(you can install using Synaptic) that allows you to convert.rpm
files to.deb
. (may not work all the time).tar.gz
files are compressed. If you see the.tar.gz
, it could be compressed files that have a pre-compiled binary file, or files that have the source code allowing you to compile the application from source. To find out how to install from a.tar.gz
, see How to install from a .tar.gz.
For more info see Installing Software, or A beginners guide to installing programs in Ubuntu
1
Also, if you aren't worried about having the google branded version of the browser, you can always install chromium from the repository.
– AntonChanning
Jun 12 '13 at 12:40
I strongly advise to only install programs from the official Ubuntu repositories (Synaptic, Software Center, or apt-get). By this, you'll get automatic updates and security patches. Also, programs installed from other sources might in rare cases cause issues when upgrading to a newer Ubuntu release. Only if you really, really need a program, and it is not available in the official repositories, I'd consider a direct download of a .deb file.
– soulsource
Jul 19 '13 at 12:28
1
Why talk about Ubuntu Software Center as last? That's the easiest way by far and you push it to the bottom.
– Jop V.
Jul 19 '13 at 19:35
1
Ubuntu Software Center is the first listed in the addition.
– Mitch♦
Jul 19 '13 at 20:27
You could also add some info about gdebi in the "Manual Download" section.
– Nonny Moose
Feb 14 '17 at 23:27
add a comment |
up vote
69
down vote
accepted
up vote
69
down vote
accepted
You can install applications different ways. Terminal, the Ubuntu Software Center, and Synaptic.
With the Ubuntu Software Center, you just open it from the Launcher, and search for the application that you want.
If you know the right commands to install via terminal, then you'd just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, you can run the command(s) needed to install the application.
For synaptic, it has to be installed on you system. To install it, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo apt install synaptic
Once installed, you can open it, and search for the application that you want to install, and just mark it for installation.
Also in some cases, you have to download either a .deb file in case of your question about Chrome, and have to manually install it, or a .tar.gz file, and that also have to done manually.
Now as far as Chrome is concerned, you can install it by downloading the .deb file, or just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
For 32bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb
For 64bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
If you encounter any error during the installation, when its done do
sudo apt -f install
For pros and cons of the different ways to install see this Post.
Source for Chrome installation: Google
Addition
Installing software in Ubuntu can be done several ways:
Ubuntu Software Center
You can search for an application, or go through the categories:
Synaptic Package Manager
You can search for an application, or go through the categories:
Installing via Terminal
Installing from terminal can be done in several ways:
APT
You can search for an application. The command to search for software is:
apt search <application_name>
Adding Repositories:
Edit the sources list file, and add
sudo -H gedit /etc/apt/sources.list
Or add from terminal
sudo add-apt-repository <repository_name>
sudo apt update
sudo apt install <application_name>
Others ways you can install
Manual download of a .deb (Debian package):
- Once downloaded, you can double-click on the package to have it open in the Software Center, from where you can install it.
Or, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the download location, and run the command(s) below:
sudo dpkg -i <package_name>.deb
Other options:
.rpm
files are packaged for Fedora or Mandriva, but you can usealien
(you can install using Synaptic) that allows you to convert.rpm
files to.deb
. (may not work all the time).tar.gz
files are compressed. If you see the.tar.gz
, it could be compressed files that have a pre-compiled binary file, or files that have the source code allowing you to compile the application from source. To find out how to install from a.tar.gz
, see How to install from a .tar.gz.
For more info see Installing Software, or A beginners guide to installing programs in Ubuntu
You can install applications different ways. Terminal, the Ubuntu Software Center, and Synaptic.
With the Ubuntu Software Center, you just open it from the Launcher, and search for the application that you want.
If you know the right commands to install via terminal, then you'd just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, you can run the command(s) needed to install the application.
For synaptic, it has to be installed on you system. To install it, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
sudo apt install synaptic
Once installed, you can open it, and search for the application that you want to install, and just mark it for installation.
Also in some cases, you have to download either a .deb file in case of your question about Chrome, and have to manually install it, or a .tar.gz file, and that also have to done manually.
Now as far as Chrome is concerned, you can install it by downloading the .deb file, or just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
For 32bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb
For 64bit
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
If you encounter any error during the installation, when its done do
sudo apt -f install
For pros and cons of the different ways to install see this Post.
Source for Chrome installation: Google
Addition
Installing software in Ubuntu can be done several ways:
Ubuntu Software Center
You can search for an application, or go through the categories:
Synaptic Package Manager
You can search for an application, or go through the categories:
Installing via Terminal
Installing from terminal can be done in several ways:
APT
You can search for an application. The command to search for software is:
apt search <application_name>
Adding Repositories:
Edit the sources list file, and add
sudo -H gedit /etc/apt/sources.list
Or add from terminal
sudo add-apt-repository <repository_name>
sudo apt update
sudo apt install <application_name>
Others ways you can install
Manual download of a .deb (Debian package):
- Once downloaded, you can double-click on the package to have it open in the Software Center, from where you can install it.
Or, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the download location, and run the command(s) below:
sudo dpkg -i <package_name>.deb
Other options:
.rpm
files are packaged for Fedora or Mandriva, but you can usealien
(you can install using Synaptic) that allows you to convert.rpm
files to.deb
. (may not work all the time).tar.gz
files are compressed. If you see the.tar.gz
, it could be compressed files that have a pre-compiled binary file, or files that have the source code allowing you to compile the application from source. To find out how to install from a.tar.gz
, see How to install from a .tar.gz.
For more info see Installing Software, or A beginners guide to installing programs in Ubuntu
edited Nov 10 at 7:31
dessert
21.3k55896
21.3k55896
answered Jun 12 '13 at 12:29
Mitch♦
82.8k14172228
82.8k14172228
1
Also, if you aren't worried about having the google branded version of the browser, you can always install chromium from the repository.
– AntonChanning
Jun 12 '13 at 12:40
I strongly advise to only install programs from the official Ubuntu repositories (Synaptic, Software Center, or apt-get). By this, you'll get automatic updates and security patches. Also, programs installed from other sources might in rare cases cause issues when upgrading to a newer Ubuntu release. Only if you really, really need a program, and it is not available in the official repositories, I'd consider a direct download of a .deb file.
– soulsource
Jul 19 '13 at 12:28
1
Why talk about Ubuntu Software Center as last? That's the easiest way by far and you push it to the bottom.
– Jop V.
Jul 19 '13 at 19:35
1
Ubuntu Software Center is the first listed in the addition.
– Mitch♦
Jul 19 '13 at 20:27
You could also add some info about gdebi in the "Manual Download" section.
– Nonny Moose
Feb 14 '17 at 23:27
add a comment |
1
Also, if you aren't worried about having the google branded version of the browser, you can always install chromium from the repository.
– AntonChanning
Jun 12 '13 at 12:40
I strongly advise to only install programs from the official Ubuntu repositories (Synaptic, Software Center, or apt-get). By this, you'll get automatic updates and security patches. Also, programs installed from other sources might in rare cases cause issues when upgrading to a newer Ubuntu release. Only if you really, really need a program, and it is not available in the official repositories, I'd consider a direct download of a .deb file.
– soulsource
Jul 19 '13 at 12:28
1
Why talk about Ubuntu Software Center as last? That's the easiest way by far and you push it to the bottom.
– Jop V.
Jul 19 '13 at 19:35
1
Ubuntu Software Center is the first listed in the addition.
– Mitch♦
Jul 19 '13 at 20:27
You could also add some info about gdebi in the "Manual Download" section.
– Nonny Moose
Feb 14 '17 at 23:27
1
1
Also, if you aren't worried about having the google branded version of the browser, you can always install chromium from the repository.
– AntonChanning
Jun 12 '13 at 12:40
Also, if you aren't worried about having the google branded version of the browser, you can always install chromium from the repository.
– AntonChanning
Jun 12 '13 at 12:40
I strongly advise to only install programs from the official Ubuntu repositories (Synaptic, Software Center, or apt-get). By this, you'll get automatic updates and security patches. Also, programs installed from other sources might in rare cases cause issues when upgrading to a newer Ubuntu release. Only if you really, really need a program, and it is not available in the official repositories, I'd consider a direct download of a .deb file.
– soulsource
Jul 19 '13 at 12:28
I strongly advise to only install programs from the official Ubuntu repositories (Synaptic, Software Center, or apt-get). By this, you'll get automatic updates and security patches. Also, programs installed from other sources might in rare cases cause issues when upgrading to a newer Ubuntu release. Only if you really, really need a program, and it is not available in the official repositories, I'd consider a direct download of a .deb file.
– soulsource
Jul 19 '13 at 12:28
1
1
Why talk about Ubuntu Software Center as last? That's the easiest way by far and you push it to the bottom.
– Jop V.
Jul 19 '13 at 19:35
Why talk about Ubuntu Software Center as last? That's the easiest way by far and you push it to the bottom.
– Jop V.
Jul 19 '13 at 19:35
1
1
Ubuntu Software Center is the first listed in the addition.
– Mitch♦
Jul 19 '13 at 20:27
Ubuntu Software Center is the first listed in the addition.
– Mitch♦
Jul 19 '13 at 20:27
You could also add some info about gdebi in the "Manual Download" section.
– Nonny Moose
Feb 14 '17 at 23:27
You could also add some info about gdebi in the "Manual Download" section.
– Nonny Moose
Feb 14 '17 at 23:27
add a comment |
up vote
29
down vote
There are many ways to install packages in Ubuntu. I will try to list the most used methods, giving links to detailed explanations for each one.
Installing packages with an internet connection
1. Installing packages via your web browser
The APT protocol (or apturl) is a very simple way to install a software package from a web browser.
2. Installing packages via a basic graphical method
Ubuntu Software Center is a one-stop shop for installing and removing software on your computer.
3. Installing packages via an advanced graphical method
Synaptic is a graphical front-end to apt, the package management system in Ubuntu.
4. Installing packages via text based methods
Aptitude - the text-based method
apt-get - the technical method
Installing packages without an internet connection
1. Using Keryx
Keryx is a portable, cross-platform package manager that provides a graphical interface for gathering updates, packages, and dependencies for offline computers.
2. Using the Synaptic package download script
Synaptic package manager has built-in feature to generate a package download script.
3. Using apt-offline
apt-offline is an offline text based apt package manager.
4. Installing downloaded packages
.deb packages (here fits the part from the question relating to the installation of Google Chrome)- .tar.gz and .tar.bz2 packages
- .rpm packages
Source: https://help.ubuntu.com/community/InstallingSoftware
add a comment |
up vote
29
down vote
There are many ways to install packages in Ubuntu. I will try to list the most used methods, giving links to detailed explanations for each one.
Installing packages with an internet connection
1. Installing packages via your web browser
The APT protocol (or apturl) is a very simple way to install a software package from a web browser.
2. Installing packages via a basic graphical method
Ubuntu Software Center is a one-stop shop for installing and removing software on your computer.
3. Installing packages via an advanced graphical method
Synaptic is a graphical front-end to apt, the package management system in Ubuntu.
4. Installing packages via text based methods
Aptitude - the text-based method
apt-get - the technical method
Installing packages without an internet connection
1. Using Keryx
Keryx is a portable, cross-platform package manager that provides a graphical interface for gathering updates, packages, and dependencies for offline computers.
2. Using the Synaptic package download script
Synaptic package manager has built-in feature to generate a package download script.
3. Using apt-offline
apt-offline is an offline text based apt package manager.
4. Installing downloaded packages
.deb packages (here fits the part from the question relating to the installation of Google Chrome)- .tar.gz and .tar.bz2 packages
- .rpm packages
Source: https://help.ubuntu.com/community/InstallingSoftware
add a comment |
up vote
29
down vote
up vote
29
down vote
There are many ways to install packages in Ubuntu. I will try to list the most used methods, giving links to detailed explanations for each one.
Installing packages with an internet connection
1. Installing packages via your web browser
The APT protocol (or apturl) is a very simple way to install a software package from a web browser.
2. Installing packages via a basic graphical method
Ubuntu Software Center is a one-stop shop for installing and removing software on your computer.
3. Installing packages via an advanced graphical method
Synaptic is a graphical front-end to apt, the package management system in Ubuntu.
4. Installing packages via text based methods
Aptitude - the text-based method
apt-get - the technical method
Installing packages without an internet connection
1. Using Keryx
Keryx is a portable, cross-platform package manager that provides a graphical interface for gathering updates, packages, and dependencies for offline computers.
2. Using the Synaptic package download script
Synaptic package manager has built-in feature to generate a package download script.
3. Using apt-offline
apt-offline is an offline text based apt package manager.
4. Installing downloaded packages
.deb packages (here fits the part from the question relating to the installation of Google Chrome)- .tar.gz and .tar.bz2 packages
- .rpm packages
Source: https://help.ubuntu.com/community/InstallingSoftware
There are many ways to install packages in Ubuntu. I will try to list the most used methods, giving links to detailed explanations for each one.
Installing packages with an internet connection
1. Installing packages via your web browser
The APT protocol (or apturl) is a very simple way to install a software package from a web browser.
2. Installing packages via a basic graphical method
Ubuntu Software Center is a one-stop shop for installing and removing software on your computer.
3. Installing packages via an advanced graphical method
Synaptic is a graphical front-end to apt, the package management system in Ubuntu.
4. Installing packages via text based methods
Aptitude - the text-based method
apt-get - the technical method
Installing packages without an internet connection
1. Using Keryx
Keryx is a portable, cross-platform package manager that provides a graphical interface for gathering updates, packages, and dependencies for offline computers.
2. Using the Synaptic package download script
Synaptic package manager has built-in feature to generate a package download script.
3. Using apt-offline
apt-offline is an offline text based apt package manager.
4. Installing downloaded packages
.deb packages (here fits the part from the question relating to the installation of Google Chrome)- .tar.gz and .tar.bz2 packages
- .rpm packages
Source: https://help.ubuntu.com/community/InstallingSoftware
edited Apr 25 at 12:29
Zanna
49.1k13123234
49.1k13123234
answered Jul 19 '13 at 16:36
Radu Rădeanu
114k34243321
114k34243321
add a comment |
add a comment |
up vote
26
down vote
How to install Ubuntu software when you're a (future) ex-Windows user!
16.04 and higher: Ubuntu Software Center has been renamed to Ubuntu Software
(Everything else remains the same)
The most important thing is to remember that some day you'll have to remove this piece of software that you're going to install, so always use a removal method identical to your installation method.
Therefore, use the following priority for installing software on Ubuntu:
- Forget about what you know about downloading and installing from websites all over the place and use the following priority list on how to install software under Ubuntu because you now have (and want to keep) a stable system.
For beginning users: first 3 months, up to a year of using Ubuntu
Install/remove from the standard Ubuntu repositories using the GUI of the Ubuntu Software (Center).
As per below screen shot, click the dash in the upper left corner, type
software
, click the Ubuntu Software(Center).
The Ubuntu Software (Center) opens:
and you have a ton of application categories on the left to choose from. Or type the name of the software in the search box in the top right corner (which is what we'll be using)
I'm as amazed as you, but there is indeed crap software for Ubuntu, :-) so just click the crap you want, click on "Install", wait a bit and done!
To remove software using this method, click on the "installed" button on the second screen shot, click the crap you want to uninstall and click the "Uninstall" button! Easy-peasy.
And if the software is not there, don't go downloading it from somewhere else and install it using some of the more advanced features below! You're a beginner!
(Intermediate users, 6 months-1 year of experience)
Use the TUI ofaptitude
Press Ctrl+Alt+T to go to a terminal and type:
sudo aptitude
and press Enter
If you get
aptitude: command not found
, type:
sudo apt install aptitude
to install aptitude and wait until nothing moves any more and then type:
sudo aptitude
to start it.
This is still kind of familiar: you can use the mouse, but it's like you're back in the 90's before the Internet was invented. And now comes the first hurdle: RTFM for aptitude!
This is important!
aptitude
can let you do more advanced things, but is a back-stabbing servant!
Now on to more advanced stuff: (Use only when directed by knowledgeable people on this site having >5000 reputation + at least one gold badge)
Press Ctrl+Alt+T and type:
apt install szPackageName
to install
apt purge szPackageName
to completely remove
apt remove szPackageName
to remove the application, keeping its configuration files. (meaning: you might want to reinstall this sometime later and you just spent a few hours configuring the damn thing and don't want to lose the config!)
Really advanced stuff: (Use only when directed by immortals, that is: knowledgeable people on this site having >10000 reputation + several gold badges)
a. Download and install a .deb file: use
dpkg --install szPackageName
anddpkg --purge szPackageName
anddpkg --remove szPackageName
to install, completely remove and remove without config files.
b. Install a PPA: clearly follow instructions. if anything goes wrong, copy-paste the error, ask a question on this site, insert a link to the question and answer you were following and report back to the immortal! ;-)
'Just download and build from source!!!'
Probably a developer telling you this and he knows nothing about installing and maintaining a stable system without any problems, but has the coolest stuff on the planet!
Depending on your point of view to be embraced with love or to be avoided like the plague.
So if you do download and build from source, use
CheckInstall
instead ofmake install
to be able to remove this software more easily in the future, like in this example regardless of what the developer says!
add a comment |
up vote
26
down vote
How to install Ubuntu software when you're a (future) ex-Windows user!
16.04 and higher: Ubuntu Software Center has been renamed to Ubuntu Software
(Everything else remains the same)
The most important thing is to remember that some day you'll have to remove this piece of software that you're going to install, so always use a removal method identical to your installation method.
Therefore, use the following priority for installing software on Ubuntu:
- Forget about what you know about downloading and installing from websites all over the place and use the following priority list on how to install software under Ubuntu because you now have (and want to keep) a stable system.
For beginning users: first 3 months, up to a year of using Ubuntu
Install/remove from the standard Ubuntu repositories using the GUI of the Ubuntu Software (Center).
As per below screen shot, click the dash in the upper left corner, type
software
, click the Ubuntu Software(Center).
The Ubuntu Software (Center) opens:
and you have a ton of application categories on the left to choose from. Or type the name of the software in the search box in the top right corner (which is what we'll be using)
I'm as amazed as you, but there is indeed crap software for Ubuntu, :-) so just click the crap you want, click on "Install", wait a bit and done!
To remove software using this method, click on the "installed" button on the second screen shot, click the crap you want to uninstall and click the "Uninstall" button! Easy-peasy.
And if the software is not there, don't go downloading it from somewhere else and install it using some of the more advanced features below! You're a beginner!
(Intermediate users, 6 months-1 year of experience)
Use the TUI ofaptitude
Press Ctrl+Alt+T to go to a terminal and type:
sudo aptitude
and press Enter
If you get
aptitude: command not found
, type:
sudo apt install aptitude
to install aptitude and wait until nothing moves any more and then type:
sudo aptitude
to start it.
This is still kind of familiar: you can use the mouse, but it's like you're back in the 90's before the Internet was invented. And now comes the first hurdle: RTFM for aptitude!
This is important!
aptitude
can let you do more advanced things, but is a back-stabbing servant!
Now on to more advanced stuff: (Use only when directed by knowledgeable people on this site having >5000 reputation + at least one gold badge)
Press Ctrl+Alt+T and type:
apt install szPackageName
to install
apt purge szPackageName
to completely remove
apt remove szPackageName
to remove the application, keeping its configuration files. (meaning: you might want to reinstall this sometime later and you just spent a few hours configuring the damn thing and don't want to lose the config!)
Really advanced stuff: (Use only when directed by immortals, that is: knowledgeable people on this site having >10000 reputation + several gold badges)
a. Download and install a .deb file: use
dpkg --install szPackageName
anddpkg --purge szPackageName
anddpkg --remove szPackageName
to install, completely remove and remove without config files.
b. Install a PPA: clearly follow instructions. if anything goes wrong, copy-paste the error, ask a question on this site, insert a link to the question and answer you were following and report back to the immortal! ;-)
'Just download and build from source!!!'
Probably a developer telling you this and he knows nothing about installing and maintaining a stable system without any problems, but has the coolest stuff on the planet!
Depending on your point of view to be embraced with love or to be avoided like the plague.
So if you do download and build from source, use
CheckInstall
instead ofmake install
to be able to remove this software more easily in the future, like in this example regardless of what the developer says!
add a comment |
up vote
26
down vote
up vote
26
down vote
How to install Ubuntu software when you're a (future) ex-Windows user!
16.04 and higher: Ubuntu Software Center has been renamed to Ubuntu Software
(Everything else remains the same)
The most important thing is to remember that some day you'll have to remove this piece of software that you're going to install, so always use a removal method identical to your installation method.
Therefore, use the following priority for installing software on Ubuntu:
- Forget about what you know about downloading and installing from websites all over the place and use the following priority list on how to install software under Ubuntu because you now have (and want to keep) a stable system.
For beginning users: first 3 months, up to a year of using Ubuntu
Install/remove from the standard Ubuntu repositories using the GUI of the Ubuntu Software (Center).
As per below screen shot, click the dash in the upper left corner, type
software
, click the Ubuntu Software(Center).
The Ubuntu Software (Center) opens:
and you have a ton of application categories on the left to choose from. Or type the name of the software in the search box in the top right corner (which is what we'll be using)
I'm as amazed as you, but there is indeed crap software for Ubuntu, :-) so just click the crap you want, click on "Install", wait a bit and done!
To remove software using this method, click on the "installed" button on the second screen shot, click the crap you want to uninstall and click the "Uninstall" button! Easy-peasy.
And if the software is not there, don't go downloading it from somewhere else and install it using some of the more advanced features below! You're a beginner!
(Intermediate users, 6 months-1 year of experience)
Use the TUI ofaptitude
Press Ctrl+Alt+T to go to a terminal and type:
sudo aptitude
and press Enter
If you get
aptitude: command not found
, type:
sudo apt install aptitude
to install aptitude and wait until nothing moves any more and then type:
sudo aptitude
to start it.
This is still kind of familiar: you can use the mouse, but it's like you're back in the 90's before the Internet was invented. And now comes the first hurdle: RTFM for aptitude!
This is important!
aptitude
can let you do more advanced things, but is a back-stabbing servant!
Now on to more advanced stuff: (Use only when directed by knowledgeable people on this site having >5000 reputation + at least one gold badge)
Press Ctrl+Alt+T and type:
apt install szPackageName
to install
apt purge szPackageName
to completely remove
apt remove szPackageName
to remove the application, keeping its configuration files. (meaning: you might want to reinstall this sometime later and you just spent a few hours configuring the damn thing and don't want to lose the config!)
Really advanced stuff: (Use only when directed by immortals, that is: knowledgeable people on this site having >10000 reputation + several gold badges)
a. Download and install a .deb file: use
dpkg --install szPackageName
anddpkg --purge szPackageName
anddpkg --remove szPackageName
to install, completely remove and remove without config files.
b. Install a PPA: clearly follow instructions. if anything goes wrong, copy-paste the error, ask a question on this site, insert a link to the question and answer you were following and report back to the immortal! ;-)
'Just download and build from source!!!'
Probably a developer telling you this and he knows nothing about installing and maintaining a stable system without any problems, but has the coolest stuff on the planet!
Depending on your point of view to be embraced with love or to be avoided like the plague.
So if you do download and build from source, use
CheckInstall
instead ofmake install
to be able to remove this software more easily in the future, like in this example regardless of what the developer says!
How to install Ubuntu software when you're a (future) ex-Windows user!
16.04 and higher: Ubuntu Software Center has been renamed to Ubuntu Software
(Everything else remains the same)
The most important thing is to remember that some day you'll have to remove this piece of software that you're going to install, so always use a removal method identical to your installation method.
Therefore, use the following priority for installing software on Ubuntu:
- Forget about what you know about downloading and installing from websites all over the place and use the following priority list on how to install software under Ubuntu because you now have (and want to keep) a stable system.
For beginning users: first 3 months, up to a year of using Ubuntu
Install/remove from the standard Ubuntu repositories using the GUI of the Ubuntu Software (Center).
As per below screen shot, click the dash in the upper left corner, type
software
, click the Ubuntu Software(Center).
The Ubuntu Software (Center) opens:
and you have a ton of application categories on the left to choose from. Or type the name of the software in the search box in the top right corner (which is what we'll be using)
I'm as amazed as you, but there is indeed crap software for Ubuntu, :-) so just click the crap you want, click on "Install", wait a bit and done!
To remove software using this method, click on the "installed" button on the second screen shot, click the crap you want to uninstall and click the "Uninstall" button! Easy-peasy.
And if the software is not there, don't go downloading it from somewhere else and install it using some of the more advanced features below! You're a beginner!
(Intermediate users, 6 months-1 year of experience)
Use the TUI ofaptitude
Press Ctrl+Alt+T to go to a terminal and type:
sudo aptitude
and press Enter
If you get
aptitude: command not found
, type:
sudo apt install aptitude
to install aptitude and wait until nothing moves any more and then type:
sudo aptitude
to start it.
This is still kind of familiar: you can use the mouse, but it's like you're back in the 90's before the Internet was invented. And now comes the first hurdle: RTFM for aptitude!
This is important!
aptitude
can let you do more advanced things, but is a back-stabbing servant!
Now on to more advanced stuff: (Use only when directed by knowledgeable people on this site having >5000 reputation + at least one gold badge)
Press Ctrl+Alt+T and type:
apt install szPackageName
to install
apt purge szPackageName
to completely remove
apt remove szPackageName
to remove the application, keeping its configuration files. (meaning: you might want to reinstall this sometime later and you just spent a few hours configuring the damn thing and don't want to lose the config!)
Really advanced stuff: (Use only when directed by immortals, that is: knowledgeable people on this site having >10000 reputation + several gold badges)
a. Download and install a .deb file: use
dpkg --install szPackageName
anddpkg --purge szPackageName
anddpkg --remove szPackageName
to install, completely remove and remove without config files.
b. Install a PPA: clearly follow instructions. if anything goes wrong, copy-paste the error, ask a question on this site, insert a link to the question and answer you were following and report back to the immortal! ;-)
'Just download and build from source!!!'
Probably a developer telling you this and he knows nothing about installing and maintaining a stable system without any problems, but has the coolest stuff on the planet!
Depending on your point of view to be embraced with love or to be avoided like the plague.
So if you do download and build from source, use
CheckInstall
instead ofmake install
to be able to remove this software more easily in the future, like in this example regardless of what the developer says!
edited Nov 13 at 7:45
dessert
21.3k55896
21.3k55896
answered Jan 18 '15 at 19:45
Fabby
25.7k1359159
25.7k1359159
add a comment |
add a comment |
up vote
6
down vote
Installing from Ubuntu Software
You can install applications from the Ubuntu Software application present in your launcher:
Here you can search for applications which are present in Ubuntu's repository.
Installing from terminal
Sometimes it is easy to install a software directly from the terminal. You can do so by typing in terminal:
sudo apt install <package name>
ex, Firewalll:
sudo apt install gufw
If anything goes wrong, you can fix most of them by installing their dependencies as
sudo apt install -f
Installing from PPA
If a software isn't present in Ubuntu software or is an older version than the latest official release, you can add a PPA (a software repository) and install software from there. You can add a PPA in your Ubuntu by typing this in terminal:
sudo add-apt-repository ppa:<PPA NAME>
sudo apt update
sudo apt install <package name>
Installing DEB files
There are some software (such as Google Chrome) which are present as an executable .deb
from their website:
You can download their executable DEB files and run them by double clicking or through terminal by typing:
sudo dpkg -i <file name>.deb
sudo apt install -f
Some applications (such as netbeans) does not come as DEB file, but as a .sh
file. You can run them in terminal by typing:
chmod +x <file name>
sudo sh <file name> # or
sudo ./<file name>
Snaps
A new type of software packaging called "Snaps" is also present which is a collection of the software and its dependencies in a single file. It is a single, distro independent setup for installing a software. Many software such as VLC, Blender etc are present as a Snap package. You can find them in the Ubuntu software.
1
Instead ofsudo dpkg -i foo.deb
, dosudo apt install ./foo.deb
, which will install dependencies.
– muru
Feb 13 '17 at 1:58
It can be achieved bysudo apt install -f
too.
– Adnan
Feb 13 '17 at 20:38
the point is that you don't need to do it in two steps - it can be done in one with apt
– muru
Feb 13 '17 at 23:02
add a comment |
up vote
6
down vote
Installing from Ubuntu Software
You can install applications from the Ubuntu Software application present in your launcher:
Here you can search for applications which are present in Ubuntu's repository.
Installing from terminal
Sometimes it is easy to install a software directly from the terminal. You can do so by typing in terminal:
sudo apt install <package name>
ex, Firewalll:
sudo apt install gufw
If anything goes wrong, you can fix most of them by installing their dependencies as
sudo apt install -f
Installing from PPA
If a software isn't present in Ubuntu software or is an older version than the latest official release, you can add a PPA (a software repository) and install software from there. You can add a PPA in your Ubuntu by typing this in terminal:
sudo add-apt-repository ppa:<PPA NAME>
sudo apt update
sudo apt install <package name>
Installing DEB files
There are some software (such as Google Chrome) which are present as an executable .deb
from their website:
You can download their executable DEB files and run them by double clicking or through terminal by typing:
sudo dpkg -i <file name>.deb
sudo apt install -f
Some applications (such as netbeans) does not come as DEB file, but as a .sh
file. You can run them in terminal by typing:
chmod +x <file name>
sudo sh <file name> # or
sudo ./<file name>
Snaps
A new type of software packaging called "Snaps" is also present which is a collection of the software and its dependencies in a single file. It is a single, distro independent setup for installing a software. Many software such as VLC, Blender etc are present as a Snap package. You can find them in the Ubuntu software.
1
Instead ofsudo dpkg -i foo.deb
, dosudo apt install ./foo.deb
, which will install dependencies.
– muru
Feb 13 '17 at 1:58
It can be achieved bysudo apt install -f
too.
– Adnan
Feb 13 '17 at 20:38
the point is that you don't need to do it in two steps - it can be done in one with apt
– muru
Feb 13 '17 at 23:02
add a comment |
up vote
6
down vote
up vote
6
down vote
Installing from Ubuntu Software
You can install applications from the Ubuntu Software application present in your launcher:
Here you can search for applications which are present in Ubuntu's repository.
Installing from terminal
Sometimes it is easy to install a software directly from the terminal. You can do so by typing in terminal:
sudo apt install <package name>
ex, Firewalll:
sudo apt install gufw
If anything goes wrong, you can fix most of them by installing their dependencies as
sudo apt install -f
Installing from PPA
If a software isn't present in Ubuntu software or is an older version than the latest official release, you can add a PPA (a software repository) and install software from there. You can add a PPA in your Ubuntu by typing this in terminal:
sudo add-apt-repository ppa:<PPA NAME>
sudo apt update
sudo apt install <package name>
Installing DEB files
There are some software (such as Google Chrome) which are present as an executable .deb
from their website:
You can download their executable DEB files and run them by double clicking or through terminal by typing:
sudo dpkg -i <file name>.deb
sudo apt install -f
Some applications (such as netbeans) does not come as DEB file, but as a .sh
file. You can run them in terminal by typing:
chmod +x <file name>
sudo sh <file name> # or
sudo ./<file name>
Snaps
A new type of software packaging called "Snaps" is also present which is a collection of the software and its dependencies in a single file. It is a single, distro independent setup for installing a software. Many software such as VLC, Blender etc are present as a Snap package. You can find them in the Ubuntu software.
Installing from Ubuntu Software
You can install applications from the Ubuntu Software application present in your launcher:
Here you can search for applications which are present in Ubuntu's repository.
Installing from terminal
Sometimes it is easy to install a software directly from the terminal. You can do so by typing in terminal:
sudo apt install <package name>
ex, Firewalll:
sudo apt install gufw
If anything goes wrong, you can fix most of them by installing their dependencies as
sudo apt install -f
Installing from PPA
If a software isn't present in Ubuntu software or is an older version than the latest official release, you can add a PPA (a software repository) and install software from there. You can add a PPA in your Ubuntu by typing this in terminal:
sudo add-apt-repository ppa:<PPA NAME>
sudo apt update
sudo apt install <package name>
Installing DEB files
There are some software (such as Google Chrome) which are present as an executable .deb
from their website:
You can download their executable DEB files and run them by double clicking or through terminal by typing:
sudo dpkg -i <file name>.deb
sudo apt install -f
Some applications (such as netbeans) does not come as DEB file, but as a .sh
file. You can run them in terminal by typing:
chmod +x <file name>
sudo sh <file name> # or
sudo ./<file name>
Snaps
A new type of software packaging called "Snaps" is also present which is a collection of the software and its dependencies in a single file. It is a single, distro independent setup for installing a software. Many software such as VLC, Blender etc are present as a Snap package. You can find them in the Ubuntu software.
edited Jan 28 at 22:15
N0rbert
19.5k54390
19.5k54390
answered Feb 12 '17 at 23:02
Adnan
9241614
9241614
1
Instead ofsudo dpkg -i foo.deb
, dosudo apt install ./foo.deb
, which will install dependencies.
– muru
Feb 13 '17 at 1:58
It can be achieved bysudo apt install -f
too.
– Adnan
Feb 13 '17 at 20:38
the point is that you don't need to do it in two steps - it can be done in one with apt
– muru
Feb 13 '17 at 23:02
add a comment |
1
Instead ofsudo dpkg -i foo.deb
, dosudo apt install ./foo.deb
, which will install dependencies.
– muru
Feb 13 '17 at 1:58
It can be achieved bysudo apt install -f
too.
– Adnan
Feb 13 '17 at 20:38
the point is that you don't need to do it in two steps - it can be done in one with apt
– muru
Feb 13 '17 at 23:02
1
1
Instead of
sudo dpkg -i foo.deb
, do sudo apt install ./foo.deb
, which will install dependencies.– muru
Feb 13 '17 at 1:58
Instead of
sudo dpkg -i foo.deb
, do sudo apt install ./foo.deb
, which will install dependencies.– muru
Feb 13 '17 at 1:58
It can be achieved by
sudo apt install -f
too.– Adnan
Feb 13 '17 at 20:38
It can be achieved by
sudo apt install -f
too.– Adnan
Feb 13 '17 at 20:38
the point is that you don't need to do it in two steps - it can be done in one with apt
– muru
Feb 13 '17 at 23:02
the point is that you don't need to do it in two steps - it can be done in one with apt
– muru
Feb 13 '17 at 23:02
add a comment |
up vote
6
down vote
Yes, there is an alternative for Windows .exe
or .msi
files in Ubuntu; that is .deb
files. Double clicking on such a file will run the installer.
add a comment |
up vote
6
down vote
Yes, there is an alternative for Windows .exe
or .msi
files in Ubuntu; that is .deb
files. Double clicking on such a file will run the installer.
add a comment |
up vote
6
down vote
up vote
6
down vote
Yes, there is an alternative for Windows .exe
or .msi
files in Ubuntu; that is .deb
files. Double clicking on such a file will run the installer.
Yes, there is an alternative for Windows .exe
or .msi
files in Ubuntu; that is .deb
files. Double clicking on such a file will run the installer.
edited Apr 25 at 12:56
Eliah Kagan
80.8k20226364
80.8k20226364
answered Dec 23 '13 at 15:46
Avinash Raj
51.1k41165211
51.1k41165211
add a comment |
add a comment |
up vote
4
down vote
Installing from a CD
First ensure that the CD does contain the applications; sometimes it just brings some info about the apps and a link you can follow to do the installation through the Software Center.
If the applications are, in fact, on the the CD, then search in the CD folders to find the applications as .deb
or .bin
or .tar
or .sh
files.
If it's a .deb
file
Just double click on it and Software Center will install it for you.
You can also install them using a command line method.
If it's a .bin
file
Rename it to .bin32
or .bin64
depending your architecture. You can find that information by running
dpkg --print-architecture
Go to properties and permit the file to run as a program, then just double click on it and you will open the installer.
If it's a .tar
file
Double click on it and extract everything to a folder of your desire, into this folder you may find an icon with the program name, just double click on it to start the program.
If it's a .sh
file
Go to properties and permit it to run as a program, and then double click on it to start the installer.
2
This answer is misleading at best. A.bin
installer changing its behavior based on its suffix is far from universal; I'm not personally familiar with any specific installers that use that (though there's no technical impediment to an installer checking what name was used to run it, like this). As for.tar
files, it's common that they contain source code that has to be compiled rather than executables. Furthermore, even with .tar files that do contain executables, double-clicking on the executable is often insufficient. It's more common that one must launch the program from a .desktop file.
– Eliah Kagan
Apr 25 at 13:48
add a comment |
up vote
4
down vote
Installing from a CD
First ensure that the CD does contain the applications; sometimes it just brings some info about the apps and a link you can follow to do the installation through the Software Center.
If the applications are, in fact, on the the CD, then search in the CD folders to find the applications as .deb
or .bin
or .tar
or .sh
files.
If it's a .deb
file
Just double click on it and Software Center will install it for you.
You can also install them using a command line method.
If it's a .bin
file
Rename it to .bin32
or .bin64
depending your architecture. You can find that information by running
dpkg --print-architecture
Go to properties and permit the file to run as a program, then just double click on it and you will open the installer.
If it's a .tar
file
Double click on it and extract everything to a folder of your desire, into this folder you may find an icon with the program name, just double click on it to start the program.
If it's a .sh
file
Go to properties and permit it to run as a program, and then double click on it to start the installer.
2
This answer is misleading at best. A.bin
installer changing its behavior based on its suffix is far from universal; I'm not personally familiar with any specific installers that use that (though there's no technical impediment to an installer checking what name was used to run it, like this). As for.tar
files, it's common that they contain source code that has to be compiled rather than executables. Furthermore, even with .tar files that do contain executables, double-clicking on the executable is often insufficient. It's more common that one must launch the program from a .desktop file.
– Eliah Kagan
Apr 25 at 13:48
add a comment |
up vote
4
down vote
up vote
4
down vote
Installing from a CD
First ensure that the CD does contain the applications; sometimes it just brings some info about the apps and a link you can follow to do the installation through the Software Center.
If the applications are, in fact, on the the CD, then search in the CD folders to find the applications as .deb
or .bin
or .tar
or .sh
files.
If it's a .deb
file
Just double click on it and Software Center will install it for you.
You can also install them using a command line method.
If it's a .bin
file
Rename it to .bin32
or .bin64
depending your architecture. You can find that information by running
dpkg --print-architecture
Go to properties and permit the file to run as a program, then just double click on it and you will open the installer.
If it's a .tar
file
Double click on it and extract everything to a folder of your desire, into this folder you may find an icon with the program name, just double click on it to start the program.
If it's a .sh
file
Go to properties and permit it to run as a program, and then double click on it to start the installer.
Installing from a CD
First ensure that the CD does contain the applications; sometimes it just brings some info about the apps and a link you can follow to do the installation through the Software Center.
If the applications are, in fact, on the the CD, then search in the CD folders to find the applications as .deb
or .bin
or .tar
or .sh
files.
If it's a .deb
file
Just double click on it and Software Center will install it for you.
You can also install them using a command line method.
If it's a .bin
file
Rename it to .bin32
or .bin64
depending your architecture. You can find that information by running
dpkg --print-architecture
Go to properties and permit the file to run as a program, then just double click on it and you will open the installer.
If it's a .tar
file
Double click on it and extract everything to a folder of your desire, into this folder you may find an icon with the program name, just double click on it to start the program.
If it's a .sh
file
Go to properties and permit it to run as a program, and then double click on it to start the installer.
edited Apr 25 at 12:42
Zanna
49.1k13123234
49.1k13123234
answered Dec 27 '12 at 11:36
Rodrigo Martins
4,25762964
4,25762964
2
This answer is misleading at best. A.bin
installer changing its behavior based on its suffix is far from universal; I'm not personally familiar with any specific installers that use that (though there's no technical impediment to an installer checking what name was used to run it, like this). As for.tar
files, it's common that they contain source code that has to be compiled rather than executables. Furthermore, even with .tar files that do contain executables, double-clicking on the executable is often insufficient. It's more common that one must launch the program from a .desktop file.
– Eliah Kagan
Apr 25 at 13:48
add a comment |
2
This answer is misleading at best. A.bin
installer changing its behavior based on its suffix is far from universal; I'm not personally familiar with any specific installers that use that (though there's no technical impediment to an installer checking what name was used to run it, like this). As for.tar
files, it's common that they contain source code that has to be compiled rather than executables. Furthermore, even with .tar files that do contain executables, double-clicking on the executable is often insufficient. It's more common that one must launch the program from a .desktop file.
– Eliah Kagan
Apr 25 at 13:48
2
2
This answer is misleading at best. A
.bin
installer changing its behavior based on its suffix is far from universal; I'm not personally familiar with any specific installers that use that (though there's no technical impediment to an installer checking what name was used to run it, like this). As for .tar
files, it's common that they contain source code that has to be compiled rather than executables. Furthermore, even with .tar files that do contain executables, double-clicking on the executable is often insufficient. It's more common that one must launch the program from a .desktop file.– Eliah Kagan
Apr 25 at 13:48
This answer is misleading at best. A
.bin
installer changing its behavior based on its suffix is far from universal; I'm not personally familiar with any specific installers that use that (though there's no technical impediment to an installer checking what name was used to run it, like this). As for .tar
files, it's common that they contain source code that has to be compiled rather than executables. Furthermore, even with .tar files that do contain executables, double-clicking on the executable is often insufficient. It's more common that one must launch the program from a .desktop file.– Eliah Kagan
Apr 25 at 13:48
add a comment |
up vote
4
down vote
Note: This was written for a more specific question, but it covers techniques that apply here too.
If I am not mistaken, the chip magazine only offers installers for Windows. You should be able to run these with software called "WINE".
A better way would be to download the *.deb
files (or the source code) from the homepages of these programs (if they offer support for Ubuntu) through a friend's PC with a better connection to the internet and to install (or compile) them on your PC.
But: chip mainly offers software to tweak you system, you don't need that on Ubuntu ;)
And: the software-center is the 'best' way to get software for Ubuntu (I think). So, if it is a matter of time (and not money) I would prefer getting a cup of tea/coffee over the other methods, because this way you will be able to easily update the software.
1
G.Ashwin kumar said that the CD brough linux applications, considering he is sure about that maybe the CD is for an outdated Ubuntu version or it can be for other linux distribution such as OpenSUSE. Although if it's for Windows other option to install software from the internet with a slow internet connection is to use torrent files to download them.
– Rodrigo Martins
Dec 27 '12 at 14:34
add a comment |
up vote
4
down vote
Note: This was written for a more specific question, but it covers techniques that apply here too.
If I am not mistaken, the chip magazine only offers installers for Windows. You should be able to run these with software called "WINE".
A better way would be to download the *.deb
files (or the source code) from the homepages of these programs (if they offer support for Ubuntu) through a friend's PC with a better connection to the internet and to install (or compile) them on your PC.
But: chip mainly offers software to tweak you system, you don't need that on Ubuntu ;)
And: the software-center is the 'best' way to get software for Ubuntu (I think). So, if it is a matter of time (and not money) I would prefer getting a cup of tea/coffee over the other methods, because this way you will be able to easily update the software.
1
G.Ashwin kumar said that the CD brough linux applications, considering he is sure about that maybe the CD is for an outdated Ubuntu version or it can be for other linux distribution such as OpenSUSE. Although if it's for Windows other option to install software from the internet with a slow internet connection is to use torrent files to download them.
– Rodrigo Martins
Dec 27 '12 at 14:34
add a comment |
up vote
4
down vote
up vote
4
down vote
Note: This was written for a more specific question, but it covers techniques that apply here too.
If I am not mistaken, the chip magazine only offers installers for Windows. You should be able to run these with software called "WINE".
A better way would be to download the *.deb
files (or the source code) from the homepages of these programs (if they offer support for Ubuntu) through a friend's PC with a better connection to the internet and to install (or compile) them on your PC.
But: chip mainly offers software to tweak you system, you don't need that on Ubuntu ;)
And: the software-center is the 'best' way to get software for Ubuntu (I think). So, if it is a matter of time (and not money) I would prefer getting a cup of tea/coffee over the other methods, because this way you will be able to easily update the software.
Note: This was written for a more specific question, but it covers techniques that apply here too.
If I am not mistaken, the chip magazine only offers installers for Windows. You should be able to run these with software called "WINE".
A better way would be to download the *.deb
files (or the source code) from the homepages of these programs (if they offer support for Ubuntu) through a friend's PC with a better connection to the internet and to install (or compile) them on your PC.
But: chip mainly offers software to tweak you system, you don't need that on Ubuntu ;)
And: the software-center is the 'best' way to get software for Ubuntu (I think). So, if it is a matter of time (and not money) I would prefer getting a cup of tea/coffee over the other methods, because this way you will be able to easily update the software.
edited Apr 25 at 13:22
Eliah Kagan
80.8k20226364
80.8k20226364
answered Dec 27 '12 at 11:37
super metty
562
562
1
G.Ashwin kumar said that the CD brough linux applications, considering he is sure about that maybe the CD is for an outdated Ubuntu version or it can be for other linux distribution such as OpenSUSE. Although if it's for Windows other option to install software from the internet with a slow internet connection is to use torrent files to download them.
– Rodrigo Martins
Dec 27 '12 at 14:34
add a comment |
1
G.Ashwin kumar said that the CD brough linux applications, considering he is sure about that maybe the CD is for an outdated Ubuntu version or it can be for other linux distribution such as OpenSUSE. Although if it's for Windows other option to install software from the internet with a slow internet connection is to use torrent files to download them.
– Rodrigo Martins
Dec 27 '12 at 14:34
1
1
G.Ashwin kumar said that the CD brough linux applications, considering he is sure about that maybe the CD is for an outdated Ubuntu version or it can be for other linux distribution such as OpenSUSE. Although if it's for Windows other option to install software from the internet with a slow internet connection is to use torrent files to download them.
– Rodrigo Martins
Dec 27 '12 at 14:34
G.Ashwin kumar said that the CD brough linux applications, considering he is sure about that maybe the CD is for an outdated Ubuntu version or it can be for other linux distribution such as OpenSUSE. Although if it's for Windows other option to install software from the internet with a slow internet connection is to use torrent files to download them.
– Rodrigo Martins
Dec 27 '12 at 14:34
add a comment |
up vote
3
down vote
I'll give you the best methods, starting from the simplest.
SIMPLEST: Open the Ubuntu software Center. The fastest way to do this is by hitting start key and typing "Software..." till it pops up. This is a complete store. You'll find everything here.
GEEKY: Ubuntu has by default something called APT. To install any package, just open a terminal (Ctrl + Alt + T) and typesudo apt-get install <package name>
. For instance, to get Chrome typesudo apt-get install chromium-browser
.
SYNAPTIC: Synaptic is a graphical package management program for apt. It provides the same features as the apt-get command line utility with a GUI front-end based on Gtk+.
KERYX: Keryx allows users to select packages to install, check for updates, and download these packages onto a USB portable storage device. The packages are saved onto the device and are then taken back to the Linux box that it originated from and are then installed. This is basically an offline tool to install packages.
add a comment |
up vote
3
down vote
I'll give you the best methods, starting from the simplest.
SIMPLEST: Open the Ubuntu software Center. The fastest way to do this is by hitting start key and typing "Software..." till it pops up. This is a complete store. You'll find everything here.
GEEKY: Ubuntu has by default something called APT. To install any package, just open a terminal (Ctrl + Alt + T) and typesudo apt-get install <package name>
. For instance, to get Chrome typesudo apt-get install chromium-browser
.
SYNAPTIC: Synaptic is a graphical package management program for apt. It provides the same features as the apt-get command line utility with a GUI front-end based on Gtk+.
KERYX: Keryx allows users to select packages to install, check for updates, and download these packages onto a USB portable storage device. The packages are saved onto the device and are then taken back to the Linux box that it originated from and are then installed. This is basically an offline tool to install packages.
add a comment |
up vote
3
down vote
up vote
3
down vote
I'll give you the best methods, starting from the simplest.
SIMPLEST: Open the Ubuntu software Center. The fastest way to do this is by hitting start key and typing "Software..." till it pops up. This is a complete store. You'll find everything here.
GEEKY: Ubuntu has by default something called APT. To install any package, just open a terminal (Ctrl + Alt + T) and typesudo apt-get install <package name>
. For instance, to get Chrome typesudo apt-get install chromium-browser
.
SYNAPTIC: Synaptic is a graphical package management program for apt. It provides the same features as the apt-get command line utility with a GUI front-end based on Gtk+.
KERYX: Keryx allows users to select packages to install, check for updates, and download these packages onto a USB portable storage device. The packages are saved onto the device and are then taken back to the Linux box that it originated from and are then installed. This is basically an offline tool to install packages.
I'll give you the best methods, starting from the simplest.
SIMPLEST: Open the Ubuntu software Center. The fastest way to do this is by hitting start key and typing "Software..." till it pops up. This is a complete store. You'll find everything here.
GEEKY: Ubuntu has by default something called APT. To install any package, just open a terminal (Ctrl + Alt + T) and typesudo apt-get install <package name>
. For instance, to get Chrome typesudo apt-get install chromium-browser
.
SYNAPTIC: Synaptic is a graphical package management program for apt. It provides the same features as the apt-get command line utility with a GUI front-end based on Gtk+.
KERYX: Keryx allows users to select packages to install, check for updates, and download these packages onto a USB portable storage device. The packages are saved onto the device and are then taken back to the Linux box that it originated from and are then installed. This is basically an offline tool to install packages.
edited Jan 11 '17 at 6:47
Tshilidzi Mudau
3,50931527
3,50931527
answered Jul 26 '13 at 8:02
ps95
1,4081820
1,4081820
add a comment |
add a comment |
up vote
2
down vote
1. Muon as Synaptic replacement
As we already know modern Synaptic is buggy, it often and ineffective rebuilds search index (see bug 1685376 and discussion on community.ubuntu.com).
So I suggest to use great tool from KDE - Muon.
Below is quote from package description:
Features of note include:
* A powerful, yet intuitive interface
* Fast, accurate package search using the apt-xapian index and the Synaptic search algorithm
* Support for filtering packages by status and category
* Media change support
* Support for configuring packages through the debconf system
* Warn about/disallow the installation of untrusted packages, depending on APT settings
* Uses Polkit for running privileged actions for enhanced security, convenience, and desktop integration
* Power management suspension during package downloads, installations and removals
* Support for download the latest changelog of a package
* Package screenshots
You can install it with sudo apt-get install muon
.
It is located in Applications -> System Tools -> Muon Package Manager.
2. GDebi
gdebi lets you install local deb packages resolving and installing
its dependencies. apt does the same, but only for remote (http, ftp)
located packages.
2.1. GUI-way - gdebi-gtk
Single deb-files may be installed from GUI with gdebi-gtk
(which is located in gdebi
package - install it with sudo apt-get install gdebi
).
Standard usage scenario: download some deb-file, open its location in file-manager, do right-click on it and select Open with GDebi Package Installer option for installation.
2.2. console-way - gdebi
GDebi is useful in terminal too, here exists gdebi
command (sudo apt-get install gdebi-core
).
Standard usage scenario: download some deb-file, go to its folder, install it with dependencies by executing the following command: sudo gdebi program.deb
.
3. Search and install software from Y PPA Manager (y-ppa-manager
)
Sometimes software is not packaged in official Ubuntu repositories. In this case we need third-party repositories known as PPAs (Personal Software Archives). There are a lot of them on LaunchPad. You can use special page https://launchpad.net/ubuntu/+ppas for search.
But it is difficult to find such repository for exact package. In that case special utility - Y PPA Manager may help.
One can install it with
sudo add-apt-repository ppa:webupd8team/y-ppa-manager
sudo apt-get update
sudo apt-get install y-ppa-manager
After installation it will be located in Applications -> System Tools -> Y PPA Manager. The most useful thing is Search in all Launchpad PPAs - you can search packages by name, then add its PPA and install needed package.
But anyway be careful with software, obtained from PPAs. It may trash your system and cause unpredictable behavior of system.
4. Plasma Discover as GUI for Snap, FlatPak and APT
If you are running Ubuntu 18.04 LTS (with any desktop), then you can install Plasma Discover to it and use as GUI for Snap, FlatPak and APT. See this Q&A for details:
sudo apt-get install plasma-discover
plasma-discover-flatpak-backend plasma-discover-snap-backend
qml-module-qtquick-controls qml-module-qtquick-dialogs kdelibs5-plugins
and you will get universal GUI:
add a comment |
up vote
2
down vote
1. Muon as Synaptic replacement
As we already know modern Synaptic is buggy, it often and ineffective rebuilds search index (see bug 1685376 and discussion on community.ubuntu.com).
So I suggest to use great tool from KDE - Muon.
Below is quote from package description:
Features of note include:
* A powerful, yet intuitive interface
* Fast, accurate package search using the apt-xapian index and the Synaptic search algorithm
* Support for filtering packages by status and category
* Media change support
* Support for configuring packages through the debconf system
* Warn about/disallow the installation of untrusted packages, depending on APT settings
* Uses Polkit for running privileged actions for enhanced security, convenience, and desktop integration
* Power management suspension during package downloads, installations and removals
* Support for download the latest changelog of a package
* Package screenshots
You can install it with sudo apt-get install muon
.
It is located in Applications -> System Tools -> Muon Package Manager.
2. GDebi
gdebi lets you install local deb packages resolving and installing
its dependencies. apt does the same, but only for remote (http, ftp)
located packages.
2.1. GUI-way - gdebi-gtk
Single deb-files may be installed from GUI with gdebi-gtk
(which is located in gdebi
package - install it with sudo apt-get install gdebi
).
Standard usage scenario: download some deb-file, open its location in file-manager, do right-click on it and select Open with GDebi Package Installer option for installation.
2.2. console-way - gdebi
GDebi is useful in terminal too, here exists gdebi
command (sudo apt-get install gdebi-core
).
Standard usage scenario: download some deb-file, go to its folder, install it with dependencies by executing the following command: sudo gdebi program.deb
.
3. Search and install software from Y PPA Manager (y-ppa-manager
)
Sometimes software is not packaged in official Ubuntu repositories. In this case we need third-party repositories known as PPAs (Personal Software Archives). There are a lot of them on LaunchPad. You can use special page https://launchpad.net/ubuntu/+ppas for search.
But it is difficult to find such repository for exact package. In that case special utility - Y PPA Manager may help.
One can install it with
sudo add-apt-repository ppa:webupd8team/y-ppa-manager
sudo apt-get update
sudo apt-get install y-ppa-manager
After installation it will be located in Applications -> System Tools -> Y PPA Manager. The most useful thing is Search in all Launchpad PPAs - you can search packages by name, then add its PPA and install needed package.
But anyway be careful with software, obtained from PPAs. It may trash your system and cause unpredictable behavior of system.
4. Plasma Discover as GUI for Snap, FlatPak and APT
If you are running Ubuntu 18.04 LTS (with any desktop), then you can install Plasma Discover to it and use as GUI for Snap, FlatPak and APT. See this Q&A for details:
sudo apt-get install plasma-discover
plasma-discover-flatpak-backend plasma-discover-snap-backend
qml-module-qtquick-controls qml-module-qtquick-dialogs kdelibs5-plugins
and you will get universal GUI:
add a comment |
up vote
2
down vote
up vote
2
down vote
1. Muon as Synaptic replacement
As we already know modern Synaptic is buggy, it often and ineffective rebuilds search index (see bug 1685376 and discussion on community.ubuntu.com).
So I suggest to use great tool from KDE - Muon.
Below is quote from package description:
Features of note include:
* A powerful, yet intuitive interface
* Fast, accurate package search using the apt-xapian index and the Synaptic search algorithm
* Support for filtering packages by status and category
* Media change support
* Support for configuring packages through the debconf system
* Warn about/disallow the installation of untrusted packages, depending on APT settings
* Uses Polkit for running privileged actions for enhanced security, convenience, and desktop integration
* Power management suspension during package downloads, installations and removals
* Support for download the latest changelog of a package
* Package screenshots
You can install it with sudo apt-get install muon
.
It is located in Applications -> System Tools -> Muon Package Manager.
2. GDebi
gdebi lets you install local deb packages resolving and installing
its dependencies. apt does the same, but only for remote (http, ftp)
located packages.
2.1. GUI-way - gdebi-gtk
Single deb-files may be installed from GUI with gdebi-gtk
(which is located in gdebi
package - install it with sudo apt-get install gdebi
).
Standard usage scenario: download some deb-file, open its location in file-manager, do right-click on it and select Open with GDebi Package Installer option for installation.
2.2. console-way - gdebi
GDebi is useful in terminal too, here exists gdebi
command (sudo apt-get install gdebi-core
).
Standard usage scenario: download some deb-file, go to its folder, install it with dependencies by executing the following command: sudo gdebi program.deb
.
3. Search and install software from Y PPA Manager (y-ppa-manager
)
Sometimes software is not packaged in official Ubuntu repositories. In this case we need third-party repositories known as PPAs (Personal Software Archives). There are a lot of them on LaunchPad. You can use special page https://launchpad.net/ubuntu/+ppas for search.
But it is difficult to find such repository for exact package. In that case special utility - Y PPA Manager may help.
One can install it with
sudo add-apt-repository ppa:webupd8team/y-ppa-manager
sudo apt-get update
sudo apt-get install y-ppa-manager
After installation it will be located in Applications -> System Tools -> Y PPA Manager. The most useful thing is Search in all Launchpad PPAs - you can search packages by name, then add its PPA and install needed package.
But anyway be careful with software, obtained from PPAs. It may trash your system and cause unpredictable behavior of system.
4. Plasma Discover as GUI for Snap, FlatPak and APT
If you are running Ubuntu 18.04 LTS (with any desktop), then you can install Plasma Discover to it and use as GUI for Snap, FlatPak and APT. See this Q&A for details:
sudo apt-get install plasma-discover
plasma-discover-flatpak-backend plasma-discover-snap-backend
qml-module-qtquick-controls qml-module-qtquick-dialogs kdelibs5-plugins
and you will get universal GUI:
1. Muon as Synaptic replacement
As we already know modern Synaptic is buggy, it often and ineffective rebuilds search index (see bug 1685376 and discussion on community.ubuntu.com).
So I suggest to use great tool from KDE - Muon.
Below is quote from package description:
Features of note include:
* A powerful, yet intuitive interface
* Fast, accurate package search using the apt-xapian index and the Synaptic search algorithm
* Support for filtering packages by status and category
* Media change support
* Support for configuring packages through the debconf system
* Warn about/disallow the installation of untrusted packages, depending on APT settings
* Uses Polkit for running privileged actions for enhanced security, convenience, and desktop integration
* Power management suspension during package downloads, installations and removals
* Support for download the latest changelog of a package
* Package screenshots
You can install it with sudo apt-get install muon
.
It is located in Applications -> System Tools -> Muon Package Manager.
2. GDebi
gdebi lets you install local deb packages resolving and installing
its dependencies. apt does the same, but only for remote (http, ftp)
located packages.
2.1. GUI-way - gdebi-gtk
Single deb-files may be installed from GUI with gdebi-gtk
(which is located in gdebi
package - install it with sudo apt-get install gdebi
).
Standard usage scenario: download some deb-file, open its location in file-manager, do right-click on it and select Open with GDebi Package Installer option for installation.
2.2. console-way - gdebi
GDebi is useful in terminal too, here exists gdebi
command (sudo apt-get install gdebi-core
).
Standard usage scenario: download some deb-file, go to its folder, install it with dependencies by executing the following command: sudo gdebi program.deb
.
3. Search and install software from Y PPA Manager (y-ppa-manager
)
Sometimes software is not packaged in official Ubuntu repositories. In this case we need third-party repositories known as PPAs (Personal Software Archives). There are a lot of them on LaunchPad. You can use special page https://launchpad.net/ubuntu/+ppas for search.
But it is difficult to find such repository for exact package. In that case special utility - Y PPA Manager may help.
One can install it with
sudo add-apt-repository ppa:webupd8team/y-ppa-manager
sudo apt-get update
sudo apt-get install y-ppa-manager
After installation it will be located in Applications -> System Tools -> Y PPA Manager. The most useful thing is Search in all Launchpad PPAs - you can search packages by name, then add its PPA and install needed package.
But anyway be careful with software, obtained from PPAs. It may trash your system and cause unpredictable behavior of system.
4. Plasma Discover as GUI for Snap, FlatPak and APT
If you are running Ubuntu 18.04 LTS (with any desktop), then you can install Plasma Discover to it and use as GUI for Snap, FlatPak and APT. See this Q&A for details:
sudo apt-get install plasma-discover
plasma-discover-flatpak-backend plasma-discover-snap-backend
qml-module-qtquick-controls qml-module-qtquick-dialogs kdelibs5-plugins
and you will get universal GUI:
edited Nov 8 at 21:18
answered Jan 28 at 21:19
N0rbert
19.5k54390
19.5k54390
add a comment |
add a comment |
up vote
1
down vote
Open a terminal (Ctrl+Alt+T), then type
sudo apt-get install package-name
where package-name
is the name of the package you want to install.
For example, to install VLC Player, which is provided by the vlc
package:
sudo apt-get install vlc
add a comment |
up vote
1
down vote
Open a terminal (Ctrl+Alt+T), then type
sudo apt-get install package-name
where package-name
is the name of the package you want to install.
For example, to install VLC Player, which is provided by the vlc
package:
sudo apt-get install vlc
add a comment |
up vote
1
down vote
up vote
1
down vote
Open a terminal (Ctrl+Alt+T), then type
sudo apt-get install package-name
where package-name
is the name of the package you want to install.
For example, to install VLC Player, which is provided by the vlc
package:
sudo apt-get install vlc
Open a terminal (Ctrl+Alt+T), then type
sudo apt-get install package-name
where package-name
is the name of the package you want to install.
For example, to install VLC Player, which is provided by the vlc
package:
sudo apt-get install vlc
edited Apr 25 at 15:26
Eliah Kagan
80.8k20226364
80.8k20226364
answered Jul 24 '13 at 19:29
Muks
94139
94139
add a comment |
add a comment |
protected by Mitch♦ May 20 '14 at 4:46
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1
Mitch's answer is the best way to go. Although, if you'd like you could skip the first part of using the terminal for the "wget" command, by going to google.com/intl/en/chrome/browser and clicking "Download chrome". You could then select 32 bit or 64 bit. Save it where you'd like and double click it just like an installer in Microsoft Windows. Other than that, please refer to Mitch's answer. Welcome to Ubuntu, hope you enjoy it here!
– Eli
Jul 22 '13 at 0:07