Post

Screen flickering on Ubuntu

The screen flickerung is coming from Panel Self Refresh (PSR), a power saving feature used by Intel iGPUs which is known to cause flickering in some instances. A temporary solution is to disable this feature using the kernel parameter 364 i915.enable_psr=0. Here is how you can do It:

Edit the grub file:

1
sudo nano /etc/default/grub

and add to the end of the GRUB_CMDLINE_LINUX_DEFAULT line

1
i915.enable_psr=0

In the end it should look like this:

1
GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on iommu=pt i915.enable_psr=0"

then run:

1
sudo update-grub

to apply those changes and reboot.

This post is licensed under CC BY 4.0 by the author.