16

I am about to upgrate from 17.10 to 18.04 but I'm afraid to lose all my Gnome desktop preferences in the process (always been using Unity until 17.10). I made many changes through "Gnome Tweak tool" and I would like to backup all the current config so I can restore it in my new installation (the same question applies for a fresh

At the same time, I'd like to know if there's a similar way to backup all other configuration for Gnome in general (Nautilus, etc.)

Any info would really help, thank you in advance...

R Pennese
  • 1,265

1 Answers1

31
  1. From the terminal, execute the following to save your gnome settings:

     cd ~
     dconf dump / > saved_settings.dconf
    

    Keep the saved_settings.dconf file in a safe place so you can use it after you upgrade.

  2. From the terminal, execute the following to restore your gnome settings:

     cd ~
     dconf load -f / < saved_settings.dconf
    

(I suggest doing a test to make sure this works for you: Save the settings as shown above in step 1. Then make a few test changes using Gnome Tweaks. Finally restore the settings, as shown above in step 2. If everything restores to the way you had it before, you can use the saved file to restore settings after you upgrade.)

Note: There may be some settings that have changed between Ubuntu versions, and you will need to fix those manually. However, per vanadium's comment below, most settings will transfer over just fine.

Enterprise
  • 12,792