Debian -- Broadcom ワイヤレスコントローラーの有効化

Debian -- Broadcom ワイヤレスコントローラーの有効化

まあ、これは私を狂わせます。古いDell Precision M60ノートブックを設定していますが、Debian squeezeでワイヤレスデバイスのサポートを有効にすることはできません。

私が試したこと:

lspci | grep -i wireless
    02:03.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller (rev 02)

私はdebianwikiでこのページを見つけました:bcm43xx。まず、そのデバイスが実際にサポートされていることを確認してください。

lspci -vnn -d 14e4:
    02:03.0 Network controller [0280]: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller [14e4:4320] (rev 02)
        Subsystem: Dell TrueMobile 1300 WLAN Mini-PCI Card [1028:0001]
        Flags: bus master, fast devsel, latency 32, IRQ 5
        Memory at fafec000 (32-bit, non-prefetchable) [size=8K]
        Capabilities: <access denied>
        Kernel driver in use: b43-pci-bridge

したがって[14e4:4320](改訂02)です。はい、サポートされています。 Debianウィキページに戻る

802.11b専用デバイス(BCM4301)またはBCM4306改訂2チップセット付き802.11b / gデバイス、ファームウェアのインストールb43legacy-installer

しよう:

sudo aptitude install firmware-b43legacy-installer 

..

 firmware-b43legacy-installer
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up firmware-b43legacy-installer (4.178.10.4-4) ...
Not supported card here (PCI id 14e4:165
14e4:4320)!
Use b43 firmware. This is just for the b43legacy driver.
Aborting.
dpkg: error processing firmware-b43legacy-installer (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 firmware-b43legacy-installer
Setting up firmware-b43legacy-installer (4.178.10.4-4) ...
Not supported card here (PCI id 14e4:165
14e4:4320)!
Use b43 firmware. This is just for the b43legacy driver.
Aborting.
dpkg: error processing firmware-b43legacy-installer (--configure):
 subprocess installed post-installation script returned error exit status 1
configured to not write apport reports
                                      Errors were encountered while processing:
 firmware-b43legacy-installer
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up firmware-b43legacy-installer (4.178.10.4-4) ...
Not supported card here (PCI id 14e4:165
14e4:4320)!
Use b43 firmware. This is just for the b43legacy driver.
Aborting.
dpkg: error processing firmware-b43legacy-installer (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 firmware-b43legacy-installer

何?ファームウェア-b43-installerを試してみましょう。

aptitude install firmware-b43-installer

効果があるしかし:

sudo iwconfig

    wlan0 IEEE 802.11bg  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=0 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off

sudo ifconfig wlan0 up
    SIOCSIFFLAGS: No such file or directory

また? Googleにエラーがあってファームウェア関連なのにインストールしました!チェックインしましたが、lib/firmware.fwファイルを含むb43フォルダがあります。

どんなアイデアがありますか?

ベストアンサー1

ドライバのインストールの問題を解決できて嬉しいです。これは通常、依存関係および/または別々のパッケージを解決する簡単な問題です。

エラーが発生した理由は、観点からはインターフェイスが存在しないためですifconfig

出力を詳しく見てみると、iwconfig出力の2行目でインターフェイスがアクセスポイントに関連付けられていないことがわかります。ワイヤレス802.11インターフェイス(a / b / g / n)が管理モード(クライアントタスクの標準)で動作するには、インターフェイスを他のエンドポイントと関連付ける必要があります。ワイヤレスネットワークがインターフェイスに関連付けられている場合、wlan0インターフェイスはまたは優先ネットワーク管理ツールを介してifconfigアドレスを取得できます。ip

他のエンドポイントに関連付けられていないワイヤレスインターフェイスにアドレスを割り当てる唯一の方法は、インターフェイスをアドホックネットワークなどのホストインターフェイスとして使用するか、システムをワイヤレスネットワークのアクセスポイントとして使用することです。

おすすめ記事