2

I have no wired network connection running Ubuntu 24.04 on a new system with a GIGABYTE X870 EAGLE WIFI7 (AM5, DDR5, M.2 PCIe 5.0, Wi-Fi 7) motherboard.

Bluetooth seems to be available but the Bluetooth 'dialogue' in settings doesn't find any devices, despite the phone I'm typing this on having Bluetooth enabled.

There was no network during installation. So I'm running whatever comes with 24.04.1 - no updates done.

Windows 11 was installed on the new machine and it had a connection, so I'm guessing the hardware is OK.

Help.


Output from wireless info script: https://pastebin.ubuntu.com/p/dJJ8vvVc5W/

AlanQ
  • 115

1 Answers1

0

Intro

The necessary driver for wired networking is available in kernel 6.13.2-061302-generic
I didn't check any earlier kernels.

Detail

USB tethering

To get a temporary network connection, @Jeremy31's suggestion in the question comments of USB tethering worked very easily from my Samsung Android phone. This allowed downloading and updating.
Connect the phone to the PC using a USB cable.
In Android: Settings > Connections > Mobile Hotspot and Tethering > USB tethering ON

Adjust GRUB

You will probably want GRUB to show kernel options (Advanced Options for Ubuntu) in case the new kernel causes problems with your system:

The answer to How to get the GRUB menu to show up at boot-time in Ubuntu 24.04 has the detail: https://askubuntu.com/a/1521908

Install newer Kernel

The program 'mainline' makes this easy:
It's installation and use is described under 'Method 3: Manually Update the Kernel (Advanced Procedure)' in How to Update Linux Kernel In Ubuntu
sudo add-apt-repository ppa:cappelikan/ppa
sudo apt update
sudo apt install mainline

For me, 'mainline' came up as a terminal application (non-GUI).

mainline help shows the options.
sudo mainline list shows the Kernel versions available for install.
sudo mainline install-latest installs the latest version (in my case 6.13.2).

Then simply re-boot. The new, most recent, kernel is chosen by default. But 'Advanced Options for Ubuntu' can be selected so as to choose another kernel if the new one causes problems.

Almost certainly 'Secure Boot' in the BIOS will complain about the unsigned kernel. You'll have to disable secure boot until the official kernel version gets past the one you just installed.

AlanQ
  • 115