Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 7 additions & 34 deletions Documentation/proot/ubuntu_proot.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,18 +89,10 @@ adduser droidmaster
su - droidmaster
```

3. Install the desktop environment:
3. Disable snapd once before installing a desktop environment. It cannot be used inside Termux without a specialized setup.

* XFCE4

```
apt install xubuntu-desktop -y
```

* Remove snap it cannot be used inside termux without a specialized setup.

```
cat <<EOF | tee /etc/apt/preferences.d/nosnap.pref
cat <<EOF | sudo tee /etc/apt/preferences.d/nosnap.pref
# To prevent repository packages from triggering the installation of Snap,
# this file forbids snapd from being installed by APT.
# For more information: https://linuxmint-user-guide.readthedocs.io/en/latest/snap.html
Expand All @@ -110,24 +102,18 @@ Pin-Priority: -10
EOF
```

4. Install the desktop environment:

* KDE PLASMA
* XFCE4

```
apt install kubuntu-desktop -y
apt install xubuntu-desktop -y
```

* Remove snap it cannot be used inside termux without a specialized setup.
* KDE PLASMA

```
cat <<EOF | tee /etc/apt/preferences.d/nosnap.pref
# To prevent repository packages from triggering the installation of Snap,
# this file forbids snapd from being installed by APT.
# For more information: https://linuxmint-user-guide.readthedocs.io/en/latest/snap.html
Package: snapd
Pin: release a=*
Pin-Priority: -10
EOF
apt install kubuntu-desktop -y
```

* CINNAMON
Expand All @@ -136,19 +122,6 @@ EOF
apt install ubuntucinnamon-desktop
```

* Remove snap it cannot be used inside termux without a specialized setup.

```
cat <<EOF | tee /etc/apt/preferences.d/nosnap.pref
# To prevent repository packages from triggering the installation of Snap,
# this file forbids snapd from being installed by APT.
# For more information: https://linuxmint-user-guide.readthedocs.io/en/latest/snap.html
Package: snapd
Pin: release a=*
Pin-Priority: -10
EOF
```

## 🦊 Install Firefox
Note I used the official Mozilla [support page](https://support.mozilla.or/g/en-US/kb/install-firefox-linux#w_install-firefox-deb-package-for-debian-based-distributions-recommended) for the content below.

Expand Down