Closed freshLiver closed 6 months ago
The original README also contains some markdown lint problems, should I fix these in this PR, or separate into another PR?
$ docker run --rm -v `pwd`:/data markdownlint/markdownlint README.md
Unable to find image 'markdownlint/markdownlint:latest' locally
latest: Pulling from markdownlint/markdownlint
213ec9aee27d: Pull complete
5bedfe54446b: Pull complete
Digest: sha256:25c930bb03b1ea50a2e6e377e4ab6f1fe89a760f85e56d189cc007caa4301b0b
Status: Downloaded newer image for markdownlint/markdownlint:latest
README.md:90: MD014 Dollar signs used before commands without showing output
README.md:97: MD014 Dollar signs used before commands without showing output
README.md:8: MD022 Headers should be surrounded by blank lines
README.md:22: MD022 Headers should be surrounded by blank lines
README.md:101: MD022 Headers should be surrounded by blank lines
README.md:105: MD022 Headers should be surrounded by blank lines
README.md:13: MD031 Fenced code blocks should be surrounded by blank lines
README.md:18: MD031 Fenced code blocks should be surrounded by blank lines
README.md:26: MD031 Fenced code blocks should be surrounded by blank lines
README.md:32: MD031 Fenced code blocks should be surrounded by blank lines
README.md:37: MD031 Fenced code blocks should be surrounded by blank lines
README.md:43: MD031 Fenced code blocks should be surrounded by blank lines
README.md:48: MD031 Fenced code blocks should be surrounded by blank lines
README.md:62: MD031 Fenced code blocks should be surrounded by blank lines
README.md:71: MD031 Fenced code blocks should be surrounded by blank lines
README.md:78: MD031 Fenced code blocks should be surrounded by blank lines
README.md:106: MD032 Lists should be surrounded by blank lines
The original README also contains some markdown lint problems, should I fix these in this PR, or separate into another PR?
You can fix that here.
You can fix that here.
There is a rule about the leading dollar sign in the code blocks, do I need to ignore this rule?
For example, the dollar sign in:
$ sudo apt install linux-headers-$(uname -r)
will disappear after being formatted:
sudo apt install linux-headers-$(uname -r)
There is a rule about the leading dollar sign in the code blocks, do I need to ignore this rule?
Only C source files require adherence to a consistent style. For other files, proceed as you wish.
Thank @freshLiver for contributing!
This PR adds a simple guide to solve the
rmmod
problem in PipeWire-enabled system.Similar to the problem in PulseAudio-enabled system, for systems using pipewire, we might also not able to remove the vsnd module from kernel directly.
To address this problem, we can stop the pipewire service before using the
rmmod
command:And we should restart the pipewire service after
rmmod
: