Physics World(물리,수학)

RTL8125 오류(Network Unclaimed error) 해결 법(Ubuntu 20.04) 본문

프로그래밍

RTL8125 오류(Network Unclaimed error) 해결 법(Ubuntu 20.04)

물리영이 2021. 7. 9. 22:13
728x90
반응형

RTL8125 오류(Network Unclaimed) 해결 법(Ubuntu 20.04)

참고(reference):https://askubuntu.com/questions/1287967/cant-get-rtl8125-realtek-driver-working-on-version-20-04

 

Cant get RTL8125 Realtek driver working on version 20.04

I have installed Ubuntu 20.04 on a new PC and originally managed to get the RTL8125 NIC driver working by installing the Realtek driver. However after an update it has stopped working and I am unab...

askubuntu.com

 

나의 컴퓨터 환경은 i7 11 generation, msi B560 mortar 메인보드이다.

0. r8125드라이버를 설치하기 위해선 다음과 같은 것이 설치되어 있어야 한다.

English: You should install the package before installing driver.

sudo apt install r8168-dkms

단, 문제가 있다. 인터넷이 안돼서 위 패키지를 다운로드를 못한다면 이후 과정을 진행할 수 없다. 개인적으로도 곤혹스러웠는데, 나나는 안드로이드폰의 USB테더링으로 인터넷 연결해서 설치했다.

English: There is an important problem. You cannot install the package without internet. Then, I would recommend that using smart phone's internet(USB tethering).

 

 

1. 본인의 랜카드가 RTL8125인지 확인하자.

English: Let's confirm that your realteck lan card is RTL8125.

sudo lshw -C network

이 결과를 볼 수 있다면, 확인이 된 것이다.

product: RTL8125 2.5GbE Controller

2. r8125에 맞는 드라이버를 설치하기 위해 다운로드한다.

English: Donload the driver of r8125 lan card on realtek homepage.

URL: https://www.realtek.com/en/component/zoo/category/network-interface-controllers-10-100-1000m-gigabit-ethernet-pci-express-software

 

Realtek PCIe FE / GBE / 2.5G / Gaming Ethernet Family Controller Software - REALTEK

Network Interface Controllers > 2.5G Gigabit Ethernet > PCI Express   RTL8125 / RTL8125B(S) Network Interface Controllers > 10/100/1000M Gigabit Ethernet > PCI Express   RTL8111B/RTL8111C/RTL8111D/RTL8111E/RTL8111F/RTL8111G(S)/RTL8111H(S)//RTL8118(A)(S)

www.realtek.com

2.5G Ethernet LINUX driver 다운로드 받는다.

3. 압축 해제.

tar -xvf r8125-9.005.06.tar.bz2

4.

cd r8125-9.005.06

5.

sudo ./autorun.sh

complete라고 뜨면 성공.

6. 리부팅하자

English: Reboot the machine.

sudo reboot

 

성공적으로 해결되길 바랍니다.

Wirely connected라고 보일 것입니다.

 

반응형

'프로그래밍' 카테고리의 다른 글

Ubuntu 20.04 Anydesk 설치(Installation)  (0) 2021.07.09
Ubuntu 20.04 desktop으로 혼자 사용하는 서버 만들기  (0) 2021.07.09
파이썬의 특징, 장단점  (0) 2021.01.01
Geant4 설치  (0) 2020.12.20
Ubuntu 가상머신 설치  (0) 2020.12.20
Comments