Ubuntu – Reporting: I can’t open settings in ubuntu 20.04 LTS

20.04displaysystem-settingsupgrade

I am a regular user of Ubuntu. I recently moved on from Ubuntu 19 for 20.04 LTS, but after the upgrade the settings are not opening. Besides the settings, the display settings and change background option are also not working.

Best Answer

Your Gnome-Control-Center might need reinstalling. Open your terminal and enter these commands:

sudo apt-get update
sudo apt-get install --reinstall gnome-control-center

And then the commands for opening the display and system settings, respectively, would be:

gnome-control-center display
gnome-control-center

These commands will change the desktop background: First, get the URI of the background image:

gsettings get org.gnome.desktop.background picture-uri 'file:///home/yourusername/Pictures/yourpic.jpg'

Then set the background URI like so:

gsettings set org.gnome.desktop.background picture-uri 'file:///home/yourname/Pictures/yourpic.jpg'

And it will update your desktop background.

Best of luck!

Related Question