User Tools

Site Tools


linux

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
linux [2024/04/27 00:13] dblumelinux [2025/01/09 10:06] (current) dblume
Line 271: Line 271:
 [[https://askubuntu.com/questions/1413750/how-to-change-2-finger-touchpad-scroll-speed-on-ubuntu-22-04|How to change 2-finger touchpad scroll speed on Ubuntu 22.04]]. If you really want this, may have to compile libinput-config locally. [[https://askubuntu.com/questions/1413750/how-to-change-2-finger-touchpad-scroll-speed-on-ubuntu-22-04|How to change 2-finger touchpad scroll speed on Ubuntu 22.04]]. If you really want this, may have to compile libinput-config locally.
  
 +====== Distro Upgrade ======
  
 +Software Updater: "Not enough free disk space"
 +Thread at Slack. First try "sudo apt-get autoremove --purge", and if that doesn't work, then to see the installed kernels:
 +
 +<code>
 +$ dpkg --list | egrep "^ii +(linux-image|linux-headers)"
 +ii  linux-headers-5.11.0-46-generic            5.11.0-46.51~20.04.1                amd64        Linux kernel headers for version 5.11.0 on 64 bit x86 SMP
 +ii  linux-headers-5.13.0-52-generic            5.13.0-52.59~20.04.1                amd64        Linux kernel headers for version 5.13.0 on 64 bit x86 SMP
 +ii  linux-headers-5.15.0-58-generic            5.15.0-58.64~20.04.1                amd64        Linux kernel headers for version 5.15.0 on 64 bit x86 SMP
 +ii  linux-headers-5.15.0-60-generic            5.15.0-60.66~20.04.1                amd64        Linux kernel headers for version 5.15.0 on 64 bit x86 SMP
 +ii  linux-headers-5.4.0-42                     5.4.0-42.46                         all          Header files related to Linux kernel version 5.4.0
 +ii  linux-headers-5.4.0-42-generic             5.4.0-42.46                         amd64        Linux kernel headers for version 5.4.0 on 64 bit x86 SMP
 +ii  linux-headers-5.8.0-63-generic             5.8.0-63.71~20.04.1                 amd64        Linux kernel headers for version 5.8.0 on 64 bit x86 SMP
 +ii  linux-headers-generic-hwe-20.04            5.15.0.60.66~20.04.26               amd64        Generic Linux kernel headers
 +ii  linux-image-5.15.0-58-generic              5.15.0-58.64~20.04.1                amd64        Signed kernel image generic
 +ii  linux-image-5.15.0-60-generic              5.15.0-60.66~20.04.1                amd64        Signed kernel image generic
 +ii  linux-image-generic-hwe-20.04              5.15.0.60.66~20.04.26               amd64        Generic Linux kernel image
 +</code>
 +
 +And then choose the old ones (comparing with what's on /boot) to manually remove...
 +
 +<code>
 +df -h /boot
 +ls -l /boot
 +# Install aptitude to see why it was installed... (Output wordy, says whether manually installed, dependencies)
 +aptitude why -v linux-headers-5.11.0-46-generic
 + 
 +sudo apt purge linux-headers-5.11.0-46-generic  # picked a few old looking ones
 +</code>
linux.txt · Last modified: 2025/01/09 10:06 by dblume