Mouse Usb issue sudo apt-get update --fix-missing sudo apt-get install --reinstall xserver-xorg-input-all sudo apt update sudo apt install --reinstall xserver-xorg-input-libinput APT History Log: The APT history log records all package installations, removals, and upgrades that have occurred. Location: /var/log/apt/history.log To view it, use the cat , less , or more commands: cat /var/log/apt/history.log less /var/log/apt/history.log Log Rotation These log files are rotated regularly, which means old logs are archived and compressed. If you want to see older logs, you might have to look at the compressed .gz files: zcat /var/log/apt/history.log.*.gz Delete APT Logs: APT logs are stored in the following files: /var/log/apt/history.log /var/log/apt/term.log /var/log/dpkg.log To delete them, run the following commands: sudo rm /var/log/apt/history.log sudo rm /var/log/apt/term.log sudo rm /var/log/dpkg.log This will delete the current logs. You may ...