Is your wireless slow?

3 min. readlast update: 11.06.2025

Improving Slow Wireless Performance on Star Labs Devices

If you’re experiencing slow Wi-Fi speeds or unstable wireless transfers, this guide can help you identify and resolve common issues.


🔍 Understanding the Issue

Star Labs devices use Intel AX200 or AX201 wireless cards.
These cards include advanced power-saving features that help reduce energy consumption, but on some wireless N networks, this can lead to lower performance.

💡 Note:
If your wireless adapter appears as “Wireless-AC 9462”, don’t worry — this is simply how some Linux kernels identify the AX201 card.

By default, the wireless card operates in power-saving mode, which can limit throughput.
The steps below will show you how to temporarily disable power saving, test performance, and (if effective) make the change permanent.


1. Temporarily Disable Power Saving

Open a Terminal window and run the command for your device:

LabTop Mk IV:

sudo iwconfig wlp0s20f3 power off

StarLite Mk IV:

sudo iwconfig wlp0s12f0 power off

Then test your connection speed again to see if performance improves.


2. Installing Useful Network Tools

To better monitor your wireless connection, install wireless_tools and wavemon — a simple, live Wi-Fi monitoring tool.

🧰 Install Wireless Tools (for Manjaro / Arch-based)

sudo pacman -S wireless_tools

📡 Install Wavemon

Debian / Ubuntu-based:

sudo apt install wavemon

Arch / Manjaro-based:

sudo pacman -S wavemon

Fedora-based:

sudo dnf install wavemon

To start live monitoring:

wavemon

3. Checking Wireless Signal and Connection Quality

Use these commands to view available networks and monitor your connection:

List all visible networks:

nmcli device wifi list

Monitor your current connection status:

watch -n1 iwconfig

These tools will help you detect weak signals, interference, or unstable links.


4. Make the Fix Permanent

If disabling power saving improves performance, you can make the change permanent by adjusting your system configuration.

⚙️ Enable Link Aggregation and Disable Power Saving

Run the following commands:

sudo touch /etc/modprobe.d/starlabs.conf echo "options iwlwifi 11n_disable=8 power_save=off" | sudo tee -a /etc/modprobe.d/starlabs.conf sudo update-grub

Then reboot your laptop to apply the new settings.


5. Advanced Configuration (Use with Caution)

⚠️ Warning: The following settings are for advanced users only.
Incorrect changes may cause reduced performance or compatibility issues.

You can further adjust /etc/modprobe.d/iwlwifi.conf to experiment with other driver options.
For example, to disable only power saving, edit the file to read:

options iwlwifi power_save=off

Alternatively, you can create a new configuration file:

sudo touch /etc/modprobe.d/starlabs.conf echo "options iwlwifi 11n_disable=8 power_save=off" | sudo tee -a /etc/modprobe.d/starlabs.conf sudo update-grub

To revert to default settings:

sudo rm /etc/modprobe.d/starlabs.conf

6. Optional Driver Parameters

You can test additional parameters to fine-tune wireless performance:

Parameter Description
options iwlwifi bt_coex_active=0 Disables Bluetooth coexistence (may improve Wi-Fi throughput).
options iwlwifi bt_coex_active=1 Enables Bluetooth coexistence (recommended if using Bluetooth devices).
options iwlwifi 11n_disable=8 Enables antenna aggregation for improved performance.
options iwlwifi swcrypto=1 Uses software encryption (can improve stability on some systems).
options iwlwifi power_save=off Disables power saving (increases throughput).
options iwlwifi d0i3_disable=1 Disables low-power idle state (LAR).
options iwlwifi uapsd_disable=1 Disables U-APSD; may fix low throughput on some access points.

✅ Summary

  1. Test disabling power saving with iwconfig.

  2. Use wavemon and nmcli to monitor your connection.

  3. If speeds improve, make the change permanent with /etc/modprobe.d/starlabs.conf.

  4. Reboot and verify stability.

You should now experience faster and more consistent wireless performance.

Was this article helpful?