I'd like to install the lubuntu software center
on lubuntu 11.10.
3 Answers
11.10
You can install lubuntu-software-center via the following:
First, add the PPA. The exact instructions are here, the PPA you need to add is this:
ppa:lubuntu-desktop/ppa
If you have add-apt-repository
programe, just run:
sudo add-apt-repository ppa:lubuntu-desktop/ppa
Then, you need to update your package list:
sudo apt-get update
Then, you'll need to install the lubuntu software center:
sudo apt-get install lubuntu-software-center
12.04
Lubuntu software center is in the main repositories and is part of the default Lubuntu applications. If in case you want to install it for Ubuntu or other flavours, you can use the following command:
sudo apt-get install lubuntu-software-center
-
It seems no longer maintained nor supported! – Miracles Happen Oct 03 '18 at 04:25
At the time of writing this answer, there does not seem to be any support.
But there is still another alternative, the Gnome Software Center.
It can be installed by: sudo apt-get install gnome-software
.
This is in the main repositories.
UPDATE
Zanna (See comments) has told me that Lubuntu now comes with a software centre call Discover. See the screenshot here to see how to open it.
Hope this helps!
-
I'm not sure what you mean by "there is no support". It's been a few years since this question was asked. Lubuntu now comes with a graphical software centre called Discover. As far as I know GNOME Software Center is still not that great after all these years so I wouldn't recommend installing it on Lubuntu. Here's a screenshot of how to access Discover. You can rewrite your answer to mention this using my screenshot if you like – Zanna Oct 01 '21 at 13:37
-
I miss the old Lubuntu Software Center from 14.04ish. It was the best of all the Software Centers. – Organic Marble Oct 01 '21 at 13:55
*According to Lubuntu there has not been an official Software Center release for Lubuntu at the moment but there is one under development by Stephen Smally that is in pre-alpha stage that you can test out. To install execute the following code inside the terminal:
sudo add-apt-repository ppa:lubuntu-desktop/ppa && sudo apt-get update && sudo apt-get install lubuntu-software-center
You can read JRG's answer above to see what each section of this code is doing.
- 113