Fedora Linux with MATE Desktop on Android

I know some of you geeks have already done something like that, running a GNU/Linux distribution on top of an Android device. It’s an interesting time, with projects like proot we don’t need root privilege on our Android devices to run a containerized Linux environment. Here in this post, I’ve written down the steps that I’ve taken to have a usable desktop environment up running on my Galaxy Tab S5e (this blog post has been written up purely within such environment).

Installation

First of all, you must have a device running Android 7.0+, which is a requirement of Termux. If you plan to use graphical environment, I highly recommend you having a big-screen device such as a tablet, or having a USB-C hub that connects to a monitor and other peripherals.

You need to first install Termux from FDroid. Don’t install it from Google Play. The version in Google Play store is outdated and will not receive any updates until the author has figured a way to target newer Android APIs. Once you’ve done that, open Termux and install proot-distro and use it to install Fedora 33 (check other distributions it supports by proot-distro list)

pkg install proot-distro
proot-distro install fedora-33

Now we can log into the proot environment and it is Fedora!

proot-distro login fedora-33
# the commands below are executed in fedora proot
dnf update
dnf install mate-session-manager mate-desktop mate-themes mate-terminal pluma caja marco glibc-langpack-en firefox

Now you’ve installed some packages for MATE desktop environment and should be ready to have a basic graphical desktop up running. Not so fast yet… Android doesn’t have an X11 server nor a wayland compositor. We then have two choices here:

  1. VNC/RDP remote desktop
  2. “Remote” X11

I’m going for the second option here. Mainly because all the VNC clients on Android I’ve tried so far don’t have perfect experience (albeit perfectly usable). To do that, install “XServer XSDL” from Google Play store on the same Android device. Launch it and configure the screen resolution if you need, then we can head back to Termux task and tell Fedora to start a MATE session with a “remote” X server.

export DISPLAY=localhost:0 PULSE_SERVER=tcp:localhost:4713
mate-session

Remember to acquire wakelock for Termux in the notification area, otherwise Android might kill Termux process to save battery. Now you can head to the XServer XSDL task again, wait for a couple of seconds and you should be greeted by a MATE session (as shown in the screenshot below).

Logging as a Non-root User

You might be struck down by a number of applications that refuse to run in privileged mode (by default, proot logins as root). To solve that and login as a non-root user, you need the good old friends useradd and usermod commands to create a new user in the proot environment:

useradd -m user1  # create a new user with login ID user1
groups root  # check what groups we might need to add
usermod -aG aid_inet user1  # add aid_inet group to user1

Now in the future when you want to login as this user, you can do:

proot-distro login fedora-33 --user user1

However it seems that some configuration files are not correctly sorted so you might not be able to use sudo to gain root privilege. The workaround would be to execute those commands in another Termux tab as root.

Locale and Timezone

The system is up running now but it’s been really configured as a bare minimal OS. You might find quite a few things out of the place. Here we’re going to correct the locale and the timezone.

The locale would’ve been configured to the fallback “C”. To make it worse, there is no language pack installed for glibc by default (in the Setup section, we installed English language pack ourselves). Once you’ve installed the language pack you need (and potentially the fonts required), you should be able to see a good candidate in the output of locale -a, pick one and set the LANG environment variable in .bashrc, for example, setting it to British English:

export LANG="en_GB.utf8"

Now let’s look at the timezone which is UTC by default, that’s fine on the CLI but might be confusing in a graphical desktop environment. To fix that, run tzselect and edit .bashrc file to add the environment variable for TZ:

export TZ="Europe/London"

For example, this sets the timezone to London, UK.

Conclusion

It’s not a one-click solution, but GNU/Linux desktop is never going to be used by people who require one-click solutions (not anytime soon).

On the compatibility, the proot solution is almost as good as a regular chroot on a privileged environment (regular Linux PC, or rooted Android). There are a few applications that might freeze, or crash outright, but you should be able to find replacements easily. For example, I couldn’t get Xfce running without major usability issues and that’s why I changed to use MATE.

On the performance side, the proot solution will be a bit slower than chroot. If your Android device has been rooted already, look at chroot solutions such as LinuxDeploy. Either way, you won’t get hardware acceleration on the graphics but chroot should be generally a bit faster as it is a “native” solution.

Author: librehat

自由軟體萬歲!

4 thoughts on “Fedora Linux with MATE Desktop on Android”

    1. 谢谢,把代码分解后已没那样的现象,但又有了新问题,即第二步登录到 proot 环境,运行那四段代码,无论一起运行,或分开运行,都报错,报错是“Error: utility ‘proot-distro’ should not be used as root.”
      另外,XServer XSDL打开就是横屏,能变成竖屏吗?

      还有个问题盼赐教,一直想在手机上装linux,但我的手机内存小,装不了Aid Learning,又没有root,就只好装了termux与anlinux,但其中有一步是在anlinux上选择系统,比如我选择了安装centos,再把那一大段代码复制进termux,再在termux运行./start-centos.sh,但输入这个代码后,termux出现-bash: ./start-centos.sh: No such file or directory,不知什么原因。

      1. 那个不是「代码」,而是在终端运行的命令,同样地需要拆开一行一行运行。#开始的那行是注释不要执行。
        XServer XSDL我不是特别了解。
        如果你创建了一个新的脚本,确定chmod +x 给了可执行权限

Comments are closed.