Linux 2.6.23(VM)에서는 USB Wi-Fi를 설치할 수 없습니다.

Linux 2.6.23(VM)에서는 USB Wi-Fi를 설치할 수 없습니다.

방금 KDE 3.5를 설치했고 Atheros 9271에서 드라이버가 작동하도록 하려고 합니다. 드라이버를 입력하면 lsusb감지되지만 ifconfig는 감지되지 않습니다(이더넷과 루프백만 해당).

여기서는 다음 지침을 시도했습니다.

https://wiki.debian.org/ath9k_htc

하지만 내가 실행할 때만 apt-get update && apt-get install firmware-atheros나타납니다 .

스크린샷

어떤 아이디어가 있나요?

답변1

펌웨어-아테로스(firmware-atheros)는 무료가 아닌 프로그램입니다. /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

관련 정보