Mouse Usb issue
sudo apt-get update --fix-missing
sudo apt-get install --reinstall xserver-xorg-input-allsudo apt update
sudo apt install --reinstall xserver-xorg-input-libinputAPT 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:
This will delete the current logs. You may also have older compressed log backups (e.g.,
Comments
Post a Comment