2007年7月6日

Ubuntu音效問題

在網路上看到不少人提到Ubuntu音效有問題,有人提出解決的方式
以下方法適用於 ALC861 and Intel HDA sound drivers,
我的Toshiba a100升級7.04也出現過類似問題,解決方法如下:

試試看
開啟附屬應用程式的終端機
輸入:
cd /etc/init.d

建立一個新文字檔:
sudo gedit soundstartfix

文字檔裡面的內容請輸入:
#!/bin/bash
kill $(lsof -t /dev/dsp* /dev/audio* /dev/mixer* /dev/snd/*)
sudo modprobe -r snd-hda-intel && sudo modprobe snd-hda-intel model=auto

存檔,然後離開文字編輯器。

接下來請在終端機輸入:
sudo update-rc.d soundstartfix defaults

(等候一下...等它完成)
輸入:
sudo chmod +x soundstartfix

重開機,應該可以work的很正常了:)

主要事先把Ubuntu預設的砍掉,然後在從新偵測一次,期中lsof真的是蠻有用的一個程式,跟netstat有得拼

1 則留言:

匿名 提到...

I fixed my issue because of your post.

thanks a lot ^^