내 Kali Linux가 내 Asus ac53 nano 무선 어댑터를 인식하도록 하려고 합니다.

내 Kali Linux가 내 Asus ac53 nano 무선 어댑터를 인식하도록 하려고 합니다.

안녕하세요, 이 제목이 마음에 드는 분들이 계시네요. 제가 새로운 Kali 설치에서 Wi-Fi를 사용하려고 한다고 말씀해 주세요. 내 휴대폰을 연결하여 작업을 완료 하고 파일 sudo apt updatesources.list더 많은 소스를 추가할 수 있었습니다. 제가 받을 수 있는 다른 도움을 주시면 정말 감사하겠습니다!

razanumberone㉿Raza)-[~]
└─$ uname -r                                                                                                  1 ⨯
5.10.0-kali3-amd64
                                                                                                                   
┌──(razanumberone㉿Raza)-[~]
└─$ lsusb
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 015: ID 04e8:6864 Samsung Electronics Co., Ltd GT-I9070 (network tethering, USB debugging enabled)
Bus 001 Device 004: ID 1b80:b510 Afatech USB Gaming Keyboard
Bus 001 Device 003: ID 0b05:184c ASUSTek Computer, Inc. 802.11ac NIC
Bus 001 Device 002: ID 18f8:0f99 [Maxxter] Optical gaming mouse
Bus 001 Device 008: ID 1a86:7523 QinHeng Electronics CH340 serial converter
Bus 001 Device 007: ID 05e3:0608 Genesys Logic, Inc. Hub
Bus 001 Device 006: ID 045e:02ea Microsoft Corp. Xbox One S Controller
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
                                                                                                                   
┌──(razanumberone㉿Raza)-[~]
└─$ sudo apt-get install kali-linux-wireless                                      
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libpython2.7-stdlib : Breaks: python-numpy (< 1:1.12.1-3.1) but 1:1.6.2-1.2 is to be installed
 mariadb-client-10.3 : Conflicts: virtual-mysql-client
                       Breaks: mysql-client-5.5 but 5.5.40-0+wheezy1 is to be installed
 mariadb-client-core-10.3 : Conflicts: mysql-client-5.5 but 5.5.40-0+wheezy1 is to be installed
 mariadb-server-core-10.3 : Conflicts: mysql-server-5.5 but 5.5.40-0+wheezy1 is to be installed
                            Breaks: mysql-client-5.5 but 5.5.40-0+wheezy1 is to be installed
                            Breaks: mysql-server-core-5.5 but 5.5.40-0+wheezy1 is to be installed
 mysql-common : Conflicts: mysql-server-5.5 but 5.5.40-0+wheezy1 is to be installed
 python-is-python2 : Breaks: python-minimal but 2.7.3-4+deb7u1 is to be installed
 python2-minimal : Breaks: python-minimal (< 2.7.15-2) but 2.7.3-4+deb7u1 is to be installed
 tcl : Breaks: tcl8.5 (< 8.5.14-3) but 8.5.11-2 is to be installed
 tk : Breaks: tk8.5 (< 8.5.14-3) but 8.5.11-2 is to be installed
 wifitap : Depends: python-scapy but it is not installable
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

┌──(razanumberone㉿Raza)-[~]
└─$         

답변1

고장난 것을 고치다apt

당신이 섞었기 때문에 아파트가 깨졌습니다칼리 저장소데비안 wheezy를 사용한 레포. 이 문제를 해결하려면:

sudo rm -rf /etc/apt/sources.list.d/*
echo "deb http://http.kali.org/kali kali-rolling main non-free contrib" |\
sudo tee /etc/apt/sources.list
sudo apt update
sudo apt upgrade

무선을 작동시키세요.

클론jeremyb31/rtl8822bu저장소:

이 드라이버를 사용하는 일부 알려진 무선 카드는 다음과 같습니다.

  • 에디 맥스 EW-7822ULC
  • ASUS AC-53 나노

참고: 이 모듈을 컴파일하려면 v4.7 이상이 필요합니다. 이전 커널을 사용하는 분들에게는 죄송합니다. 코드가 제거되었습니다. 요청하시면 이전 버전과 호환되도록 작업해 드릴 수 있습니다.

git clone https://github.com/jeremyb31/rtl8822bu.git
cd rtl8822bu
make
sudo make install
sudo modprobe -v 8822bu
lsmod |grep 8822bu

관련 정보