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
Next revision
Previous revision
ubuntu_steps [2025/05/23 07:03] kensonubuntu_steps [2026/04/23 07:14] (current) kenson
Line 1: Line 1:
 Start with "bare" ubuntu, I'm still on 22.04 LTS Start with "bare" ubuntu, I'm still on 22.04 LTS
  
-Just be root+Notes: 
 <code> <code>
-sudo su -+vi ~/.inputrc 
 +set enable-bracketed-paste off
 </code> </code>
  
Line 191: Line 193:
  
  
 +<code>
 +apt install nfs-common
  
 +apt install nfs-kernel-server
 +</code>
  
  
Line 233: 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.1747983795.txt.gz · Last modified: 2025/05/23 07:03 by kenson

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki