To disable USB autosuspend on Manjaro Linux, you can use the tlp utility, which is a power management tool commonly used on laptops and other devices running Linux. Here’s how you can do it:
- Install TLP (if not already installed):
Open a terminal and run the following command to install TLP:sudo pacman -Sy tlp - Edit TLP configuration file:
Open the TLP configuration file using a text editor. You can use any text editor you prefer. For example, you can use nano:sudo nano /etc/default/tlp - Modify USB autosuspend settings:
Look for the following lines in the configuration file:USB_AUTOSUSPEND=1Change the value from1to0to disable USB autosuspend:USB_AUTOSUSPEND=0Save the changes and exit the text editor. - Restart TLP:
After making the changes, you need to restart the TLP service for the changes to take effect. Run the following command:sudo systemctl restart tlp
After following these steps, USB autosuspend should be disabled on your Manjaro Linux system. This should help prevent USB devices, including your USB Ethernet adapter, from entering a low-power state and experiencing intermittent disconnections.
Tips
Ctrl+C Ctrl+V Not Working in Terminal? Here’s Why (Linux)
Ctrl+C Ctrl+V not working in terminal is one of the most common points of confusion for anyone new t…
Tips
How to Set Up WireGuard VPN on Linux (Server and Client, 2026)
Updated: May 2026 | Covers Ubuntu 26.04, 24.04, Debian, Fedora | Server + client + mobile setup Wire…
Tips
How to Harden Your Linux System in 30 Minutes (Step-by-Step)
Skill level: Intermediate | Time to complete: 30–40 minutes | Tested on: Ubuntu 24.04, Debian 12, Fe…


