To fix the issue, delete cache from the Chrome's GPUCache:
cd ~/.config/google-chrome/Default
sudo rm -rf GPUCache/
reboot computer
If the Linux is unable to mount NTFS partition, install NTFS kernel module:
sudo apt-get install ntfs-3g
If the message that the OS is updated constantly displayed whenever Software Center is opened:
"Software Updates Installed. Important OS updates have been installed",
delete the update logfile:
cd /var/lib/PackageKit && sudo rm offline-update-competed
Install dbus-x11:
sudo apt install dbus-x11
When Ubuntu 22.04 is installed in a dual-boot after the Windows is installed on the machine, the Grub will skip check for other OSes (Windows). To fix this:
Open Grub in text editor:
sudo gedit /etc/default/grub
Add this line:
GRUB_DISABLE_OS_PROBER=false
Update grub from the Terminal:
sudo update-grub
Sometimes, after the Ubuntu updates, the Grub can lose Windows record again. In this case, no need to go through all three previous steps, just do last one
Set the Real Time Clock (RTC) to use local time zone, with command in the Terminal:
timedatectl set-local-rtc 1 --adjust-system-clock
If you wan to revert this setting back:
timedatectl set-local-rtc 0
If the disk or flash drive can not be mounted and instead gives an error: "Error mounting /dev/sdxX at /media/…", type this command:
sudo ntfsfix /dev/sdxX
(change the "xX" with relevant letter and number)