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

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

博客园 - 蜡笔小旧

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

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