반응형
중국산 mini pc에 ubuntu 18.04를 설치하였다. 그런데 무선랜 카드를 인식을 못한다. 참고로 해당 mini pc에 ubuntu 20.04 & 22.04를 설치했을때는 정상적으로 무선랜 카드를 인식하였다.
무선랜 카드 사양: Realtek RTL8821CE
[발생 원인]
ubuntu 18.04에 Realtek RTL8821CE 무선랜 카드 드라이버가 없음
[해결 방안]
0. 일단 무선랜이 안되니까 유선랜으로 연결하던지 아니면 wifi 동글 혹은 핸드폰 usb 테더링을 통해서 인터넷 연결을 확보한다.
1. 무선 랜 카드 상태 확인
lshw -C network
# 무선랜 카드는 있는데 드라이버가 없을 경우 *-network UNCLAIMED라고 뜬다.
2. 아래 프로그램 설치
sudo apt install git dkms -y
3. 레포지토리에서 드라이버 다운로드
git clone https://github.com/tomaspinho/rtl8821ce.git
4. 드라이버 설치
cd rtl8821ce
sudo ./dkms-install.sh
# 드라이버 설치가 완료되면 재부팅한다.
reboot
유사 문제
728x90
'ERROR' 카테고리의 다른 글
[error] No transform from [A] to [B] (0) | 2023.11.28 |
---|---|
[error] "Verification failed: (0X1A) Security violation" error (1) | 2023.11.27 |
[error] EasyInstallDeprecationWarning (1) | 2023.11.01 |
[error] Usage of dash-separated 'script-dir' will not be supported in future versions. (0) | 2023.10.30 |
[error] AttributeError: module 'cv2.aruco' has no attribute 'Dictionary_get' (0) | 2023.05.28 |