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
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!
- 1
- 1
*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