By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: Hands-on: We ran full desktop Linux apps on an Android phone!
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > Gadget > Hands-on: We ran full desktop Linux apps on an Android phone!
Gadget

Hands-on: We ran full desktop Linux apps on an Android phone!

News Room
Last updated: 2025/08/14 at 2:56 PM
News Room Published 14 August 2025
Share
SHARE

TL;DR

  • An upcoming Android update will significantly upgrade the Linux Terminal app, enabling it to run full-fledged graphical Linux programs on supported devices.
  • The feature is currently experimental, requiring a Pixel 6 or newer on a specific Android Canary build and manual steps to enable both the terminal and hardware acceleration for better performance.
  • This guide details how to install and run graphical apps like GIMP or LibreOffice using Flatpak, either by launching them manually or by setting up a complete desktop environment like XFCE.

The Linux Terminal app is set for some major upgrades in an upcoming Android release. If you’re unfamiliar, the Terminal app lets you run full-fledged Linux programs in a virtual machine, opening the door to running many powerful tools that aren’t natively available on Android. Initially, the Terminal app was limited to running command-line applications, but a recent Android update introduced support for graphical apps. Despite some lingering issues, we were surprised by how capable it already is. If you’re interested in trying this out, here’s how to get started.

First of all, you’ll need to have a Pixel 6 or later running the latest 2507 Android Canary release, as this is currently the only public build with support for running graphical Linux apps. While the second quarterly release of Android 16 (QPR2) might introduce this feature more broadly, we won’t know for sure until the public beta arrives.

Because this capability is not in the stable version of Android 16, other devices will have to wait. It’s possible some non-Pixel devices will receive it in the Android 16 QPR2 update, but it’s more likely to arrive as part of next year’s Android 17 release.

To see what’s possible, check out this video of several desktop Linux apps running on a Pixel:

If you have a compatible device and want to replicate this, here are the steps.

How to enable the Linux Terminal in Android

The Linux Terminal isn’t enabled by default in Android. To enable it, follow these steps:

  1. Open Settings
  2. Go to System
  3. Tap Developer options
  4. Tap Linux development environment
  5. Toggle (Experimental) Run Linux terminal on Android

Once you do these steps, a “Terminal” icon will be added to the app drawer. Before you open it, read the next section to enable hardware acceleration for better performance.

How to enable hardware acceleration in the Linux Terminal on Android

Enabling hardware acceleration is straightforward. You just need to create an empty file named virglrenderer inside the /sdcard/linux directory. This directory likely doesn’t exist yet on your device, so you’ll have to create it manually. If you already have ADB set up, you can do this by running these two commands:

Code

adb shell “mkdir /sdcard/linux”
adb shell “touch /sdcard/linux/virglrenderer”

The Terminal app checks for this file before enabling VirGL, a graphics virtualization technology that translates OpenGL commands from the guest virtual machine to the host. While it doesn’t offer the absolute best performance, Google is working on a more advanced solution for the future.

To confirm it’s working, launch the Terminal app. You should see a toast message at the bottom of the screen that says, “VirGL is enabled.” Once you see that, you’re ready to start installing and running graphical Linux apps.

How to run graphical desktop Linux apps on your Android phone

When you open the Terminal app for the first time, you’ll be prompted to download the necessary files to boot Debian. Tap “Install” and wait for the download to complete. Once you see the command-line console, you’re ready to proceed.

Linux Terminal app in July 2025 Android Canary build

Mishaal Rahman /

First, update your package lists and upgrade any existing packages with these commands:

Code

sudo apt-get update
sudo apt upgrade

Next, install Flatpak, a popular framework for distributing Linux applications, and add its main repository, Flathub:

Code

sudo apt install flatpak
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo

Now you can install graphical apps. For example, here’s how to install Chromium, GIMP, and LibreOffice:

Code

sudo flatpak install flathub org.chromium.Chromium
sudo flatpak install flathub org.gimp.GIMP
sudo flatpak install flathub org.libreoffice.LibreOffice

Note that not all Flatpak apps will work. For the best chance of success, look for applications compiled for ARM64 that support the Wayland display protocol.

Launching apps manually

To run these apps, you must first launch a basic graphical environment. This process is a bit involved and is best for quick tests:

  1. Tap the display icon in the top-right corner of the Terminal app. This forwards graphical output from the Linux VM to your Android screen.
  2. Connect a physical keyboard. The on-screen keyboard will not appear in this mode.
  3. Type weston and press Enter to start the graphical session.
  4. Once the environment loads, click the terminal icon in the top-left corner to open a Wayland Terminal window.
  5. In this new terminal, launch your app using its package name. For example, to run GIMP, type:

Code

flatpak run org.gimp.GIMP

Chromium requires a few extra flags to work correctly:

Code

flatpak run org.chromium.Chromium --no-sandbox --enable-features=UseOzonePlatform --ozone-platform=wayland

Launching apps via a desktop environment

Manually launching apps is cumbersome. For a more traditional desktop experience, I recommend installing XFCE:

Code

sudo apt install task-xfce-desktop

The installation will take some time, as it includes many packages. You will be prompted to select your keyboard layout during the process.

Once it’s finished, completely close the Terminal app to ensure the VM shuts down. Re-open it, tap the display icon in the top-right corner, and the XFCE desktop will load automatically. If prompted to log in, use the username root and leave the password blank. This default account can be secured later using standard Linux commands.

That’s it! Your installed Flatpak apps will now appear in the Applications menu in the top-left corner. While other apps should launch directly from the menu, remember that Chromium still requires the special launch flags mentioned in the previous section.

XFCE desktop on a Pixel device via Linux Terminal

Mishaal Rahman /

For a more convenient way to add new Flatpaks, you can install a tool like Warehouse. And if you notice sluggish performance, you can improve it by allocating more RAM to the VM by following these steps.

Thank you for being part of our community. Read our Comment Policy before posting.

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article Supreme Court allows enforcement of Mississippi social media age verification law
Next Article Terrifying moment Boeing 747 wing smashes into runway sending sparks flying
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

Top 10 Scope Management Tools for Teams in 2025 |
Computing
Hawley calls for congressional probe into Meta chatbots
News
A Web3 Game for Cricket: Why SCOR on Sweet’s Sixer Smash Has Fans and Players Talking | HackerNoon
Computing
US government is reportedly in discussions to take stake in Intel | News
News

You Might also Like

Gadget

AI Slop Is Ripping Off One of Summer’s Best Games. Copycats Are Proving Hard to Kill

6 Min Read
Gadget

Japan’s Bitcoin-XRP ETF and What It Means for the Moonshot MAGAX Presale

5 Min Read
Gadget

The First Federal Cybersecurity Disaster of Trump 2.0 Has Arrived

5 Min Read
Gadget

A DOGE AI Tool Called SweetREX Is Coming to Slash US Government Regulation

4 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?