How to install Ubuntu on Samsung Galaxy S2

Android Ubuntu ScreenshotToday there is again an article on Android. More specifically, it’s about how you can run Android and Ubuntu (Linux) in parallel on your smartphone or tablet. Although I had already blogged about it before, but today I want to explain the whole setup process, step-by-step (using a slightly different method).
The title of this article is actually not quite correct, because we will not install Ubuntu, but setup some kind of a live system – so we get down to business.
I used my Galaxy S2 for the project. If it works with other smartphones, I could not test, but would be happy about comments on your part, if you tried it.
 
For our purposes we need the following things / conditions:

Android based device with root rights
Android Terminal Emulator (freely available on Google Playstore)
android-vnc-viewer (freely available on […]

How to use Ubuntu software center on Linux Mint

Ubuntu Software Center StartbildschirmLinux Mint itself is well and good, but the included software management is admittedly not quite my thing. I personally think it’s quite sluggish (long loading times) and also eye candy looks different. Concerning the software center Ubuntu has done a far better job. And that’s why I want to show you today, how to get Ubuntu’s software center running up on Linux Mint.
In the first step the software center must be installed with the following shell command.

sudo apt-get install software-center

Then a python script must be created. Therefore you copy an existing script and edit it. See the following shell commands to get to know what exactly is going on.

sudo cp -r /usr/share/software-center/softwarecenter/distro/Ubuntu.py /usr/share/software-center/softwarecenter/distro/LinuxMint.py

In this script, you need to edit some lines. So replace

class Ubuntu(Debian)

with

class LinuxMint(Debian)

For this purpose, just open the file with the following command:

gksudo gedit /usr/share/software-center/softwarecenter/distro/LinuxMint.py

(Within […]