minus-squareOrdoviz@lemmy.mltoLinux@lemmy.ml•Use CachyOS-style ZRAM on Ubuntu?linkfedilinkarrow-up8·1 month agoUse systemd-zram-generator. The process is explain in the DebianWiki and the ArchWiki and this random blog, but it boils down to just a few commands you need to run: $ apt install systemd-zram-generator $ sudoedit /etc/systemd/zram-generator.conf [zram0] zram-size = min(ram, 8192) compression-algorithm = zstd $ sudo systemctl daemon-reload && sudo systemctl start systemd-zram-setup@zram0.service You can tweak the settings above. Fedora recommends using zram-size = min(ram, 8192), which would correspond to 8GB ZRAM in your case. CachyOS uses a less conservative config with zram-size = ram. To confirm that zram is working, run zramctl. It should print something like NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram0 zstd 8G 430.8M 137.6M 142.9M [SWAP] See also Improving system responsiveness under low-memory conditions. linkfedilink
minus-squareOrdoviz@lemmy.mltoArch Linux@lemmy.ml•Is there a systematic way to find out which fonts I'm missing?linkfedilinkarrow-up3·3 months agoSee https://wiki.archlinux.org/title/Fonts#Non-latin_scripts linkfedilink
Ordoviz@lemmy.ml to Undertale and Deltarune@lemmy.world · 10 months agoOur Theme (Lyrics) - Undertale 10th Anniversaryplus-squarewww.youtube.comexternal-linkmessage-square0linkfedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkOur Theme (Lyrics) - Undertale 10th Anniversaryplus-squarewww.youtube.comOrdoviz@lemmy.ml to Undertale and Deltarune@lemmy.world · 10 months agomessage-square0linkfedilink
Use systemd-zram-generator. The process is explain in the DebianWiki and the ArchWiki and this random blog, but it boils down to just a few commands you need to run:
You can tweak the settings above. Fedora recommends using
zram-size = min(ram, 8192), which would correspond to 8GB ZRAM in your case. CachyOS uses a less conservative config withzram-size = ram.To confirm that zram is working, run
zramctl. It should print something likeSee also Improving system responsiveness under low-memory conditions.