Debian はインストール時に eth0 だけを認識します。

Debian はインストール時に eth0 だけを認識します。

私のラップトップにDebianをインストールしようとしていましたが、以前はラップトップにUbuntuをインストールしましたが、すべてがうまくいきました。

さまざまなISO(ファームウェア、SIDの表示、テスト、および安定を含む)を試した後は、常にeth0でリンクを見つけることから始め、インストールを続行するたびに、Debianは少なくとも要求された場所にあるWi-Fiアクセスポイントを選択するように要求しません。ミラーの場合でも到達できず、依頼されていないため、より多くのシステム情報を確認できるように、ルートシェルでベアベースのインストールを続けました。 #ifconfig wlan0 upでエラーが発生します。インターネット検索とwlan0: ERROR while getting interface flags: No such deviceifconfigはあまり役に立ちませんでした。eth0lo

出力lspci

00:00.0 Host bridge: Intel Corporation Atom Processor Z36xxx/Z37xxx Series SoC Transaction Register (rev 0e)
00:02.0 VGA compatible controller Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display (rev 0e)
00:13.0 SATA controller: Intel Corporation Device 0f23 (rev 0e)
00:14.0 USB controller: Intel Corporation AtomProcessor Z36xxx/Z37xxx Series USB xHCI (rev 0e)
00:1a.0 Encryption controller: Intel Corporation Atom Processor Z36xxx/Z37xxx Series Trusted Execution Engine (rev 0e)
00:1b.0 Audio device: Intel Corporation Atom Processor Z36xxx/Z37xxx Series High Definition Audio Controller (rev 0e)
00:1c.0 PCI bridge: Intel Corporation Device 0f48 (rev 0e)
00:1c.1 PCI bridge: Intel Corporation Device 0f4a (rev 0e)
00:1c.2 PCI bridge: Intel Corporation Device 0f4c (rev 0e)
00:1f.0 ISA bridge: ntel Corporation Atom Processor Z36xxx/Z37xxx Series Power Control Unit (rev 0e)
00:1f.3 SMBus: Intel Corporation Device 0f12 (rev 0e)
01:00.0 Network controller: Broadcom Corporation BCM43142 802.11b/g/n (rev 01)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 07)
03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader (rev 01)

それが何であるか、どのように解決できるかについての手がかりはありますか?

より多くの情報が必要な場合は、いつでもofcにお問い合わせください。私はこれがまさにトピックに関するものではないことを知っています。ご希望の場合は、質問をUNIXに提出します。

ベストアンサー1

https://wiki.debian.org/bcm43xx

ハードウェアの問題を投稿する人にメモを残すのと同じように、最初の公開にどのハードウェアを含める必要があります。そうしないと、誰もあなたを助けたり、問題を特定したりできません。修正された質問には、lspciの関連情報が含まれており、これは恐ろしいBroadcomファームウェアの問題であることを示しています。

このページでは、Broadcomチップに関する問題について説明します。 Ubuntuは時々無料ではないか、貢献プールドライバとファームウェアを提供するので、あなたのUbuntuで動作することができます。解決策を維持するためにここにページを引用していますが、詳細を見逃さないようにリンクから読んでください。

これらのドライバはDebianカーネルイメージにモジュールとして含まれています。デバイスの操作にはユーザースペースのファームウェアが必要です。

ファームウェアは Debian プロジェクトによってパッケージ化されません。ダウンロードして解凍する必要があります。これは、インストール中にファームウェア-b43-installer、ファームウェア-b43legacy-installer、またはファームウェア-b43-lpphy-installerパッケージを介して実行できます。インターネット接続が必要です。

Add a "contrib" component to /etc/apt/sources.list, for example:

# Debian 7 "Wheezy"
deb http://httpredir.debian.org/debian/ wheezy main contrib non-free

Update the list of available packages:

apt-get update

Install the appropriate firmware installer package:

For devices with a BCM4306 revision 3, BCM4311, BCM4318, BCM4321 or BCM4322 chip, install firmware-b43-installer:

apt-get install firmware-b43-installer

For devices with a BCM4312 LP-PHY chip (PCI ID 14E4:4315), install firmware-b43-installer:

apt-get install firmware-b43-installer

For devices with a BCM4301 chip or the BCM4306 revision 2 chip, install firmware-b43legacy-installer:

apt-get install firmware-b43legacy-installer

おすすめ記事