Script che fa funzionare la tanto odiata scheda audio Realtek alc880 montata su molti portatili asus.
L'unica accortezza è impostare alsamixer premendo "m",cosi da attivare tutti quanti i mixer e far suonare correttamente l'audio,anche dai jack delle cuffie.
<pre>echo "Patch per Scheda audio Realtek ALC880"<br />echo "Autore: Mordecai"<br />echo<br />if [ "$(whoami)" != "root" ]; then<br /> echo "Devi essere root per eseguire questo script!"<br /> echo ""<br /> exit<br />fi<br />lspci > lspci.txt<br />if grep -q "Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 04)" lspci.txt<br />then echo "La tua scheda è una Realtek alc880"<br />##Inizio patch<br />cd /etc/modprobe.d/<br />touch sound<br />echo "alias snd-card-0 snd-hda-intel" >> sound<br />echo "alias sound-slot-0 snd-hda-intel" >> sound<br />echo "options snd-hda-intel model=z71v" >> sound<br />echo "Adesso imposta Alsamixer"<br />/usr/bin/alsamixer<br />##Fine patch<br />echo "Fine script"<br /><br />else echo "La tua scheda NON è una Realtek alc880"<br />fi</pre>