Linux noob 在这里(开始)。之前我进行了几次成功的安装试验,现在我决定采用一种配置。我现在无法让我的网卡工作。
台式电脑,非常旧的系统 - AMD Phenom II 955,技嘉 GA-MA790XT-UD4P
我感兴趣的驱动是: GBE Ethernet LINUX driver r8168 for kernel up to 5.17
背景:我使用 USB-Ethernet 加密狗尝试了一些 r8168 安装教程,并且 dnf upgrade 已将我的内核从全新安装的 5.17 更新到 5.18。-> 因此我怀疑内核不一致但如何返工呢?
内核正在使用 r816 9驱动程序 (lspci -v),我知道它不适用于我的系统!使用驱动程序包含的 autorun.sh 确实适用于 fedora 35(我相信就像半年前一样),而且我之前也成功地能够在 Ubuntu 上安装 r8168 驱动程序。
从文件夹中执行“$ sudo ./autorun.sh”会得到以下输出:
Check old driver and unload it
Build the module and install
make[2]: *** /lib/modules/5.18.5-200.fc36.x86_64/build: No such file or directory. Stop.
make[1]: *** [Makefile:158: clean] Error 2
make: *** [Makefile:48: clean] Error 2
因此,我不知何故需要强制 Fedora 使用 r8168,但我不知道如何 - 没有互联网访问权限(呃,因为 GBE 以太网卡不工作)。而且我希望这个解决方案在没有 USB-Ethernet 加密狗的情况下也能正常工作。
我检查了那个位置,它列出了构建文件,但是打开“构建”会弹出一个对话框:
The link "build" is broken.
This link cannot be used because its target "usr/src/kernels/5.18.5-200.fc36.x86_64" doesn't exist
编辑:
管理为 5.18.6-200* 和所有依赖项安装 kernel-devel。现在,当运行驱动程序的 autorun.sh 时,我得到以下输出:
Check old driver and unload it.
Build the module and install
/home/am/Documents/r8168-8.050.03/src/r8168_n.c: In function ‘rtl8168_mac_loopback_test’:
/home/am/Documents/r8168-8.050.03/src/r8168_n.c:3717:17: error: implicit declaration of function ‘pci_dma_sync_single_for_device’; did you mean ‘dma_sync_single_for_device’? [-Werror=implicit-function-declaration]
3717 | pci_dma_sync_single_for_device(tp->pci_dev,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| dma_sync_single_for_device
/home/am/Documents/r8168-8.050.03/src/r8168_n.c: In function ‘rtl8168_init_board’:
/home/am/Documents/r8168-8.050.03/src/r8168_n.c:26448:14: error: implicit declaration of function ‘pci_set_dma_mask’ [-Werror=implicit-function-declaration]
26448 | !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) &&
| ^~~~~~~~~~~~~~~~
/home/am/Documents/r8168-8.050.03/src/r8168_n.c:26449:14: error: implicit declaration of function ‘pci_set_consistent_dma_mask’ [-Werror=implicit-function-declaration]
26449 | !pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64))) {
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: some warnings being treated as errors
make[3]: *** [scripts/Makefile.build:288: /home/am/Documents/r8168-8.050.03/src/r8168_n.o] Error 1
make[2]: *** [Makefile:1842: /home/am/Documents/r8168-8.050.03/src] Error 2
make[1]: *** [Makefile:154: modules] Error 2
make: *** [Makefile:41: modules] Error 2
有什么好主意可以尝试吗?
我发现的最接近的主题是:
这并没有说明安装是如何实际完成的,因此我不知道如何应用它。
这假设我可以访问互联网进行 dnf 升级和其他东西 - 不行。