41

I upgraded from Ubuntu 18.04 to 20.04 but desktop files and icons are missing, How do I should solve this problem?

The Mir
  • 555

7 Answers7

37

This worked for me:

  • Install gnome-shell-extension-desktop-icons:
sudo apt install gnome-shell-extension-desktop-icons
  • Log out of Gnome.
  • Log back in.
Earl Ruby
  • 841
7

The problem might be that the installation did not go according to plans, not to worry though! The simplest (and most effective) operation you can do is:

sudo apt dist-upgrade

This will automatically install / update / repair all the needed packages for your current version.

Mattia
  • 486
4

I'm on stock Ubuntu 20.04.2, fresh install.

I also noted out of the blue, that the contents of ~/Desktop failed to show up on the desktop.

So I went ahead and enabled the Desktop Icons extension in Tweaks, and nothing happened. After I have restarted the Gnome Shell with Alt+F2 + r, and still no icons, I went back to Tweaks only to find the Desktop Icons extension disabled again. So I repeated the cycle, this time tweaking on the extension's preferences, hoping that it would unstuck the glitch somehow. No luck, the Desktop Icons extension kept disabling itself on each restart of Gnome Shell.

Then I looked in dconf-editor, in org.gnome.shell enabled-extensions: "desktop-icons@csoriano" was in there, as it was supposed to be. Yet the problem persisted.

Then:

I do have an additional piece of GUI window, that is called, plainly, Extensions in the apps / activies overview. It's a single window, and looks very similar to Gnome Tweaks' "Extensions" tab UI. Only, this one takes precedence over the one in Tweaks.

I don't know where this Extensions app originates from: whether it's installed on 20.04 by default, or maybe I have obtained it by installing the gnome-shell-extensions package.

Anyways, enabling Desktop Icons in the plain Extensions app solved everything.

Levente
  • 4,607
3

I have Ubuntu 20.04 (Gnome) and sometimes icons are missing after restart. I use a rather silly solution. I just create a new file, this causes the gnome to load the desktop icons again. ctrl+alt+t to open a terminal, then:

touch Desktop/NEW #Creates an empty file named NEW
rm Desktop/NEW #Deletes the file
Shayan
  • 451
1

Try switching desktop manager.

I also just upgraded my stable 18.04 to 20.04. Initially I can't even see my initial login prompt and I have forgotten that I installed lightdm and made that the default vice gdm (gnome desktop manager) which is version 3 now (gdm3).

I followed this nice how-to: Switch Display Manager in Ubuntu 20.04

You can have both gdm3 and lightdm installed but one can only be set active.

Good Luck!

Quantanglement
  • 129
  • 1
  • 1
  • 8
1

I tried sudo apt install gnome-shell-extension-desktop-icons but it did not work for me because my gnome shell was fully updated, but I just right clicked on the desktop and created a folder then just like that all my icons appeared; hope this helps out.

Zanna
  • 72,312
1

Open application "Tweaks" and go to Extentions tab. If you do not have one simply install it:

sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak

Turn on the Desktop icons checkbox. enter image description here Works immediatelly (no restart is needed). For me it only worked.

Arsenii
  • 216