No Story, No Ecstasy

[Ubuntu 20.04] 인터넷 문제 ( Network Unclaimed ) 해결 본문

Shallow Series

[Ubuntu 20.04] 인터넷 문제 ( Network Unclaimed ) 해결

heave_17 2021. 1. 6. 03:36

Ubuntu 20.04 (Focal Fossa)를 설치했더니 랜카드가 인식되지 않는 문제를 발견했다.

여러 번의 삽질 끝에 해결하는데 성공했다.

 

우선 다음 명령어를 통해 랜카드 product 정보를 확인한다.

$ sudo lshw -C network

 

나 같은 경우에는 r8125-90004.01 드라이버를 설치하면 되었다.

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

*****1. sudo apt install r8168-dkms (r8125 설치 스크립트 수행을 위해서는 해당 패키지가 꼭 필요함)

2. 위 링크에서 파일 다운로드 후 압축 해제

3. cd r8125-90004.01

4. sudo chmod +x autorun.sh

5. sudo ./autorun.sh (얘가 설치해주는 스크립트)

6. sudo reboot

 

 

그런데, 사실 인터넷 연결이 안 되기 때문에 위의 1번 단계 수행이 불가능하다.

따라서 나는 다른 머신에서 직접 .deb 파일들을 pkgs.org/ 에서 다운 받아서 옮겼다...

 

Packages Search - pkgs.org

RPM Fusion Nonfree Updates Testing Third-Party x86_64 0 - - -

pkgs.org

 

r8168-dkms 설치를 위해서는 dkms가 필요하고, dkms 설치를 위해서는 buildessential이 필요하고, ...... dependency chain이 계속해서 이어지기 때문에 굉장히 많은 패키지들을 수동으로 받아서 설치해줘야만 했다.

더 좋은 방법이 있겠지만... 일단 나는 이렇게 해결했다.

deb_list.txt
0.00MB

내가 다운받았던 deb files list

 

패키지를 수동으로 설치할 때는 다음 명령어를 사용한다.

$ dpkg -i <<pkg_name.deb>>

 

* 참고: 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

 

'Shallow Series' 카테고리의 다른 글

React 기초  (0) 2021.01.15
쿠버네티스 오브젝트 ( Kubernetes Object )  (0) 2021.01.09
쿠버네티스 클러스터 아키텍처  (0) 2021.01.09
Kubernetes 관련 내용  (0) 2021.01.08
Docker 관련 내용  (0) 2021.01.08