Merge branch 'dev' into vhs

This commit is contained in:
2025-02-14 13:06:12 +01:00
27 changed files with 397 additions and 175 deletions

View File

@@ -1,5 +1,5 @@
---
title: "Makefiles"
title: "make help target"
tags: [ "system", "make", "help" ]
---

View File

@@ -1,8 +1,36 @@
---
title: "kernel"
title: "kernel modules"
tags: [ "system" ]
---
Kernel modules live in lib/modules/$(uname -r)
## Change
Load them with
```sh
modprobe ath9k
```
Or remove one with
```sh
modprove uvcvideo
```
The PC's irritating speaker beep can be really annoying. Disable it with:
```sh
modprobe -r pcspeaker
```
Permanently disable a module by blacklisting it in `/etc/modprobe.d`:
```sh
echo 'blacklist pcspkr' > /etc/modprobe.d/*nobeep*.conf
```
Check which kernel modules are loaded into memory:
```sh