PAULARMEN

How to fix desktop selector

Mar 7th, 2025
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. You're right that you can install different desktop environments on Pop!_OS, but it sounds like something might have gone wrong with the installation or configuration.
  2.  
  3. Here are a few steps you can try to troubleshoot this issue:
  4.  
  5. 1. **Check Installed Desktop Environments:**
  6. First, make sure the desktop environments were installed correctly. You can install various DEs like GNOME, KDE, XFCE, etc., using the following commands (if you haven’t already):
  7.  
  8. - **For KDE Plasma:**
  9.  
  10. sudo apt install kde-plasma-desktop
  11.  
  12. - **For XFCE:**
  13.  
  14. sudo apt install xfce4
  15.  
  16. - **For LXQt:**
  17.  
  18. sudo apt install lxqt
  19.  
  20. 2. **Verify Display Manager:**
  21. Pop!_OS uses `GDM` as the default display manager, which should show the cog menu where you can select different desktops. If you have installed a different desktop environment, it's possible the display manager was changed during installation.
  22.  
  23. You can check which display manager is active with this command:
  24.  
  25. cat /etc/X11/default-display-manager
  26.  
  27. If it’s not `gdm3`, you can try switching it back:
  28.  
  29. sudo dpkg-reconfigure gdm3
  30.  
  31. Then restart the system or just restart the display manager:
  32.  
  33. sudo systemctl restart gdm3
  34.  
  35. 3. **Reboot and Check for Desktop Environment Selector:**
  36. After doing the steps above, reboot your system. When you reach the login screen, look for the cogwheel icon near the login prompt. If the cog appears, click it and see if you can choose the other desktop environments. If it doesn’t appear, try switching to another virtual console (`Ctrl + Alt + F3`), log in, and check if the desktop environments are available there.
  37.  
  38. 4. **Reinstall Desktop Environments:**
  39. If none of the above works, try reinstalling the desktop environment of your choice. Sometimes a fresh install of the DE can fix missing configuration files that prevent it from appearing in the login screen.
  40.  
  41. 5. **Check for Conflicts:**
  42. Occasionally, if you have installed too many environments or there are leftover configurations from previous installations, it can cause conflicts. You can try cleaning up with:
  43.  
  44. sudo apt autoremove
  45. sudo apt clean
  46.  
  47. After trying these steps, let me know how it goes. If the issue persists, we can explore other potential solutions.
  48.  
  49. Paul
Advertisement
Add Comment
Please, Sign In to add comment