From a2a074ff48a31951b60bc7b6418a25600c0bb460 Mon Sep 17 00:00:00 2001 From: Hyperagon <23475800+hyperagon@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:44:19 +0000 Subject: [PATCH] Update 2024-11-29.md --- content/posts/2024-11-29.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/content/posts/2024-11-29.md b/content/posts/2024-11-29.md index 2b41fd4..b7416e4 100644 --- a/content/posts/2024-11-29.md +++ b/content/posts/2024-11-29.md @@ -21,14 +21,23 @@ Replace `deb https://deb.parrot.sh/parrot parrot main contrib non-free` with `de Apparently *lory* is the name for the long term support and there is some confusion on the configuration. -## Update! +## Upgrade! ``` sudo apt-get update sudo apt-get upgrade ``` +## Fix audio + +### sudo nano /etc/default/grub + +Replace `GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"` with `GRUB_CMDLINE_LINUX_DEFAULT="quiet splash snd_hda_intel.dmic_detect=0"` + +Then run `sudo update-grub` and restart. + ## Resources: - [Documentation on Package Manager](https://www.parrotsec.org/docs/configuration/parrot-software-management/#package-manager) - [Sudo apt-get issues on Parrot](https://usercomp.com/news/1404006/parrot-os-5-2-sudo-apt-get-update-issue) - [The Repository](https://deb.parrot.sh/parrot/dists/lory/) +- [Audio tip](https://unix.stackexchange.com/questions/619971/how-to-fix-no-audio-on-parrot-sec-4-10)