Can I install Ubuntu desktop OS on an android tablet? Is it possible to replace android and have Ubuntu as the only OS. If yes, then how do I install it onto my tablet? Do I need to backup my Android? What are the hardware requirement for that?
2 Answers
- You need to install the ubuntu-device-flash package.
- Add PPAs The SDK PPA provides additional tools needed to install Ubuntu for devices.
- On your computer, press Ctrl+Alt+T to start a terminal.
Add the Ubuntu SDK Release PPA:
sudo add-apt-repository ppa:ubuntu-sdk-team/ppa
Update your system to use the latest packages:
sudo apt-get update
Install the ubuntu-device-flash package
sudo apt-get install ubuntu-device-flash
Install phablet-tools package
sudo apt-get install phablet-tools
List its tools with:
dpkg -L phablet-tools | grep bin
Installing ubuntu-device-flash also adds two important Android tools you frequently use: adb and fastboot.
- Install Ubuntu on device
Power the device off with the Power button.
Reboot into the bootloader by pressing the correct physical button combination for your device type as shown here: https://source.android.com/source/building-devices.html#booting-into-fastboot-mode
Install Ubuntu using your selected channel, in this case we use the devel channel:
Wait until the reboot is done. In most cases no input from you is required.
Upgrading Ubuntu Upgrading automatically
After installing Ubuntu, upgrades to newly released images and apps are automatically provided through Settings → Updates.

- 1,575
- 4
- 19
- 28
-
3but i dont want to install touch os. i need to install full desktop version – Prasanth Dec 31 '15 at 20:58
Hello and welcome on Ask Ubuntu!
If I want to answer your question, in short, I definitely say no, unfortunately, you will not be able to install Ubuntu on a generic ARM and Android-based tablet.
A bit longer explanation:
As you can see there are lots of architectures which Ubuntu can support through different "image builds", (Sorry at the moment no better term came to my mind) and also different pieces of hardware.
Device drivers built into the kernel are frequently well-supported, and we also have proprietary drivers available from the manufacturer.
Since neither Touch nor a full-featured desktop Ubuntu is supported by most of the manufacturers it is not possible to run.
To run the system you need specific drivers and proper firmware. As you can see there are ARM builds of Ubuntu (for example for Raspberry Pi *) but they are optimized for the specific hardware or supported out-of-the-box by the kernel or have proprietary support as I said before.

- 2,672

- 436