Malin Freeborn
ba8026e0c3
input examples are now given as ```bash input $ARG1 ``` While outputs use md's '> ' sign as a quote.
35 lines
496 B
Markdown
35 lines
496 B
Markdown
---
|
|
title: "kernel"
|
|
tags: [ "Documentation", "Basics" ]
|
|
---
|
|
## Living Space
|
|
|
|
Kernel modules live in lib/modules/$(uname -r)
|
|
|
|
## Change
|
|
|
|
Load them with
|
|
|
|
```bash
|
|
sudo modprobe ath9k
|
|
```
|
|
|
|
Or remove one with
|
|
|
|
```bash
|
|
sudo modprove uvcvideo
|
|
```
|
|
|
|
The PC's irritating speaker beep can be really annoying. Disable it with:
|
|
|
|
```bash
|
|
sudo modprobe -r pcspeaker
|
|
```
|
|
|
|
Permanently disable a module by blacklisting it in `/etc/modprobe.d`:
|
|
|
|
```bash
|
|
echo 'blacklist pcspkr' > /etc/modprobe.d/*nobeep*.conf
|
|
```
|
|
|