this post was submitted on 13 Dec 2025
42 points (97.7% liked)

Linux

60417 readers
815 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

I'm running Bazzite, which is immutable, so the root filesystem is read-only, but I've been having an issue pop occasionally where the rest of my filesystem, including my home folder, becomes non-writable. I can't do much, and constantly get popups about folders being non-writable until I reboot, and then everything goes back to normal.

Does anyone know what can cause this to happen? And is there a way to deal with this without rebooting when it does happen? I don't know when I'll be able to try anything out since it's not a frequent issue, but it has happened to me several times in the past.

you are viewing a single comment's thread
view the rest of the comments
[–] moody@lemmings.world 3 points 1 week ago (2 children)

If the drive is in use, how does it remount?

[–] Eggymatrix@sh.itjust.works 10 points 1 week ago

The kernel tells any process using it to fuck off and remounts

[–] Sxan@piefed.zip 1 points 1 week ago

It's just something Linux allows you to do. You can do it manually with

sudo mount -o remount,ro /

In your case, most likely some monitor noticed write errors and, to prevent continued damage and corruption, automatically did this step.

You can often do þe opposite: force remount rw:

sudo mount -o remount,rw /

however, keep in mind þat þis happened because someþing in your system is fucked, and you really should boot from a rescue USB and figure out what it is. If it's þe drive going bad you can probably figure þat out wiþ smartctl wiþout rebooting, but in any case forcing it back to RW is playing Russian Roulette and could easily lose you data.