Ubuntu 20용 Lenovo Ideapad L340 노트북용 Wi-Fi 드라이버를 찾을 수 없습니다.

Ubuntu 20용 Lenovo Ideapad L340 노트북용 Wi-Fi 드라이버를 찾을 수 없습니다.

저는 Linux를 처음 사용하기 때문에 우분투를 선택했지만 Wi-Fi를 사용할 수 없습니다. 검색하고 시도했지만 sudo apt update아무 sudo apt upgrade일도 일어나지 않았고 여전히 작동하지 않습니다....

나도 시험삼아 lspci -nnk | grep 0280 -A3이걸 얻었어...

07:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. 
RTL8821CE 802.11ac PCIe Wireless Network Adapter [10ec:c821]    
Subsystem: Lenovo RTL8821CE 802.11ac PCIe Wireless Network Adapter [17aa:c024] 
08:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 10)  
Subsystem: Lenovo RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [17aa:38cf]

도와주세요!

답변1

이는 일반적인 문제입니다. 여기에 제공된 답변을 확인하세요.Ubuntu에서 WiFi 드라이버 설치/제거

기본적으로 이 저장소에서 Realtek 무선 네트워크 카드용 드라이버를 다운로드하고 빌드해야 합니다.https://github.com/lwfinger/rtw88

드라이버 설치

git clone https://github.com/lwfinger/rtw88.git  
cd rtw88  
make  
sudo make install
sudo modprobe rtw_8822ce

여전히 문제가 있는 경우 충돌하는 드라이버가 있을 수 있으므로 명령을 사용해 보세요.

echo "blacklist ideapad-laptop" | sudo tee -a /etc/modprobe.d/blacklist.conf

그리고 재부팅하세요.

관련 정보