Debian をインストールしました。これで、Wi-Fiアダプタがどのように機能するのか心配です。
手がかりを見つけました。https://ubuntuforums.org/showthread.php?t=1806839install linux-firmware
しかし、それはうまくいかず、うまくsudo apt-get install linux-headers-generic build-essential
いきませんでした。
Linuxファームウェアについてはわかりません。
上記の項目をインストールしたときに発生するエラーは次のとおりです。
root@debian:/home/love# sudo apt-get install linux-headers-generic build-essential Reading package lists... Done Building dependency tree
Reading state information... Done Package linux-headers-generic is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'linux-headers-generic' has no installation candidate
root@debian:/home/love# sudo apt-get install linux-firmwareReading package lists... Done Building dependency tree
Reading state information... Done E: Unable to locate package linux-firmware
ストレージを追加すると、次のエラーが発生します。
root@debian:/home/love# deb http://http.debian.net/debian/ wheezy main contrib non-free bash: deb: command not found
以下はいくつかのコマンドの結果です。
root@debian:/home/love# uname -a Linux debian 3.16.0-4-amd64 #1 SMP Debian 3.16.36-1+deb8u2 (2016-10-19) x86_64 GNU/Linux root@debian:/home/love# lsusb Bus 002 Device 005: ID 138a:0005 Validity Sensors, Inc. VFS301 Fingerprint Reader Bus 002 Device 004: ID 413c:2107 Dell Computer Corp. Bus 002 Device 016: ID 2a70:f00e
Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 004: ID 04d9:a0ac Holtek Semiconductor, Inc. Bus 001 Device 003: ID 0846:9041 NetGear, Inc. WNA1000M 802.11bgn [Realtek RTL8188CUS] Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
どうすればいいですか?
答え1
以下を開きますsources.list
。
nano /etc/apt/sources.list
次に、wheezy リポジトリを削除します。
例がありますここ:
deb http://httpredir.debian.org/debian jessie main contrib non-free
deb-src http://httpredir.debian.org/debian jessie main contrib non-free
deb http://httpredir.debian.org/debian jessie-updates main contrib non-free
deb-src http://httpredir.debian.org/debian jessie-updates main contrib non-free
deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free
保存と終了
システムを更新してください:
apt-get update && apt-get upgrade && apt-get dist-upgrade
インストールfirmware-realtek
パッケージ:
apt-get install firmware-realtek
引用:Debian Wiki
答え2
あなたのAPTキャッシュは最新ですか(
sudo apt-get update
)?パッケージは最新の状態ですか(
sudo apt-get upgrade
)?
エラー情報を提供してください。そうでなければ、問題が何であるかを把握することは困難です。