minus-squarewheels@lemmy.worldtoLinux@lemmy.ml•20gb ram, 10gb zram, 10gb swap, default values. What should I change?linkfedilinkarrow-up1·edit-22 years agoThere’s some instructions here but basically: sudo apt install zram-config append to end of /etc/sysctl.conf: vm.swappiness = 180 # disable swap readahead (since using zram swap) vm.page-cluster = 0 Can check these have been applied with cat /proc/sys/vm/page-cluster or .../swappiness linkfedilink
minus-squarewheels@lemmy.worldtoLinux@lemmy.ml•Why do people still recommend Thinkpads for Linux when there are Linux-oriented manufacturers now?linkfedilinkarrow-up4arrow-down4·2 years agoI also live in Europe linkfedilink
minus-squarewheels@lemmy.worldtoLinux@lemmy.ml•Snapless UbuntulinkfedilinkEnglisharrow-up2arrow-down1·2 years agoTrue facts linkfedilink
minus-squarewheels@lemmy.worldtoLinux@lemmy.ml•Snapless Ubuntulinkfedilinkarrow-up2·2 years agoI’m basically doing the same, but those “pending update, close the app to avoid disruptions” popups are kind of disrupting. linkfedilink
There’s some instructions here but basically:
sudo apt install zram-config
append to end of
/etc/sysctl.conf
:vm.swappiness = 180 # disable swap readahead (since using zram swap) vm.page-cluster = 0