Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
05-28-2016, 06:21 PM
|
#1
|
Senior Member
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034
Rep:
|
Is it better to install software from the Ubuntu Software Center or Synaptic Package Manager?
I just got a new (used) computer running with Xubuntu 16:04LTS. I have tons of room on the hard drive and want to install a lot of software. Most of the software I want is in the Ubuntu Software Center but some is not. And most of what is in the Ubuntu Software Center is also in Synaptic. And I know software can be installed from the terminal. I want mostly ordinary stuff. GIMP, Gparted, Shutter, Kate, Sigil, Back in Time, Clipman. And I'm pretty low-tech. (The terminal still is not my strength.) So what's the optimal way for somebody like me to install software? Thanks.
|
|
|
05-28-2016, 06:41 PM
|
#2
|
LQ Newbie
Registered: May 2016
Posts: 7
Rep:
|
I always use the terminal. It's faster and as simple as
sudo apt-get install packagename
Of course, recent buntus now uses apt as to apt-get
sudo apt install packagename
If synaptic doesn't have the package you want, use the software center and visa-versa.
In all fairness, use whichever is easier to you. GUI or terminal. Both will do the same thing and install packages on your system.
Last edited by reinfro555; 05-28-2016 at 07:29 PM.
|
|
1 members found this post helpful.
|
05-29-2016, 03:36 AM
|
#3
|
Member
Registered: Dec 2014
Distribution: siduction
Posts: 264
Rep:
|
Quote:
Both will do the same thing and install packages on your system.
|
^Yeah, that.
If you're a seasoned Debian/buntu user that doesn't like typing, Synaptic's probably ideal, as you'll know the names of the packages you want or quickly be able to search them. The Software Center's better for discovering new software.
|
|
1 members found this post helpful.
|
05-29-2016, 09:26 AM
|
#4
|
Senior Member
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 22 MATE, Peppermint OS-Devuan, EndeavourOS
Posts: 4,198
|
Gregg,
I agree with reinfro555 and seasons.
If you know the name of the software you require, it is much faster to type the list in Terminal.
If you are unsure about the name of the software, look in Ubuntu Software Centre:
System > Administration > Ubuntu Software Centre.
The latter way is much slower because you are searching for packages and then installing each one separately.
Long-winded!
C'mon Gregg, man up and use the command line! You are a writer after all, so your fingers will be a blur in Terminal!
You know you can do it.
|
|
1 members found this post helpful.
|
05-29-2016, 11:19 AM
|
#5
|
LQ Veteran
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
|
Quote:
Originally Posted by Gregg Bell
So what's the optimal way for somebody like me to install software?
|
Hi Gregg...
Just my opinion but I think the Software Center makes the process more a little more simple for the beginning user. However, I admit that I've not used it that much at all and don't know everything about it. I'm a Synaptic fan and I either is it or the command line to install software.
Regards...
|
|
2 members found this post helpful.
|
05-29-2016, 12:22 PM
|
#6
|
Senior Member
Registered: Nov 2015
Location: Alberta Canada
Distribution: Windows10, Debian
Posts: 1,109
Rep:
|
I agree with the other sentiments expressed already. I only use the software center to find the correct name and spelling of the packages I want.
|
|
1 members found this post helpful.
|
05-29-2016, 12:49 PM
|
#7
|
Senior Member
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 22 MATE, Peppermint OS-Devuan, EndeavourOS
Posts: 4,198
|
Gregg,
As offgridguy states:
Quote:
I only use the software center to find the correct name and spelling of the packages I want.
|
Let's say you want to install True Type Core Fonts from Microsoft and Back In Time, plus several other items whose names you already know, such as gimp, kate, shutter.
With the first 2, SC reports ttf-mscorefonts-installer and backintime-gnome ( or backintime-kde).
In Terminal you would run:
Code:
sudo apt-get install ttf-mscorefonts-installer backintime-gnome gimp kate shutter
and install 5 for the price of 1.
Easy and much more efficient!
|
|
1 members found this post helpful.
|
05-29-2016, 05:05 PM
|
#8
|
Senior Member
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034
Original Poster
Rep:
|
Quote:
Originally Posted by reinfro555
I always use the terminal. It's faster and as simple as
sudo apt-get install packagename
Of course, recent buntus now uses apt as to apt-get
sudo apt install packagename
If synaptic doesn't have the package you want, use the software center and visa-versa.
In all fairness, use whichever is easier to you. GUI or terminal. Both will do the same thing and install packages on your system.
|
Thanks reinfro555. And thanks for mentioning apt vs apt-get. This new install has just apt and my old computer had apt-get.
|
|
|
05-29-2016, 05:14 PM
|
#9
|
Senior Member
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034
Original Poster
Rep:
|
Quote:
Originally Posted by seasons
^Yeah, that.
If you're a seasoned Debian/buntu user that doesn't like typing, Synaptic's probably ideal, as you'll know the names of the packages you want or quickly be able to search them. The Software Center's better for discovering new software.
|
Thanks seasons. Makes sense.
|
|
|
05-29-2016, 05:15 PM
|
#10
|
Senior Member
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034
Original Poster
Rep:
|
Quote:
Originally Posted by beachboy2
Gregg,
I agree with reinfro555 and seasons.
If you know the name of the software you require, it is much faster to type the list in Terminal.
If you are unsure about the name of the software, look in Ubuntu Software Centre:
System > Administration > Ubuntu Software Centre.
The latter way is much slower because you are searching for packages and then installing each one separately.
Long-winded!
C'mon Gregg, man up and use the command line! You are a writer after all, so your fingers will be a blur in Terminal!
You know you can do it.
|
Ha ha--you're shaming me into this!!
|
|
|
05-29-2016, 05:17 PM
|
#11
|
Senior Member
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034
Original Poster
Rep:
|
Quote:
Originally Posted by offgridguy
I agree with the other sentiments expressed already. I only use the software center to find the correct name and spelling of the packages I want.
|
Thanks offgridguy. Hadn't thought of needing the correct name and proper spelling issue.
|
|
|
05-29-2016, 05:19 PM
|
#12
|
Senior Member
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034
Original Poster
Rep:
|
Quote:
Originally Posted by ardvark71
Hi Gregg...
Just my opinion but I think the Software Center makes the process more a little more simple for the beginning user. However, I admit that I've not used it that much at all and don't know everything about it. I'm a Synaptic fan and I either is it or the command line to install software.
Regards...
|
Hey ardvark. I like the Software Center, but it does seem slow--getting there and downloading from there. Besides, beachboy2 is shaming me into using the terminal--LOL.
|
|
|
05-29-2016, 05:22 PM
|
#13
|
Senior Member
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034
Original Poster
Rep:
|
Quote:
Originally Posted by beachboy2
Gregg,
As offgridguy states:
Let's say you want to install True Type Core Fonts from Microsoft and Back In Time, plus several other items whose names you already know, such as gimp, kate, shutter.
With the first 2, SC reports ttf-mscorefonts-installer and backintime-gnome ( or backintime-kde).
In Terminal you would run:
Code:
sudo apt-get install ttf-mscorefonts-installer backintime-gnome gimp kate shutter
and install 5 for the price of 1.
Easy and much more efficient!
|
Ha ha. I tried your multiple download and it didn't work! I did it for shutter and clipman and the computer couldn't find clipman. But clipman was in Synaptic. But you've convinced me about the terminal. It's so fast. Thanks.
|
|
|
05-29-2016, 05:38 PM
|
#14
|
Senior Member
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 22 MATE, Peppermint OS-Devuan, EndeavourOS
Posts: 4,198
|
Gregg,
Good for you.
Well done.
So many people ask for the "best" or "optimal" way to do things.
There is usually never a "best" way or a "best" laptop etc.
Just be aware of the different options available to you and act accordingly.
|
|
1 members found this post helpful.
|
05-29-2016, 06:02 PM
|
#15
|
Member
Registered: Oct 2012
Location: The Czech Republic
Posts: 280
Rep:
|
Quote:
Originally Posted by Gregg Bell
Most of the software I want is in the Ubuntu Software Center but some is not. And most of what is in the Ubuntu Software Center is also in Synaptic.
|
Just an (maybe) interesting point: the Ubuntu Software Center in 16.04 is actually rebranded Gnome Software Center. Gnome software center developers had this interesting idea that in GUI package installer there should be only GUI programs available -- since if you're willing to use CLI alternatives you're most likely able to install software via the terminal. That's why the Software Center doesn't show all the software included.
I don't quite understand why the Ubuntu team changed its software center but forgot to tell the users about such things.
|
|
3 members found this post helpful.
|
All times are GMT -5. The time now is 06:08 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|