web-dev-qa-db-ja.com

Dell 1390 WLANミニカードを機能させる方法

Dellワイヤレス1390 wlanミニカードドライバーを搭載したDellラップトップを使用しています。Win7と並行してUbuntuをインストールすると、ワイヤレスドライバーが欠落していると思われます。その後、ubuntuに完全に再インストールし、ubuntuサーバー/リポジトリからすべてのドライバーを取得できると仮定して、ラップトップをインターネットケーブルに接続しました。

問題は、ネットワークタブにワイヤレス接続オプションが表示されないことです。システム設定->追加ドライバーを選択すると、Broadcom STA独自のワイヤレスドライバーを使用していることがわかります。しかし、まだワイヤレス接続が表示されません。

チュートリアルを探しましたが、ほとんどが古すぎます。

誰かがステップバイステップガイドまたはこの問題を修正する方法についてのガイダンスを提供してくれますか、それを修正する方法が示されている場所へのリンクを教えてください。

必要な情報

roberts@roberts-Latitude-D630:~$ Sudo lshw -class network
[Sudo] password for roberts: 
  *-network UNCLAIMED     
       description: Network controller
       product: BCM4311 802.11b/g WLAN
       vendor: Broadcom Corporation
       physical id: 0
       bus info: pci@0000:0c:00.0
       version: 01
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list
       configuration: latency=0
       resources: memory:fe8fc000-fe8fffff
  *-network
       description: Ethernet interface
       product: NetXtreme BCM5755M Gigabit Ethernet PCI Express
       vendor: Broadcom Corporation
       physical id: 0
       bus info: pci@0000:09:00.0
       logical name: eth0
       version: 02
       serial: 00:1c:23:29:51:ed
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm vpd msi pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=tg3 driverversion=3.119 duplex=full firmware=5755m-v3.29 ip=192.168.0.6 latency=0 link=yes multicast=yes port=twisted pair speed=1Gbit/s
       resources: irq:44 memory:fe7f0000-fe7fffff

そして

roberts@roberts-Latitude-D630:~$ rfkill list all
1: Dell-wifi: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: Dell-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
3: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
roberts@roberts-Latitude-D630:~$ 
9
Roberts

Additional Driversウィンドウを使用して、STAドライバを無効にします。

有線接続でD630を接続します。

次のパッケージをインストールします。

Sudo apt-get update
Sudo apt-get install firmware-b43-installer
Sudo apt-get remove bcmwl-kernel-source

リブート

ソース

11
fossfreedom