From 5609948dd8026d3f22c2ab7ae5fbf627f52f9134 Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Tue, 31 Dec 2024 13:49:16 +0100 Subject: [PATCH] adds draft page Fedora --- content/notes/fedora/index.md | 50 +++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 content/notes/fedora/index.md diff --git a/content/notes/fedora/index.md b/content/notes/fedora/index.md new file mode 100644 index 0000000..facc6b3 --- /dev/null +++ b/content/notes/fedora/index.md @@ -0,0 +1,50 @@ +--- +title: Fedora +date: 2024-12-31T13:21:50+0100 +lastmod: +tags: + - fedora + +#showDate: false +showReadingTime: false +showWordCount: false +showPagination: false +#showAuthor: false +showBreadcrumbs: true + +feed_exclude: true +# site_exclude: true +draft: true +--- + +## Fedora 41: broken audio on my X1 Carbon Gen7 + +Add this to `/etc/modprobe.d/alsa.conf`: + +```conf +options snd-intel-dspcfg dsp_driver=1 +``` + +and reboot. + +What devices? + +```console +$ lspci | grep -i audio +00:1f.3 Audio device: Intel Corporation Cannon Point-LP High Definition Audio Controller (rev 11) + +$ inxi -A +Audio: + Device-1: Intel Cannon Point-LP High Definition Audio driver: snd_hda_intel + API: ALSA v: k6.12.7-arch1-1 status: kernel-api + Server-1: PipeWire v: 1.2.7 status: active +``` + +## dnf: increase speed + +Add to the end of the config file (`/etc/dnf/dnf.conf`): + +```conf +max_parellel_downloads=10 +fastestmirror=true +```