Certainly, you have the flexibility to restore a Deja Dup backup on a different computer than the one on which the backup was initially created. This capability is particularly convenient when transitioning to a new computer or replacing hardware components. Here's how you can smoothly accomplish this process.
First, on your new computer, ensure that Deja Dup is installed. You can use the following command to install Deja Dup on your Ubuntu system.
sudo apt-get install deja-dup
Afterward, establish a connection to the network drive where your backup is stored.
# Mount the network drive (replace <network_drive_path> with the actual path)
sudo mount -t cifs //<network_drive_path> /mnt/network_drive -o username=<your_username>,password=<your_password>
Deja Dup facilitates a straightforward restoration process. Open the application, then navigate to and select the "Restore" option. Subsequently, choose the specific backup you wish to restore.
deja-dup --restore
With another click, initiate the restoration process. Deja Dup will systematically scan the selected backup, recovering all the files it contains. You can then pick and choose the files you'd like to restore and simply click "Restore" again.
deja-dup --restore <backup_folder>
Deja Dup takes care of restoring these files to your new computer, ensuring a hassle-free transition. It's worth noting that Deja Dup also offers the flexibility to restore backups to a different location on the same computer. The procedure is quite similar, as you access Deja Dup, click on "Restore," choose the backup you'd like to restore, and once again initiate the restoration process:
deja-dup --restore
The application efficiently scans the backup and displays your files. At this point, you can select the specific files for restoration, after which Deja Dup will prompt you to specify the location for the restored files.
deja-dup --restore --folder=<destination_folder>
This feature proves handy for reorganizing or reconfiguring your data on the same computer, enhancing the versatility of Deja Dup's restoration capabilities.