Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ubuntu 16.04 built-in back-up app (Deja-Dup) won't work

Tags:

ubuntu-16.04

Just installed Ubuntu 16.04 and tried to activate the automatic back-up option with the built-in back-up software. When trying to run a back up, it says: Failed to execute child process "duplicity" (No such file or directory). What's going on?

like image 564
shakedzy Avatar asked Apr 24 '16 17:04

shakedzy


2 Answers

Run:

sudo apt-get install duplicity

This should fix that.

like image 168
shakedzy Avatar answered Nov 16 '22 08:11

shakedzy


If sudo apt-get install duplicity doesn't work, run:

apt-cache policy deja-dup-backend-gvfs

If it says Installed: (none), run:

sudo apt-get install deja-dup-backend-gvfs

This worked for me in Ubuntu 16.10.

like image 3
user7305045 Avatar answered Nov 16 '22 09:11

user7305045