在 HP zv6000 上安裝 14.04,如果我執行:
sudo modprobe -r b43 ssb
sudo modprobe b43
然後無線工作完美,但我每次都必須從終端運行它。
我是 Ubuntu 的新手 - 我可以將這些命令添加到哪個檔案中,以便在電腦首次從電源關閉以及從睡眠模式開啟時啟動無線網路?
答案1
編輯你的/etc/模組文件。新增 b43 以下內容:
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
# Parameters can be specified after the module name.
b43
您可能需要將列入黑名單的 bcm43xx 註解掉/etc/modprobe.d/blacklist.conf文件。
答案2
請一次一行複製並貼上以確保準確性:
sudo su
echo b43 >> /etc/modules
exit
現在它應該會自動啟動。
答案3
請檢查您是否有被列入黑名單的文件b43:
ls /etc/modprobe.d
那裡有一個名為 blacklist-bcm43.conf 的檔案嗎?如果是,則該文件列入黑名單b43並阻止它按預期在啟動時加載。請刪除它:
sudo rm /etc/modprobe.d/blacklist-bcm43.conf
現在b43應該在啟動時正確加載。