I’ve been diving headfirst into the world of Ubuntu 20.04 LTS since I decided to change from Windows, and let me tell you, it’s been a wild ride! I thought I had it all figured out until I realized I need to get my Intel Wi-Fi 6E AX210 card up and running. The problem is, I have no idea how to install and configure the drivers for it on my setup.
I’ve tried scouring forums, and while I’ve found some bits and pieces of information, it feels a bit scattered, and I’m just not sure I’m piecing it all together correctly. I mean, I have this shiny new card that promises lightning-fast internet, but right now I’m stuck using an Ethernet cable, which is not ideal for my setup.
I’d really appreciate a bit of a step-by-step guide, or even a few tips from anyone who’s gone through the same struggle. Do I need to download specific drivers, or are they included with Ubuntu? I’ve seen mention of the Linux kernel and something about backported drivers, but to be honest, that just confuses me more. And should I be doing this in the terminal? I’m getting more comfortable with it, but sometimes I still feel like I’m walking on eggshells.
Also, if it helps, I’m using a laptop, so I want to make sure that once I do get this Wi-Fi sorted, it doesn’t mess with my battery life or anything like that. Another thing on my mind is the configuration—do I need to change anything in the network settings once I install the drivers?
If anyone’s successfully navigated this minefield and could share their wisdom, I would be super grateful. Thanks in advance for even just pointing me in the right direction!
To get your Intel Wi-Fi 6E AX210 card up and running on Ubuntu 20.04 LTS, you first need to ensure that your system is fully updated and that the appropriate drivers are installed. Most modern Intel wireless drivers are included in the Linux kernel, and the AX210 card is supported starting from kernel version 5.10. Since Ubuntu 20.04 LTS initially comes with an older kernel, you may need to update your kernel to the latest version available for Ubuntu, or alternatively, use the backport package containing newer drivers. You can achieve this by running the terminal commands:
sudo apt update
andsudo apt upgrade
to update your current packages, followed bysudo apt install linux-generic-hwe-20.04
to install the hardware enablement stack that includes a newer kernel version suitable for your Wi-Fi card.After updating the kernel, reboot your laptop. The system should automatically detect your Intel Wi-Fi card, and you should see available Wi-Fi networks in your network settings. If, for some reason, your Wi-Fi doesn’t work immediately, you can further troubleshoot using terminal commands like
lspci | grep Network
to verify that the card is being recognized. Regarding battery life concerns, most recent drivers are optimized for energy efficiency, but you can manage your power settings in the system settings if needed. Normally, once the drivers are installed, no further configuration should be necessary in the network settings, but keep an eye on your connectivity and performance after everything is set up.Getting Your Intel Wi-Fi 6E AX210 to Work on Ubuntu 20.04
Sounds like you’re on quite the adventure switching to Ubuntu! Don’t worry, getting your Wi-Fi card up and running can definitely be figured out.
Step-by-Step Guide
First, let’s see if your card is supported out-of-the-box. Open a terminal and type:
This command shows the network devices. If you see your Intel AX210 listed, it might just need a few tweaks.
Before diving into installations, ensure your system is up to date. Run:
Intel’s drivers might not come by default in the kernel you’re using, so installing backported drivers might do the trick.
Run the following command:
This will give you the latest firmware that might help your card.
After installing, restart your laptop:
Once you’re back, click on the network icon in the top-right of your screen. See if your Wi-Fi network appears. If it does, click on it and you should be good to go!
Additional Tips
Final Thoughts
Every setup can be a bit different, so if something doesn’t work as expected, don’t hesitate to search more or ask for help in forums like Ask Ubuntu or Ubuntu Forums. You’ve got this!