惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
D
DataBreaches.Net
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
腾讯CDC
博客园_首页
The Cloudflare Blog
S
SegmentFault 最新的问题
C
Check Point Blog
美团技术团队
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale

博客园 - 蜡笔小旧

linux kernel complie + QEMU elon musk's 5 steps work method sqlite rollback journal vs. wal cmd/powershell frozen issue MTU issue in Ubuntu 22.04 Cursor ai network issue workaround in Ubuntu 22.04 android app network monitor with mitmweb zsh vs. bash 在gitlab中使用fastlane编译ios 记一次gitlab artifact问题 Cursor in Ubuntu 22.04 Manual install .NET SDK 9 on ubuntu with .NET SDK 8 记一次阿里云主机被挖矿 防御性编程 hyper-v ubuntu 22.04 Configure oh my zsh Setting up development environment with Ubuntu 22.04 WSL linux reset password Windows 10 access ext4 IP
Offline install net driver in ubuntu
蜡笔小旧 · 2021-07-16 · via 博客园 - 蜡笔小旧

2021-07-16 21:49  蜡笔小旧  阅读(93)  评论()    收藏  举报

Step1: Download driver source code--------------------------------------------------------------------------------------------------

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

FE Ethernet LINUX driver r8101 for kernel up to 5.6

--------------------------------------------------------------------------------------------------

Step2: Download gcc, make *.deb--------------------------------------------------------------------------------------------------

PACKAGES="gcc" apt-get download $(apt-cache depends --recurse --no-recommends --no-suggests \ --no-conflicts --no-breaks --no-replaces --no-enhances \ --no-pre-depends ${PACKAGES} | grep "^\w")

PACKAGES="make" apt-get download $(apt-cache depends --recurse --no-recommends --no-suggests \ --no-conflicts --no-breaks --no-replaces --no-enhances \ --no-pre-depends ${PACKAGES} | grep "^\w")

--------------------------------------------------------------------------------------------------

Step2: copy to USB & mount--------------------------------------------------------------------------------------------------

mount /dev/sda1 /mnt

--------------------------------------------------------------------------------------------------

Step3: install--------------------------------------------------------------------------------------------------

 cd /mnt/deb_cache

dpkg -i *.deb

cd /mnt/driver_src

./autorun

--------------------------------------------------------------------------------------------------

 Step4: netplan--------------------------------------------------------------------------------------------------

cd /etc/netplan

nano 00-installer-config.yaml

network:
  version: 2
  renderer: networkd
  ethernets:
    enp1s0:
      addresses: [192.168.31.5/24]
      dhcp4: no
      optional: true
      gateway4: 192.168.31.1
      nameservers:
        addresses: [192.168.31.1, 114.114.114.114, 8.8.8.8]

netplan apply

--------------------------------------------------------------------------------------------------