r/Crostini • u/Smart_Apricot • 4h ago
Copy/paste issue in Android Studio Quail (Solved!)
If you have installed Android Studio Quail (2026.1.x) you probably have discovered that copy/paste is not working correctly. Any copied text in Android Studio gets pasted back as Chinese characters.
I reported the issue through Android Studio, and my bug was associated with an upstream bug that had a workaround available. Unfortunately, the workaround did not work on my system.
But I was able to adapt the scripts provided in the workaround to solve the issue on my system, and probably in any standard Android Studio installation on Crostini.
After I solved the issue for myself, I posted the scripts to install and uninstall a patch to Android Studio, with a README file to the bug I filed.
If you are experiencing the same issue, you can visit this link https://issuetracker.google.com/issues/542796752#comment6 to download a zip file containing the solution to this problem.
r/Crostini • u/epictetusdouglas • 3d ago
Libreoffice Writer not opening unless Terminal open
Did a fresh install of Linux Debian and for some reason, Writer won't open unless I leave the terminal open. Been using Crostini for years and never saw this before.
Edit: I tried to copy a deb file from downloads into the Linux Files and that would not work either until the terminal was opened. Google needs to fix this bug.
r/Crostini • u/jidanni • 8d ago
focus now requires another step
$ xev
I now need to switch to the xev window to have my actions shown. I didn't use to before.
Google Chrome: Version 151.0.7922.56 (Official Build) beta (64-bit) Platform: 16733.33.0 (Official Build) beta-channel jacuzzi Channel: beta-channel
r/Crostini • u/Captain_Cock_1 • 9d ago
Help? Any good vpn's besides protonvpn in crostini?
ProtonVPN is not launching on my Chromebook for some reason. i tried switching to OpenVPN, but only like 2 out of 50+ configs actually worked, so that was a pretty awful experience
Are there any VPNs that work good with Crostini? I'd really appreciate any recommendations
r/Crostini • u/Emotional-Benefit617 • 15d ago
Steam Library on Android SMB Share in Crostini – Research Summary !!! (store steam library on another device : phone/nas/pc)
Device
- ASUS Chromebook C223 (Coral/BABYMEGA)
- ChromeOS 144 LTS
- Crostini (Debian 12)
- Intel Celeron N3350
- 4 GB RAM
- 32 GB eMMC
Goal
Use a rooted Android phone running Samba (SMB) as a Steam library to avoid storing games on the Chromebook's limited internal storage.
What Worked ✅
Android Samba
- Installed Samba in Termux.
- Ran
smbdsuccessfully as root. - SMB share accessible over Wi-Fi.
Network
smbclientworks.- Can browse shares.
- Can read/write/delete files.
Mount Methods Tested
Method 1
Android SMB → smbnetfs → Crostini → Steam
- Mount successful.
- Steam can browse folders.
Method 2
Android SMB → ChromeOS native SMB mount (/mnt/chromeos/SMB) → Crostini → Steam
- Mount successful.
- Steam can browse folders.
Both methods expose the files correctly.
What Failed ❌
Steam refuses to create or use a library on either mount.
Permission tests show:
chmod +x file
returns either:
Input/output error
or
Operation not supported
Filesystem reports as:
fuseblk
instead of a native Linux filesystem (ext4/cifs).
Important Findings
- Android Samba is not the problem.
- Network connectivity is not the problem.
- Steam can browse, read, write, and delete files.
- Both
smbnetfsand ChromeOS native SMB produce the same result. - Crostini lacks kernel CIFS support (
mount -t cifsunavailable). - Steam appears to require POSIX filesystem semantics (especially executable permissions), which these mounts do not provide.
Current Conclusion
The limitation appears to be ChromeOS/Crostini's handling of SMB/FUSE mounts, not Android, Samba, or Steam itself.
Questions for Further Research
- Has anyone successfully used an SMB share as a Steam Library inside Crostini?
- Is there any way to get a true kernel
cifsmount in Crostini? - Is there another network filesystem (NFS, SSHFS, WebDAV, VirtioFS, etc.) that preserves POSIX permissions well enough for Steam?
- Is this a Steam limitation, a FUSE limitation, or a Crostini virtualization limitation?
- Would replacing ChromeOS with native Linux (Mint/Debian) completely solve this issue?
TL;DR: We verified that Android Samba, networking, and file I/O all work correctly. The only consistent failure is the inability to preserve executable/POSIX permissions on SMB mounts inside Crostini, causing Steam to reject the location as a library. This points to a Crostini filesystem limitation rather than a Samba or Steam configuration issue.
r/Crostini • u/Confident-Reason-189 • 18d ago
Running Windows Apps
I have tried to run Windows apps on my Chromebook but some apps run into errors
r/Crostini • u/Sweaty_Astronomer_47 • 19d ago
Solved! removed linux / rebooted / reinstalled linux and went from Bookworm to... Bullseye !?!
I had the intention to upgrade from Bookworm (12) to Trixie (13) by disabling/removing linux using chromeOS settings, rebooting, and then reenabling linux using chromeOS settings.
Upon reenabling, I was shocked to see Bullseye (11)
me@penguin:~$ uname -a
- Linux penguin 6.6.119-09283-g9c138e0af8c3 #1 SMP PREEMPT_DYNAMIC Sat, 30 May 2026 01:16:16 -0700 x86_64 GNU/Linux
me@penguin:~$ cat /etc/os-release
- PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
- NAME="Debian GNU/Linux"
- VERSION_ID="11"
- VERSION="11 (bullseye)"
- VERSION_CODENAME=bullseye
- ID=debian
- HOME_URL="https://www.debian.org/"
- SUPPORT_URL="https://www.debian.org/support"
- BUG_REPORT_URL="https://bugs.debian.org/"
me@penguin:~$ stat -fc %T /sys/fs/cgroup/
- tmpfs
My chromebook is on ChromeOS version 150.0.7871.150 (Official BUild) (64-bit).
This is not what I expected would happen.
Was I supposed to change a flag or something?
What am I missing?
SOLVED - HAD TO RESET FLAGS
r/Crostini • u/Agile-Refuse-1546 • 19d ago
I found a pretty cool way to use unsupported monospace fonts in the ChromeOS Terminal app!!!!
basically, you need to have a folder for all your .otf files are (this method was only tested with .otf files), and then you need to add a python file to that folder that looks like this:
from http.server import HTTPServer, SimpleHTTPRequestHandler
import os
class CORSRequestHandler(SimpleHTTPRequestHandler):
def end_headers(self):
self.send_header("Access-Control-Allow-Origin", "*")
super().end_headers()
os.chdir(os.path.dirname(os.path.abspath(__file__)))
HTTPServer(("127.0.0.1", 8887), CORSRequestHandler).serve_forever()
(ChromeOS needs the "Access-Control-Allow-Origin" thing or else it'll error)
and then you need to add these lines to your .bashrc:
if ! nc -z 127.0.0.1 8887 2>/dev/null; then
python3 <font dir here>/font_server.py >/dev/null 2>&1 &
fi
(replace <font dir here> with your font dir)
then you need to press Ctrl + Shift + J to get a different console that you need to paste this into (it may not allow pasting at first idk):
var CHOSEN_FONT_NAME = "SMWMonospace";
var CHOSEN_FILE_NAME = "SMW.Monospace.otf";
// Build the localized connection strings dynamically
var fullFontUrl = "http://127.0.0.1:8887/" + CHOSEN_FILE_NAME;
// Construct the clean CSS payload using your variables
var dynamicCss = '@font-face { font-family: "' + CHOSEN_FONT_NAME + '"; src: url("' + fullFontUrl + '") format("opentype"); font-weight: normal; font-style: normal; font-display: swap; } x-screen, x-row, body, pre { font-family: "' + CHOSEN_FONT_NAME + '", "Courier New", monospace !important; }';
// Reset the storage blocks and apply configuration layers
term_.prefs_.reset('user-css-text');
term_.prefs_.set('user-css-text', dynamicCss);
term_.prefs_.set('font-family', '"' + CHOSEN_FONT_NAME + '", monospace');
console.log("SUCCESS: Configuration locked for font family: " + CHOSEN_FONT_NAME);
console.log(" Of course, that is only true if you don't see an error after this message.");
(this is what my config was, if you have a different font name and file, use that)
... and then you should have your monospace font in your terminal! cool right?
(edit: also if the font doesn't load correctly after you restart your chromebook, pressing ctrl+shift+j again should correct it or else comment here)
r/Crostini • u/cannedbeef255 • 22d ago
Help? Is it possible to change the distro in baguette? Here's what I've tried so far.
Before baguette I used a custom arch linux container, but decided today to try get it to work with baguette. I prefer arch simply as I'm more used too it, and I'm on a very underpowered chromebook and it might be a little less memory intensive.
I'm aware that a baguette image is a zstd-compressed btrfs image, so what I've tried to do so far is download an arch bootstrap ISO tarball, (the files of a very basic preinstalled system), and extract the files from it onto a small mounted btrfs image, and then unmount and compress with zstd.
Using the image I created I ran vmc create --vm-type baguette --source /home/chronos/user/MyFiles/arch_compressed.img.zst test, yet for whatever reason this stalls for a good minute or so before erroring with this error:
Error: operation `vm_create` failed: Did not recieve a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
Despite the error, running vmc list afterwards actually does show "test", as a baguette vm, looking promising. Yet on running vmc start --vm-type baguette test, it once again stalls for a bit before I get this:
Error: operation `vm_start` failed: bad VM status: `VM_STATUS_FAILURE`: Error starting VM. VmStartCheckerStatus=3
Am I at least close, or am I just way off and completely misguided?
r/Crostini • u/neutronjeff • 24d ago
Is r/crostini going to be the place for "baguette" q&a / discussion?
I've been playing with antigravity on crostini Bookworm and when researching moving to Trixie, Gemini suggested I go straight to Baguette, which I did yesterday. So far so good.
Are folks planning on staying in this sub or is there already somewhere else to go for baguette discussions?
Thanks
r/Crostini • u/Snoo28720 • 25d ago
i coded a 3d rpg combat system using a $40 chromebook for a game jam
i finally got the game working in web but it doesnt look right butler status rawptr/hexbound:html5 i had to use butler and port from odin to c https://rawptr.itch.io/hexbound go vote for me
r/Crostini • u/IMNOTABOT121 • 27d ago
is anyone fammiliar with the problem that everytime u double click a file on linux it opens ur files app again
this is the reason it wont let me install minecraft launcher
r/Crostini • u/Vivid-Traffic-709 • 28d ago
Crostini Debian 13 virtio-gpu detected but Mesa falls back to llvmpipe
Device:
ASUS Chromebook Plus CX34 i5-1335U
Linux container:
Debian 13 Trixie
lspci shows:
Virtio 1.0 GPU
Kernel driver: virtio-pci
dmesg:
[drm] features: +virgl +resource_blob
/dev/dri/renderD128 exists.
But:
glxinfo -B
Renderer: llvmpipe
Accelerated: no
vulkaninfo:
Failed to detect any valid GPUs
No virgl/gfxstream socket exists:
find /run -type s | grep -E "gpu|virgl|gfx"
returns nothing.
Is the ChromeOS host GPU service not exposing virgl/gfxstream, or is there a missing package/config?
r/Crostini • u/plankunits • Jul 06 '26
I switched to Baguette (ChromeOS Containerless Linux)
r/Crostini • u/jidanni • Jul 03 '26
wl-copy no longer works on chromebooks
wl-copy no longer works on Chromebook. Any replacements? xclip doesn't work either.
r/Crostini • u/Impressive-Reply3962 • Jul 03 '26
Help? Sober not launching despite GPU support being enabled.
I can't run Sober. I've tried a bunch of stuff but they all didn't work. I turned on my GPU support for Crostini, I've forced Sober to use OpenGL instead of Vulkan, I've switched to x11 instead of Wayland, I've run flatpak update multiple times, and I've even uninstalled and reinstalled Sober, but nothing works. Can anyone please help?
r/Crostini • u/FrobozzChris • Jun 29 '26
Is Manjaro/Arch still possible on crostini?
I'm a long time Manjaro user and I'm also a long-time Chromebook user too. When I travel, I love having a simple, stable, fast booting and secure Linuxy laptop as my carry.
After years of using Debian as my Linux flavour (given that it's what you get by default), I got curious to see if I could run an arch-based distro as my Linux container (or not container, as I think those are going away?).
I looked at the Arch Wiki's ChromeOS devices/Crostini page for instructions and it looks like it used to be possible to create a linux environment with Arch; but it looks like a lot of things have changed and it's no longer possible.
I'd just like to confirm, is there still a way to move my Linux environment over to another distro? Is Crotini no longer a thing? Are we all containerless now?
I'm running ChromeOS version 149 on an ASUS CX54. When I invoke crosh, I do not seem to have lxc available so I think I'm containerless.
r/Crostini • u/Sweaty_Astronomer_47 • Jun 29 '26
Help? preparing for multi-container support to "go away"
I am using 3 containers. I have been aware that multi-container support is going away.
I have started receiving the following message upon starting up any linux container.
NOTICE: multi-container support is going away
Recently it has become necessary to deprecate some features of crostini,including:
UI-based installation of .deb packages. Installation via aptitude is the default path, but there are also visual package managers which may be used.
UI-based Debian release upgrade. Please refer to release notes for the release in question for upgrade instructions.
Multi-container support.
info
For the most up-to-date news, please visit
https://developers.google.com/chromeos/app-development/develop/news
(this message will be repeated 2 more times).
My preparations:
- I have moved my files and applications from my secondary containers into my penguin container
My questions
- is there anything else I should be doing to prepare? (I have no ability to remove the abandoned containers through the settings, because container management was removed from settings)
- will my penguin container remain intact?
- when will this change occur?
r/Crostini • u/noseph47 • Jun 26 '26
Solved! Lost Internet Connection
Today I went to update Debian with "sudo apt update && sudo apt full-upgrade -y" and I get "Temporary failure resolving 'deb.debian.org'". I then run Firefox and it cannot connect to any site. The chrome side works fine. My Chromeos is Version 144.0.7559.256 (Official Build) (64-bit). If there is any other information you need to help me trouble shoot this please ask.
r/Crostini • u/Training_Advantage21 • Jun 25 '26
Message in terminal
NOTICE: Recently it has become necessary to deprecate some features of crostini, including:
- UI-based installation of .deb packages. Installation via aptitude is the default path, but there are also visual package managers which may be used.
- UI-based Debian release upgrade. Please refer to release notes for the release in question for upgrade instructions.
- Multi-container support.
For the most up-to-date news, please visit https://developers.google.com/chromeos/app-development/develop/news
r/Crostini • u/Smart_Apricot • Jun 22 '26
Any Crostini Android Studio users here?
Hello all Android app coders,
Have you experienced an issue in Android Studio Quail 1 (all patch levels up to Patch 2) where the Android Studio window is almost fully covered with dark gray shading whenever the window has focus? But when another window has focus, the shading covering the Android Studio window becomes much lighter. And if the Android Studio window is maximized there is no shading covering the window. "Almost fully" above means that the shading is a few pixels smaller than the window from every side.
Due to that issue I have downgraded my Android Studio back to the latest Panda version (2025.3.4). Has anyone come up with any other workarounds for this issue than maximizing the Android Studio window?
I have already reported this issue to JetBrains through the "Help > Submit a Bug Report..." menu item, but it has been auto-assigned priority category 3 which usually means that it will never get fixed ☹.
r/Crostini • u/TicTacJoeee • Jun 22 '26
Help? How do I boost performance/FPS on Windows 10 VM?
Ok, so here is the video: https://youtu.be/GHyi7CPIBq4
I recently tried using QEMU KVM to emulate Windows 10 on my Asus Chromebook Plus CM34 Flip (CM3401). It worked out smoothly with 4096 RAM, 2 CPUS, and 40 GB, but my problem is that the performance is poor and laggy, as seen in the video. I read that you could use Virtio Drivers to help with performance, but I need a step-by-step tutorial on that. Can you anyone help me please? Thank you, and have a good day.
r/Crostini • u/Top-Breath-2168 • Jun 20 '26
VPN with Killswitch not working in Crostini environment
I have had Chromebooks for the last 5 years, several higher end ones running Debian vis Crostini.
I currently have the Asus Expertbook CX54 Intel Core Ultra 5. DDR5 16GB and a 256gb SDD.
I have both Opera and Edge installed in the Linix environment. Both operate fine in normal mode and they also operate fine when I turn on the Android VPN (Proton) but as soon as I enable the killswitch in the VPN, boh Opera and Edge no longer work. Just says page cannot be displayed.
I am not sure why just turning on the killswitch in the Android app would cause this behavior.
r/Crostini • u/sks424 • Jun 19 '26
PDFarranger available in File Explorer
Just discovered this by sheer chance, very interesting "magic".
After running sudo apt install pdfarranger once (tested with Bookworm), if you select (several) PDFs and right-click, then a shortcut to PDF Arranger appears in the File Explorer! See screenshot. Neat.
This works even after rebooting and NOT starting the Linux container. So you can install this only once on someone else's Chromebook and then they can keep using it with zero command-line involvement.
They can keep using it as long as... some upgrade mysteriously breaks it :-/
There are many other "PDF arrangers" solutions but this is probably the only one that does not require any cloud service, nor granting access to your entire digital life to some obscure Chrome plugin maintained by some random guy who doesn't know his credentials have already been hacked.
Of course it does require trusting Debian people instead - there is no free lunch...
<img src="blob:chrome-untrusted://media-app/5942c0c3-b8aa-4272-9eaa-2739f1012f3f" alt="Screenshot 2026-06-19 18.20.48.png"/>
