this post was submitted on 19 Jul 2026
34 points (97.2% liked)

Linux

66581 readers
98 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 7 years ago
MODERATORS
 

I bought an old HP chromebook cheap on ebay that came with Zorin OS installed. It isn't much, but just about manages to do what I need. The trouble is, Zorin seems kind of bloated and the Chromebook hasn't got much memory. I don't even have enough space to install updates.

I'm comfortable with running a pared-down OS that might be a better fit for a tired old Chromebook. What might work better than Zorin?

you are viewing a single comment's thread
view the rest of the comments
[–] MonkderVierte@lemmy.zip 2 points 4 days ago* (last edited 4 days ago) (1 children)

I've also had a chromebook with only 30 GB of slow eMMC once. Adjusting I/O caching helped noticeably:

# /etc/sysctl.d/20-flash-speed-settings.conf
# https://lonesysadmin.net/2013/12/22/better-linux-disk-caching-performance-vm-dirty_ratio/

# (vm.dirty_background_ratio = 10) percent of memory to use for caching
vm.dirty_background_ratio = 15
# (vm.dirty_ratio = 20) the max percent of memory to use for caching
vm.dirty_ratio = 30
# (vm.dirty_writeback_centicecs = 5) how often the buffer is checked for work to do
vm.dirty_writeback_centisecs = 1000
# (vm.dirty_expire_centisecs = 500) sets how long something can be in the buffer
vm.dirty_expire_centisecs = 6000

And you might also want to set mount options in /etc/fstab to noatime or relatime and add commit=60 or so (default is 6).

To note that dirty_expire_centisecs and commit trade speed for data safety; wait a while or run fsync -a before you shut off after you've wrote something important.

About lack of space:
keep the system on the eMMC and mount a thumbdrive as /home? (in /etc/fstab)
Just don't do much compiling on it (or move the compiling path to RAM); i've broke a SDcard-as-home with compiling Firefox on the Chromebook.

Edit: ZorinOS is immutable, relying on flatpaks (high I/O and btrfs deduplication), no? Kinda the worst choice for such a device.

[–] Crozekiel@lemmy.zip 2 points 4 days ago

Edit: ZorinOS is immutable, relying on flatpaks (high I/O and btrfs deduplication), no?

I've not seen anything about ZorinOS being immutable, it's basically just Ubuntu with some stuff on top. By default it uses ext4 and the software store has access to flatpaks, but also snaps and typical native linux software.