Meh Belly Lint Collection

That awful moment when you realize,
THIS is YOUR circus and THOSE are YOUR monkeys.

User Tools

Site Tools


ubuntu_steps

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
ubuntu_steps [2025/08/26 18:18] kensonubuntu_steps [2026/04/23 07:14] (current) kenson
Line 239: Line 239:
 apt install nmap apt install nmap
 </code> </code>
 +
 +===== WiFi + “jerky typing” fix for low power wifi cards!!!! =====
 +
 +Run <code>ip addr</code> to find the wlan card, mine is wlp2s0.
 +
 +Test if this is the problem first.
 +<code>
 +iw dev wlan0 get power_save
 +</code>
 +if its on, it will report:
 +<code>
 +Power save: on
 +</code>
 +Turn off power save via:
 +<code>
 +sudo iw dev wlan0 set power_save off
 +</code>
 +If that works, make it permanent via (also note this isn't the "right" way, just the fastest way)
 +<code>
 +vi /etc/systemd/system/wifi-powersave-off.service
 +</code>
 +Add the following snippet
 +<code>
 +[Unit]
 +Description=Disable WiFi Power Save
 +After=network.target
 +
 +[Service]
 +Type=oneshot
 +ExecStart=/usr/sbin/iw dev wlp2s0 set power_save off
 +
 +[Install]
 +WantedBy=multi-user.target
 +</code>
 +Make it permanent
 +<code>
 +sudo systemctl daemon-reexec
 +sudo systemctl enable wifi-powersave-off
 +sudo systemctl start wifi-powersave-off
 +</code>
 +
ubuntu_steps.txt · Last modified: 2026/04/23 07:14 by kenson

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki