데비안을 설치했습니다. 이제 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
인용하다:데비안 위키
답변2
귀하의 APT 캐시는 최신 상태입니까(
sudo apt-get update
)?패키지가 최신 상태입니까(
sudo apt-get upgrade
)?
오류 정보를 제공해 주십시오. 그렇지 않으면 문제가 무엇인지 파악하기 어렵습니다.