There doesn't seem to be a chromium (or Google Chrome) port available in Ubuntu Touch (OTA10.1, bq M10). Does one exist, or are there any plans to have one (even without touch / small screen optimizations)?
3 Answers
The system browser in the phone/tablet images is based on the Chromium Content API, and so is roughly the same experience as one would have with Chromium.
If you wish to use Chromium as a legacy X11 app, you should be able to install it inside the legacy apps container with Libertine, in the same way that Firefox/Libreoffice are available.
Google does not provide generic ARM builds of Chrome, so the proprietary Chrome browser version will not be usable.

- 40,982
You can use the command line tools to install applications in a libertine container. First you create a container in the writable part of the file system. I used the instructions here
https://docs.google.com/document/d/1yJepibh68YaQijWO3Z3dWTtTTmzXnMmEE8eswhUXzw4/edit?pref=2&pli=1
The intsructions also tell you how to make a desktop file so it appears in the apps scope. I successfully installed emacs this way.
If you try to do this in the terminal app, you will run into problems due to lack of permissions. The easiest way around this is to start the ssh server with
sudo android-gadget-service enable ssh
Then run
ssh-keygen
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
eval $(ssh-agent)
ssh localhost
Now you can follow the instructions and set up your libertine container and install applications. This script automates the process (I haven't tried it):

- 256
- 2
- 5
-
Mind you, I just tried this and it's not working with chromium for me. Other apps are fine so something about chromium is not playing nice with libertine. – Paul Bryan Apr 30 '16 at 09:09
-
-
Have same experience, Firefox is okay but chromium segfaults for some reason. Do not know how to debug yet. FF is like 4x slower (2000 vs 8000 octane) than built-in browser. I expect chromium to be about the native speed which should make it usable for running anything chromebooks can. – grandrew Jun 30 '16 at 10:22
I am going to find a way to install Chromium on Ubuntu touch. The other methods mentioned here are not completely correct.
While it is true that Google does not provide arm64 builds for Chromium, valid working builds do exist. I have installed one that provides casting to my smart TV, on Manjaro linux. This was done on my Pinephone. Now however, I am running Ubuntu Touch on my Pinephone.
The state of Libertine containers is pretty messy today. It is a lot of hassle and does not work as advertised from the Settings --> System Screen. So to me Libertine is not the answer.
Any additional hints before I completely mess up my tablet? ;-)
– Jens Grivolla Apr 21 '16 at 11:16