lk/basics/kernel.md

27 lines
456 B
Markdown
Raw Normal View History

2022-01-16 18:20:39 +00:00
---
title: "kernel"
2022-01-26 21:29:48 +00:00
tags: [ "Documentation", "Basics" ]
2022-01-16 18:20:39 +00:00
---
2022-01-26 21:29:48 +00:00
## Living Space
2020-01-02 00:04:35 +00:00
Kernel modules live in lib/modules/$(uname -r)
2022-01-26 21:29:48 +00:00
## Change
2020-01-02 00:04:35 +00:00
Load them with
> sudo modprobe ath9k
Or remove one with
> sudo modprove uvcvideo
2021-05-15 14:41:45 +00:00
The PC's irritating speaker beep can be really annoying. Disable it with:
2022-01-26 21:29:48 +00:00
> sudo modprobe -r pcspeaker
Permanently disable a module by blacklisting it in `/etc/modprobe.d`:
> echo 'blacklist pcspkr' > /etc/modprobe.d/*nobeep*.conf
2021-05-15 14:41:45 +00:00