私はKDE 3.5をインストールし、Atheros 9271でドライバが動作するようにしようとしています。ドライバを入力するとlsusb
検出されますが、ifconfigは検出されません(イーサネットとループバックのみ)。
ここでは、次のガイドラインを試しました。
https://wiki.debian.org/ath9k_htc
しかし、私が実行したときにのみapt-get update && apt-get install firmware-atheros
表示されます。
どんなアイデアがありますか?
答え1
ファームウェア - アテロスは無料ではないプログラムです。/etc/apt/sources.list
次のようにプログラムを編集する必要があります(リダイレクタhttpredirを使用しないでください):
deb http://deb.debian.org/debian jessie main contrib non-free
deb-src http://deb.debian.org/debian jessie main contrib non-free
deb http://deb.debian.org/debian jessie-updates main contrib non-free
deb-src http://deb.debian.org/debian jessie-updates main contrib non-free
deb http://security.debian.org/debian-security/ jessie/updates main contrib non-free
deb-src http://security.debian.org/debian-security/ jessie/updates main contrib non-free
パッケージを保存してインストールします。
apt update
apt install firmware-atheros
このエラーを解決するには:
E: The package firmware-atheros needs to be reinstalled, but I can't find an archive for it
次のコマンドを試してください。
apt install --reinstall firmware-atheros
それでも「半構成パッケージ」が表示されている場合は、以下をバックアップしてください/var/lib/dpkg/status
。
cp /var/lib/dpkg/status status.bak
status
ファイルを開きます。
nano /var/lib/dpkg/status
firmware-atheros
ファイルと説明を見つけて削除してファイルを保存し、次の手順を実行します。
dpkg --configure -a
apt update
apt install firmware-atheros
GPGエラーは、以下をインストールすることでdebian-archive-keyring
解決できますdebian-keyring
。
apt install debian{$1,-archive}-keyring