+++ date = "2025-05-24T16:56:14+00:00" lastmod = "2025-05-24T16:56:14+00:00" tags = [ "linux", "gists" ] +++ How hard is it to run Linux? It depends on your luck and persistence. I received a junked Lenovo 11e Chromebook recently and it would always freeze at 99% during any distribution install (classic). Enabling a [kernel parameter](https://github.com/torvalds/linux/blob/379e4dc5b68a6642fc13b94543be33307ed09704/drivers/mmc/host/sdhci.h#L467) fixed it. How did I know this? Don't even ask. ``` { caption="Memory card controller has unusable command queue engine"} #define SDHCI_QUIRK_BROKEN_CQE (1<<17) (1<<17) = 0x20000 ``` ``` { caption="Magical kernel parameter entered in at boot"} sdhci.debug_quirks=0x20000 ```