DEV Community

Precious Chicken
Precious Chicken

Posted on • Originally published at preciouschicken.com on

Configuring Deja Dup Ubuntu Backup on a WD My Cloud NAS

Considering that the sole purpose of Deja Dup is to backup and one of the main selling points of a WD My Cloud NAS drive is as a place to store your backup; it is surprisingly difficult to do it in a seamless way on Ubuntu. By seamless I mean it happens in the background without you having to think about it.

Here is how I did it on Ubuntu 18.04 LTS with a WD My Cloud Mirror:


1. Install the NFS client

Install the NFS client package by running the following at the terminal:

sudo apt update
sudo apt install nfs-common
Enter fullscreen mode Exit fullscreen mode

2. Create a share on WD My Cloud

Using the My Cloud interface create a 'share' on the WD My Cloud (see About Shares in the User Manual), ensure NFS is set to on and give the share a relevant name (e.g. Backup).

Once created take a note of the IP address of the share as shown in the screenshot (here it is 192.168.0.32, your system will likely be different):

WD MyCloud Share Access

3. Create a local folder to act as mount point

Using the terminal create a folder on the computer you are backing up: sudo mkdir /mnt/Backup. This is the folder you will mount the NAS drive too; you can create this folder anywhere you consider sensible.

4. Open fstab file

Using the terminal open your fstab file using sudo vim /etc/fstab. This fstab file determines what drive Ubuntu mounts at startup.

5. Add new line to fstab file

Create a new line at the end of the fstab file and; where '192.168.0.32' is your IP address from Step 1, the first Backup is the share you created at Step 1 and /mnt/Backup is the folder you created at Step 2; add the following

192.168.0.32:/nfs/Backup /mnt/Backup nfs defaults 0 0
Enter fullscreen mode Exit fullscreen mode

If you aren't familiar with vim it can be a little tricky to figure out how to edit text and save, but you can pick up the bare minimum quickly.

6. Create /etc/network/if-up.d/fstab file

Using the terminal create a file with the command sudo vim /etc/network/if-up.d/fstab.

7. Edit /etc/network/if-up.d/fstab file

Copy and paste the following text to the file created at Step 5:

#!/bin/sh
mount -a
Enter fullscreen mode Exit fullscreen mode

8. Make /etc/network/if-up.d/fstab file executable

Make the file executable: sudo chmod +x /etc/network/if-up.d/fstab.

9. Reboot.

Reboot. The drive should mount on startup. Alternatively you can run mount -a from a terminal, but I like to reboot just to make sure everything works.

10. Select backup options in Deja Dup

Open Backups on Ubuntu (although the name is Deja Dup, it is not known as that) and select 'Storage location'. For storage location select 'Local Folder' and then choose /mnt/Backup or whatever folder you chose at Step 2.

11. Back up

Select 'Back Up Now' from Overview and set up scheduling.


These instruction borrow heavily from an answer on Ubuntu Forums, which was helpfully reposted on Ask Ubuntu. Linuxize also has a useful post on mounting NFS file systems.

Addendum: The original version of this post used the device name (see Configuring Settings in the User Manual) instead of the IP address in the fstab file. For some reason that I'm not going to dig too much into, this has recently stopped working; so I'm using the IP address instead. Using the IP address has problems too - as they are normally dynamically allocated by a router they tend to change when devices are powered down / reset; in which case the fstab above will need editing. I figure as most NAS drive are on permanently however, this is not too big a hassle - or alternatively you can amend your router to provide a static IP addresses which doesn't change.

Top comments (0)