沒有無線網路連線出現!

沒有無線網路連線出現!

剛剛在另一台電腦上安裝了 Ubuntu,我從來沒有遇到過這個問題。在 Windows Vista(與 Ubuntu 一起的作業系統)上,網路運作良好。但是當我單擊右上角的圖示時,沒有顯示無線網路。我對 Ubuntu 了解不多,所以請在您的回覆中詳細說明並告訴我,就像我什麼都不知道一樣。非常感謝您的幫忙!

輸出ifconfig

eth0      Link encap:Ethernet  HWaddr 00:25:64:47:a6:62  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:18

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:461 errors:0 dropped:0 overruns:0 frame:0
          TX packets:461 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:35265 (35.2 KB)  TX bytes:35265 (35.2 KB)

我怎麼能讓它連接到我的 Wi-fi?

答案1

做:

sudo apt-get update
sudo apt-get install firmware-b43-installer

重啟

答案2

您缺少無線驅動程式。只需執行以下操作:使用電纜將筆記型電腦連接到互聯網,打開名為“軟體和更新”的應用程序,轉到“其他驅動程式”選項卡,然後選擇使用無線卡的專有驅動程式。

答案3

您的無線網路卡可能沒有 Ubuntu 上的本機支援。首先檢查Ubuntu是否可以透過執行指令lspci或lsusb來偵測您的網路卡,這取決於您的網路卡是否基於pci/usb。它應該顯示如下內容:

04:00.0 網路控制器:Qualcomm Atheros AR93xx 無線網路介面卡(版本 01)

現在打開下面的連結並檢查您的網路卡是否支援。

https://help.ubuntu.com/community/WifiDocs/WirelessCardsSupported

另外查看 ndiswrapper 也可能有幫助,因為它允許 Ubuntu 運行 Windows 無線驅動程式

https://help.ubuntu.com/community/WifiDocs/Driver/Ndiswrapper

答案4

轉到您的終端機並輸入此命令

$ gedit /etc/modprobe.d/blacklist.conf*

更新
在上面命令的開頭加上“sudo”:

$ sudo gedit /etc/modprobe.d ......

然後你想找到它說的地方:

#causes no end of confusion by creating unexpected network interfaces
blacklist eth[a number here]

並在該行之前添加一個主題標籤,如下所示:

#causes no end of confusion by creating unexpected network interfaces
#blacklist eth[a number here]

重新啟動你的筆記型電腦,你應該就好了

相關內容