Running large LLMs on small hardware: Gemma 4 12B on a VRAM-constrained Radeon laptop

Google released Gemma 4 12B today. I'm a huge fan of the Gemma model family, they have improved with each iteration and consistently perform on par with larger models. It didn't run at first because it needs more VRAM that my laptop has, but there's a workaround. Here's a short instruction for how to run … Continue reading Running large LLMs on small hardware: Gemma 4 12B on a VRAM-constrained Radeon laptop

Linux tar –blocking-factor

I wasn't aware of tar's --blocking-factor parameter: -b, --blocking-factor=BLOCKS Set record size to BLOCKSx512 bytes. This actually reduces CPU load and backup creation times measurably. Figures for backing up 7GB on my home NAS: Setting Seconds Setting Minutes.Secods------------------------------default 1.18 512 1.071024 1.052048 1.08 The fastest setting (1024) is 11% faster than the slowest (default).

Nautilus browsing large windows share is slow

Featured

When browsing large windows (samba) shares with Ubuntu Nautilus (that's the equivalent of the Windows File Explorer) I observed that shares which include many files and directories (a few hundred) take a few seconds to browse over WiFi, but almost instantly display over a fast LAN. A similar difference in speed is noticeable when searching … Continue reading Nautilus browsing large windows share is slow

First write operation to large ext4 file system is slow

I'm running a large (>20TB) ext4 file system and noticed that the first substantial write operation after mounting is very slow and involves plenty of drive activity. The reason seems to be some memory structure initialisation as described here: https://linux-ext4.vger.kernel.narkive.com/SUFNE520/ext4-slow-performance-on-first-write-after-mount The workaround is thankfully as simple as running this command in a script after mounting … Continue reading First write operation to large ext4 file system is slow