Resetting GNOME Settings
Gnome is so configurable that sometimes you can end up breaking your window manager. Most local settings for GNOME are stored in hidden directories in your home folder – gnome, gnome2, gconf, gconfd, metacity. You can remove these files to reset all the settings.
Method 1: Command line via login screen
- At the login screen:
- Fedora:
CTRL + ALT + F3 - Ubuntu:
CTRL + ALT + F1
- Fedora:
- Log in with your username and password.
- Remove GNOME config:
rm -rf ~/.gnome ~/.gnome2 ~/.gconf ~/.gconfd ~/.metacity- Reboot:
rebootMethod 2: Boot into command line via GRUB (all distros)
- At the GRUB menu, select your Linux system but don’t press Enter. Press
eto edit. - Find the line starting with
linux(it looks like):
linux /boot/vmlinuz-3.5.2-3.fc17.i686.PAE root=UUID=... ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=us rd.luks=0 LANG=en_US.UTF-8 rhgb quiet- Move to the end of the line, add a space, and type
3→ non-graphical boot:
linux /boot/vmlinuz-3.5.2-3.fc17.i686.PAE root=UUID=... ro rd.md=0 rd.lvm=0 rd.dm=0 SYSFONT=True KEYTABLE=us rd.luks=0 LANG=en_US.UTF-8 rhgb quiet 3- Press
CTRL + XorF10to boot. - You’ll land in command line mode, then run the same remove command:
rm -rf ~/.gnome ~/.gnome2 ~/.gconf ~/.gconfd ~/.metacity- Reboot:
rebootNote
This resets all GNOME settings including themes, panels, and window preferences.
Backup configs if you want to restore later.
