2022-01-16 18:20:39 +00:00
|
|
|
---
|
|
|
|
title: "kernel"
|
|
|
|
tags: [ "Documentation", "basics" ]
|
|
|
|
---
|
2020-01-02 00:04:35 +00:00
|
|
|
# Living Space
|
|
|
|
|
|
|
|
Kernel modules live in lib/modules/$(uname -r)
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
> sudo rmmod pcspeaker
|
|
|
|
|