Deja-dup (now Ubuntu Backup) is just a GUI for duplicity, therefore it should store the config files somewhere. I would like to changed the backup volume size to something like 300MB and the increase the --full-if-older-than variable. is this possible?
5 Answers
The deja-dup settings can also be changed with dconf-editor in the dconf-tools apt package. The settings are in org.gnome.DejaDup.
- 4,523
Instead of using dconf-editor, you can use gsettings from command line.
See all the options (keys) within the Deja-Dup schema, and their configurations:
gsettings list-recursively org.gnome.DejaDupEdit keys:
gsettings set SCHEMA [:PATH] KEY VALUEFor example:
gsettings set org.gnome.DejaDup include-list ['$HOME']
- 14,504
This has changed in various Déjà Dup versions, but I believe it is currently at:
~/.gconf/apps/deja-dup/
What can't you change using the GUI front-end?
UPDATE
from: launchpad.net: How do I also backup my deja Dup settings?
The settings used to be stored there, and the files are still present.
In more recent version they are stored in:
~/.config/dconf
- 14,528
- 5
- 38
- 46
On Ubuntu 24.04, the flatpak install of Deja-Dupe stores its settings in:
~/.var/app/org.gnome.DejaDup/config/glib-2.0/settings/keyfile
I know this is an old question for an old Ubuntu, but it's still an early search engine hit. I hope this is useful extra information for the next guy.
The .deb still uses dconf, but I guess the new flatpack isn't allowed.
- 586
fwiw, added a dconf setting if you build this from source, it will create a volsize setting in org.gnome.DejaDup. you can change it to 500mb with dconf-editor.
- 21