網卡安裝

https://clay-atlas.com/blog/2022/01/05/linux-install-ethernet-driver/


https://github.com/brektrou/rtl8821CU


mkdir -p ~/build

cd ~/build

git clone https://github.com/brektrou/rtl8821CU.git


Step 2: 確認網路卡型號

可以使用 ifconfig -a 查看是否安裝了網路卡的驅動程式,也可以使用 lspci 指令來確認網路卡。

或是可以使用 lspci | grep Ethernet 來直接顯示出包含以太網卡的裝置名稱。

我的網卡裝置名稱顯示為 Intel Corporation Device 15fa (rev 11),所以我也是以此為基礎去進行下述網卡驅動的搜尋。

當然,你也需要搜尋你自己的網卡裝置型號。