Ubuntu 23.10 Asus Vivobook 16 (X1605VA-MB957WS): Mediatek WiFi Card Driver Not Supported
If you are using Ubuntu 23.10 on your Asus Vivobook 16 (X1605VA-MB957WS) and facing issues with the Mediatek WiFi card because its driver is not supported in the kernel, then you are not alone. This article will provide you with detailed information about the problem and possible solutions to resolve it.
Understanding the Problem
The Asus Vivobook 16 (X1605VA-MB957WS) comes with a Mediatek WiFi card that is not supported in the Ubuntu 23.10 kernel. This means that the WiFi card's drivers are not compatible with the Ubuntu 23.10 kernel, and as a result, the WiFi card will not function properly. This issue is not unique to Ubuntu 23.10 and can occur with other Linux distributions as well.
Checking the WiFi Card Details
To check the details of the WiFi card, you can use the following command:
lspci -nnk | grep -iA3 netThis command will display the details of the WiFi card, including the device name, vendor, and device ID. You can use this information to check if the WiFi card is supported in the Ubuntu 23.10 kernel.
Checking the Kernel Support
To check if the WiFi card is supported in the Ubuntu 23.10 kernel, you can use the following command:
modprobe -c | grep -i mediatekIf the output of the command is empty, then the WiFi card is not supported in the Ubuntu 23.10 kernel. In this case, you will need to install the drivers manually.
Installing the Drivers Manually
To install the drivers manually, you can follow the steps below:
- Download the latest drivers for the Mediatek WiFi card from the manufacturer's website.
- Extract the downloaded file and navigate to the extracted directory.
- Install the required dependencies using the following command:
sudo apt-get install build-essential linux-headers-$(uname -r)- Compile and install the drivers using the following commands:
make
sudo make install- Load the drivers using the following command:
sudo modprobe mt76After completing these steps, the WiFi card should start functioning properly. You can check the WiFi status using the following command:
iwconfigThe Asus Vivobook 16 (X1605VA-MB957WS) comes with a Mediatek WiFi card that is not supported in the Ubuntu 23.10 kernel. This issue can be resolved by installing the drivers manually. This article provided detailed information about the problem and possible solutions to resolve it.
References
- Mediatek WiFi Card Drivers: https://www.mediatek.com/products/connectivity/wifi
- Ubuntu 23.10 Kernel Support: https://wiki.ubuntu.com/Kernel/Support