termux-ubuntu
termux-ubuntu copied to clipboard
This helps you install Ubuntu 20 + XFCE4 desktop on Termux with ease.
Install Ubuntu20 on Termux Android
This installs Ubuntu 20 with xfce4 desktop on Termux. All scripts are from Andronix, I just compose and edit them to make the installer easier and smoother. It includes:
- [x] Ubuntu 20
- [x] XFCE4 Desktop
- [x] TigerVNC Server
- [x] Non-root Account Creation
- [x] Audio Support
- [x] Chromium Browser
Installation
Copy and paste this command to Termux:
Ubuntu 20 With XFCE4
pkg install wget curl proot tar -y && wget https://raw.githubusercontent.com/tuanpham-dev/termux-ubuntu/master/ubuntu.sh && chmod +x ubuntu.sh && bash ubuntu.sh
Ubuntu 20 CLI Only
pkg install wget curl proot tar -y && wget https://raw.githubusercontent.com/tuanpham-dev/termux-ubuntu/master/ubuntu.sh && chmod +x ubuntu.sh && bash ubuntu.sh nde
Ubuntu 20 With LXDE
pkg install wget curl proot tar -y && wget https://raw.githubusercontent.com/tuanpham-dev/termux-ubuntu/master/ubuntu.sh && chmod +x ubuntu.sh && bash ubuntu.sh lxde
Run
Start Ubuntu
After installation, on Termux, you can execute this command to run ubuntu:
./start-ubuntu20.sh
Exit Ubuntu
To exit ubuntu you can simply run exit command. This will stop vncserver and some services.
exit
Start VNC Server
On Ubuntu, run this command to start VNC Server:
vncserver-start
Then you can use VNC Client to connect to 127.0.0.1:1 or 127.0.0.1:5901
Stop VNC Server
On Ubuntu, run this command to stop VNC Server:
vncserver-stop
VNC Client For Android
VNC Viewer (from RealVNC) is the best when you use your phone. Unfortunately, it does not does not support Samsung DEX.
AVNC is another good VNC client. In my opinion it is the best when you use your tablet or Samsung Dex.
Issues
Group Issue
If you get an issue message like this:
groups: cannot find name for group ID 20305
groups: cannot find name for group ID 50305
You can simply add group with this command:
sudo groupadd --gid 20305 permagrp5
sudo groupadd --gid 50305 permagrp6
Other
Install VS Code
-
VSCode ARM is now officially supported by Microsoft. You can download it here: https://code.visualstudio.com/download
-
If VSCode does not run, try install older version. E.g. https://update.code.visualstudio.com/1.50.1/linux-deb-arm64/stable
Install LibreOffice
On Ubuntu, run this command to install LibreOffice with patch
wget https://raw.githubusercontent.com/tuanpham-dev/termux-ubuntu/master/librepatch.sh && chmod +x librepatch.sh && bash librepatch.sh
Install FireFox
On Ubuntu, run this command to install FireFox
sudo apt install firefox
Follow this url to fix firefox crash https://github.com/termux/proot/issues/139#issuecomment-751988264
Install Theme & Icons
-
Prof-XFCE-theme is the best for me. You can download it here: https://www.gnome-look.org/p/1334420/
-
Vimix icon is nice. You can download it here: https://www.gnome-look.org/p/1273372/
-
After download *.tar.xz files you can extract them and copy to themes/icons folders:
mkdir -p ~/.local/share/icons ~/.local/share/themes
cd ~/Downloads
tar -xf "Prof--XFCE- 2.1.tar.gz"
mv "Prof--XFCE- 2.1" ~/.local/share/themes/
tar -xf Vimix.tar.xz
mv Vimix ~/.local/share/icons/
Intall Oh My Zsh
cp ~/.profile ~/.zprofile
sudo apt install git curl zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"