Linux Format

Answers

Q Driverless network

I am a long-time subscriber and I have finally built my dream machine, with plans on running multiboot Linux distros on it. My basic problem is that I can’t connect to a network, or obviously the internet, with any Linux distribution. My first choice would be to use Linux Mint, but no luck, so I tried booting from a live USB and tried Ubuntu 22.04 and even Fedora 37.

I really, really want to multiboot Linux Mint, Ubuntu 22.04 and Fedora 37 on the same machine using Ethernet. The network device is a Realtek Gaming 2.5GbE Family Controller running the 10.56.119.220 drive on Windows 10 Pro (rt640X64.sys). I have searched the internet, but I am not having much luck finding Linux drivers for this controller. Frank Gunseor

A Realtek does provide a driver for this card, but it should not be needed with recent Linux kernels because support for it has been added to the r8169 kernel module. The first step is to make sure the module is loaded: $ lsmod | grep 8169

This shows you whether it is in the list of currently loaded modules. If it is not, you need to run: $ sudo modprobe -v r8169

This command should show the r8169 module being loaded – along with any other modules it requires. Now you can check that your network interface is available with: $ ifconfig -a

The -a option is important, it makes show all available interfaces, not just those that are in use. If loading the module does not makethe two are combined so you can run $ sudo journalctl -f in one terminal, to see the new log entries as they are added, then run modprobe in another terminal and watch for errors.

You’re reading a preview, subscribe to read more.

More from Linux Format

Linux Format2 min read
Back Issues Missed One?
ISSUE 313 April 2024 Product code: LXFDB0313 In the magazine Discover how to use the ultimate hacker’s toolkit, staying out of trouble while doing so. And join us as we take the Puppy Linux developer’s new distro for a run and explore its container
Linux Format2 min read
Distro Watch
Ubuntu 24.04 LTS Noble Numbat is currently scheduled for release on 25th April. At the time of writing, we’re working with a daily build and expect a full review next issue. Nevertheless, we discovered that Canonical has announced this LTS release wi
Linux Format5 min read
Tips For Managing Docker Containers
Everyone knows how containers revolutionised application building and deployment. Using a E disposable stack of containers that make up an app that aren’t using the docker-compose command to manage the stack are missing a trick. It allows the shippin

Related Books & Audiobooks