{"id":137075,"date":"2023-06-06T00:54:13","date_gmt":"2023-06-05T21:54:13","guid":{"rendered":"https:\/\/computingforgeeks.com\/?p=137075"},"modified":"2026-03-21T23:37:07","modified_gmt":"2026-03-21T20:37:07","slug":"backup-linux-mac-windows-systems-using-duplicati","status":"publish","type":"post","link":"https:\/\/computingforgeeks.com\/backup-linux-mac-windows-systems-using-duplicati\/","title":{"rendered":"Backup Linux, Mac, and Windows Systems using Duplicati"},"content":{"rendered":"\n<p>A backup is a process of creating a copy of data or information in case the original data is lost, corrupted, or destroyed. The purpose of creating a backup is to ensure that the data can be restored in case of a disaster or data loss. Backups can be made of any type of digital data, including documents, photos, videos, databases, applications, and operating systems.<\/p>\n\n\n\n<p>There are several ways to create a backup, these are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Full backup<\/strong>: this creates a complete copy of all data, files, and folders on a computer or storage device. Full backups are typically done periodically, such as weekly or monthly.<\/li>\n\n\n\n<li><strong>Incremental backup:<\/strong> this creates a backup of only the changes that have been made since the last backup. This type of backup is faster and takes up less storage space than a full backup.<\/li>\n\n\n\n<li><strong>Differential backup<\/strong>: A differential backup creates a backup of all changes made since the last full backup. This type of backup is faster than a full backup but slower than an incremental backup.<\/li>\n\n\n\n<li><strong>Cloud backup<\/strong>: this creates a copy of data on a remote server over the internet. This type of backup is secure, convenient, and can be accessed from anywhere with an internet connection.<\/li>\n<\/ul>\n\n\n\n<p><strong>Duplicati<\/strong> is a free and open-source backup client that provides an easy and secure way to backup files and folders to various cloud storage services, including HubiC, Amazon S3, Box,  MEGA, Google Drive, Microsoft Azure, Dropbox, and more. <\/p>\n\n\n\n<p>Duplicati is available for Windows, macOS, and Linux operating systems and provides a number of features, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Backup scheduling<\/strong>: Duplicati allows you to schedule backups to run at specific times, such as daily, weekly, or monthly.<\/li>\n\n\n\n<li><strong>Encryption<\/strong>: Duplicati uses AES-256 encryption (or GNU Privacy Guard) to secure all data before it is uploaded.<\/li>\n\n\n\n<li><strong>Deduplication<\/strong>: it uses block-level deduplication to reduce the amount of data that needs to be backed up. This helps to save storage space and reduce backup times.<\/li>\n\n\n\n<li><strong>Command-line interface<\/strong>: It provides a command-line interface (CLI) for advanced users who want to automate backup tasks or create custom backup scripts.<\/li>\n\n\n\n<li><strong>Incremental backups<\/strong>: Duplicati uploads a full backup initially and stores smaller, incremental updates afterwards to save bandwidth and storage space.<\/li>\n\n\n\n<li><strong>Multiple backup destinations<\/strong>: Duplicati supports backing up to multiple destinations, including local storage, cloud storage services, and FTP servers.<\/li>\n\n\n\n<li><strong>Easy restore<\/strong>: Duplicati makes it easy to restore backups. You can choose to restore individual files and folders or entire backups.<\/li>\n\n\n\n<li><strong>Compression<\/strong>: Duplicati compresses your backups to save storage space and reduce upload and download times.<\/li>\n<\/ul>\n\n\n\n<p>This guide provides a detailed demonstration of how to back up Linux, Mac, and Windows Systems using <strong><em>Duplicati<\/em><\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. Install Duplicati on Linux, Mac, and Windows Systems<\/h2>\n\n\n\n<p>To be able to install Duplicati on Linux, Mac, and Windows Systems, we need to download the latest binaries from the<a href=\"https:\/\/github.com\/duplicati\/duplicati\/releases\" target=\"_blank\" rel=\"noreferrer noopener\"> releases page<\/a> page.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##For Debian\/Ubuntu<\/mark><\/em>\nwget https:\/\/updates.duplicati.com\/beta\/duplicati_2.0.7.1-1_all.deb<em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">\n<\/mark><\/em>\n<em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##For Fedora\/Rocky Linux\/Alma Linux<\/mark><\/em>\nwget https:\/\/updates.duplicati.com\/beta\/duplicati-2.0.7.1-2.0.7.1_beta_20230525.noarch.rpm\n\n<em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##For macOS\/OS-X<\/mark><\/em>\nwget https:\/\/updates.duplicati.com\/beta\/duplicati-2.0.7.1_beta_2023-05-25.dmg<em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">\n<\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##For Windows 64-bit<\/mark><\/em>\nwget https:\/\/updates.duplicati.com\/beta\/duplicati-2.0.7.1_beta_2023-05-25-x64.msi<em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">\n<\/mark><\/em>\n<em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##For Windows 32-bit<\/mark><\/em>\nwget https:\/\/updates.duplicati.com\/beta\/duplicati-2.0.7.1_beta_2023-05-25-x86.msi<\/code><\/pre>\n\n\n\n<p>Once downloaded, you can install Duplicati. On Mac and Windows systems, click on the downloaded file and follow through the installation.<\/p>\n\n\n\n<p>For Linux, use the commands below to install Duplicati:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##On Debian\/Ubuntu\n<\/mark><\/em>sudo apt install .\/duplicati_*.deb\n\n<em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##On Rocky Linux\/Alma Linux\n<\/mark><\/em>sudo yum-config-manager --add-repo http:\/\/download.mono-project.com\/repo\/centos8\nsudo yum -y install mono-devel\nsudo yum install libappindicator-gtk3 sqlite gtk-sharp2\nsudo rpm -ivh --nodeps duplicati-*.rpm<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2. Create a Duplicati System Service<\/h2>\n\n\n\n<p>Duplicati can be launched from the App Menu on your system after installation. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"655\" height=\"471\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati.png\" alt=\"\" class=\"wp-image-137091\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati.png 655w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-300x216.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-584x420.png 584w\" sizes=\"auto, (max-width: 655px) 100vw, 655px\" \/><\/figure>\n\n\n\n<p>Once started, it will launch a web UI on your default browser with the URL <a href=\"http:\/\/localhost:8200\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/localhost:8200<\/a><\/p>\n\n\n\n<p>But to make the administration easier, we can configure a system service and configure automatic start on boot. On Windows, you can allow automatic start during the installation.<\/p>\n\n\n\n<p>For Linux systems, you need to create a service file as shown:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vim \/etc\/systemd\/system\/duplicati.service<\/code><\/pre>\n\n\n\n<p>In the file, add the below lines:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;Unit]\nDescription=Duplicati web-server\nAfter=network.target\n\n&#91;Service]\nNice=19\nIOSchedulingClass=idle\nEnvironmentFile=-\/etc\/default\/duplicati\nExecStart=\/usr\/bin\/duplicati-server $DAEMON_OPTS\nRestart=always\n\n&#91;Install]\nWantedBy=multi-user.target<\/code><\/pre>\n\n\n\n<p>Next, we need to create an environment file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vim \/etc\/default\/duplicati<\/code><\/pre>\n\n\n\n<p>Add the below lines to define the Duplicati <strong><em>DAEMON_OPTS<\/em><\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Defaults for duplicati initscript\n# sourced by \/etc\/init.d\/duplicati\n# installed at \/etc\/default\/duplicati by the maintainer scripts\n\n#\n# This is a POSIX shell fragment\n#\n\n# Additional options that are passed to the Daemon.\nDAEMON_OPTS=\"--webservice-interface=any --webservice-port=8200 --portable-mode\"<\/code><\/pre>\n\n\n\n<p>Save the file, and reload the system daemon:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl daemon-reload<\/code><\/pre>\n\n\n\n<p>Start and enable the service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl enable --now duplicati  <\/code><\/pre>\n\n\n\n<p>Check the status of the service:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-pale-pink-color\">systemctl status duplicati<\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-light-green-cyan-color\">\u25cf<\/mark> duplicati.service - Duplicati web-server\n   Loaded: loaded (\/etc\/systemd\/system\/duplicati.service; enabled; vendor preset: disabled)\n   Active: <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-green-cyan-color\">active (running)<\/mark> since Fri 2023-05-05 07:05:26 EDT; 1s ago\n Main PID: 38853 (mono)\n    Tasks: 12 (limit: 23505)\n   Memory: 53.1M\n   CGroup: \/system.slice\/duplicati.service\n           \u251c\u250038853 DuplicatiServer \/usr\/lib\/duplicati\/Duplicati.Server.exe --webservice-interface=any --webservice-port=8200 --portable-mode\n           \u2514\u250038857 \/usr\/bin\/mono-sgen \/usr\/lib\/duplicati\/Duplicati.Server.exe --webservice-interface=any --webservice-port=8200 --portable-mode\n\nMay 05 07:05:26 localhost.localdomain systemd&#91;1]: duplicati.service: Service RestartSec=100ms expired, scheduling restart.\nMay 05 07:05:26 localhost.localdomain systemd&#91;1]: duplicati.service: Scheduled restart job, restart counter is at 2.\nMay 05 07:05:26 localhost.localdomain systemd&#91;1]: Stopped Duplicati web-server.\nMay 05 07:05:26 localhost.localdomain systemd&#91;1]: Started Duplicati web-server.<\/code><\/pre>\n\n\n\n<p>Once started, allow the service through the firewall:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##For UFW\n<\/mark><\/em>sudo ufw allow 8200\/tcp\n\n<em><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">##For Firewalld\n<\/mark><\/em>sudo firewall-cmd --add-port=8200\/tcp --permanent\nsudo firewall-cmd --reload<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3. Use Duplicati on Linux, Mac, and Windows Systems<\/h2>\n\n\n\n<p>Once started, you can access Duplicati using your browser with the URL <a href=\"http:\/\/localhost:8200\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/localhost:8200<\/a> or <a href=\"http:\/\/IP_address:8200\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/IP_address:8200<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"527\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-1-1024x527.png\" alt=\"\" class=\"wp-image-137092\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-1-1024x527.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-1-300x154.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-1-768x395.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-1-696x358.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-1-1068x549.png 1068w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-1-817x420.png 817w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-1.png 1410w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Duplicati will start with the above page, you have the option to set a password if you are running in a multi-user environment.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">a. Create a new Backup using Duplicati<\/h3>\n\n\n\n<p>Once the prerequisites have been performed, you can now create your first backup on Duplicati by clicking on <strong>Add backup.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"438\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2-1024x438.png\" alt=\"\" class=\"wp-image-137093\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2-1024x438.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2-300x128.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2-768x328.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2-1536x657.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2-696x298.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2-1068x457.png 1068w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2-983x420.png 983w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-2.png 1792w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p> Next, we need to provide the backup details. In the general tab, set the backup name, description and encryption as shown:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"757\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-3-1024x757.png\" alt=\"\" class=\"wp-image-137094\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-3-1024x757.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-3-300x222.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-3-768x568.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-3-696x515.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-3-568x420.png 568w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-3-80x60.png 80w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-3.png 1063w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Next, you need to select the destination path to which you want the backup to be stored. For this guide, we have a dedicated local directory at <strong>\/duplicati<\/strong> created with the right permissions:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"757\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-5-1024x757.png\" alt=\"\" class=\"wp-image-137095\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-5-1024x757.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-5-300x222.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-5-768x568.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-5-696x515.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-5-568x420.png 568w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-5-80x60.png 80w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-5.png 1063w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>You can also use some other preferred storage supported by Duplicati. Once provided, test the connection to the storage.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"757\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-4-1024x757.png\" alt=\"\" class=\"wp-image-137096\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-4-1024x757.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-4-300x222.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-4-768x568.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-4-696x515.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-4-568x420.png 568w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-4-80x60.png 80w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-4.png 1063w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Next, you select the source of the data to be backed up.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"670\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7-1024x670.png\" alt=\"\" class=\"wp-image-137098\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7-1024x670.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7-300x196.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7-768x503.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7-696x456.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7-1068x699.png 1068w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7-642x420.png 642w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7-741x486.png 741w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-7.png 1332w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>You can also add the desired filters and exceptions as shown above. Now schedule the backups. For this guide, we will allow the backup to run after each hour daily<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"697\" height=\"764\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-8.png\" alt=\"\" class=\"wp-image-137099\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-8.png 697w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-8-274x300.png 274w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-8-383x420.png 383w\" sizes=\"auto, (max-width: 697px) 100vw, 697px\" \/><\/figure>\n\n\n\n<p>Finally, set the limit of individual backup volumes in your storage destination.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"877\" height=\"757\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-9.png\" alt=\"\" class=\"wp-image-137100\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-9.png 877w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-9-300x259.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-9-768x663.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-9-696x601.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-9-487x420.png 487w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-9-534x462.png 534w\" sizes=\"auto, (max-width: 877px) 100vw, 877px\" \/><\/figure>\n\n\n\n<p>Now we have our first backup created.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"987\" height=\"729\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-10.png\" alt=\"\" class=\"wp-image-137101\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-10.png 987w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-10-300x222.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-10-768x567.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-10-696x514.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-10-569x420.png 569w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-10-80x60.png 80w\" sizes=\"auto, (max-width: 987px) 100vw, 987px\" \/><\/figure>\n\n\n\n<p>You can run the backup immediately after configuring it.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"987\" height=\"729\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-11.png\" alt=\"\" class=\"wp-image-137102\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-11.png 987w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-11-300x222.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-11-768x567.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-11-696x514.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-11-569x420.png 569w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-11-80x60.png 80w\" sizes=\"auto, (max-width: 987px) 100vw, 987px\" \/><\/figure>\n\n\n\n<p>Once backed up, you will see the available backups:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"690\" height=\"724\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-12.png\" alt=\"\" class=\"wp-image-137103\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-12.png 690w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-12-286x300.png 286w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-12-400x420.png 400w\" sizes=\"auto, (max-width: 690px) 100vw, 690px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">b. Restore Files using Duplicati<\/h3>\n\n\n\n<p>Another vital thing after taking backups is how to restore them in case anything happens to the original file. To restore backups on Duplicati, navigate to the <strong>Restore<\/strong> tab.<\/p>\n\n\n\n<p>Here there are several options, they include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Direct restore from backup files: Point to your backup files and restore from there<\/li>\n\n\n\n<li>Restore from configuration: Load destination from an exported job or a storage provider<\/li>\n\n\n\n<li>Restore your backup automatically using the available backup<\/li>\n<\/ul>\n\n\n\n<p>For this guide, we will restore automatically from the last backup made.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"475\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13-1024x475.png\" alt=\"\" class=\"wp-image-137104\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13-1024x475.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13-300x139.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13-768x356.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13-1536x712.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13-696x323.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13-1068x495.png 1068w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13-905x420.png 905w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-13.png 1688w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Select the desired files to restore, you can also restore everything.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"567\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-14-1024x567.png\" alt=\"\" class=\"wp-image-137105\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-14-1024x567.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-14-300x166.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-14-768x425.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-14-696x385.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-14-1068x591.png 1068w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-14-759x420.png 759w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-14.png 1384w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Select where you want the files to be restored. Here, we will restore them to their original location.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"567\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-15-1024x567.png\" alt=\"\" class=\"wp-image-137106\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-15-1024x567.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-15-300x166.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-15-768x425.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-15-696x385.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-15-1068x591.png 1068w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-15-759x420.png 759w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-15.png 1384w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Once the restore is complete, you will see this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"399\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16-1024x399.png\" alt=\"\" class=\"wp-image-137107\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16-1024x399.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16-300x117.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16-768x299.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16-1536x598.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16-696x271.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16-1068x416.png 1068w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16-1078x420.png 1078w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-16.png 1553w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">c. Secure Duplicati Web Interface<\/h3>\n\n\n\n<p>To ensure that your backups are safe, you need to secure the web interface. This can be made by navigating to the <strong>settings<\/strong> tab and ensuring that a password is set for the user interface.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"564\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17-1024x564.png\" alt=\"\" class=\"wp-image-137108\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17-1024x564.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17-300x165.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17-768x423.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17-1536x846.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17-696x383.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17-1068x588.png 1068w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17-763x420.png 763w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-17.png 1691w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>You can also configure your other preferences such as the allowed hostnames, theme, hibernation time etc. Once the changes have been made, save them and refresh the page.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"963\" height=\"514\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-18.png\" alt=\"\" class=\"wp-image-137109\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-18.png 963w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-18-300x160.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-18-768x410.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-18-696x371.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2023\/05\/Backup-Linux-Mac-and-Windows-Systems-using-Duplicati-18-787x420.png 787w\" sizes=\"auto, (max-width: 963px) 100vw, 963px\" \/><\/figure>\n\n\n\n<p>Now you need to provide a password to be logged in.<\/p>\n\n\n\n<p><strong><em>Recommended Linux Books&nbsp; to read:<\/em><\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/computingforgeeks.com\/5-best-computer-programming-books-for-beginners\/\" target=\"_blank\" rel=\"noreferrer noopener\">Best Linux Books for Beginners &amp; Experts<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/best-linux-kernel-programming-books\/\" target=\"_blank\" rel=\"noreferrer noopener\">Best Linux Kernel Programming Books<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/free-books-to-learn-linux-bash-scripting\/\" target=\"_blank\" rel=\"noreferrer noopener\">Best Linux Bash Scripting Books<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Final Thoughts<\/h2>\n\n\n\n<p>Today we have learned how to back up Linux, Mac, and Windows Systems using Duplicati. Duplicati can be a very important and versatile backup solution, it provides many useful features for individuals and organizations looking for a secure and reliable backup solution.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/computingforgeeks.com\/backup-rip-blu-ray-with-untouched-quality\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Backup and Rip Blu-ray with 100% Untouched Quality<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/backup-to-s3-sftp-server-using-restic\/\" target=\"_blank\" rel=\"noreferrer noopener\">Backup Linux System to Minio S3 and SFTP using Restic<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/install-bacula-backup-rocky-almalinux\/\" target=\"_blank\" rel=\"noreferrer noopener\">Install and Use Bacula Backup on Rocky Linux 8|AlmaLinux 8<\/a><\/li>\n<\/ul>\n\n","protected":false},"excerpt":{"rendered":"<p>A backup is a process of creating a copy of data or information in case the original data is lost, corrupted, or destroyed. The purpose of creating a backup is to ensure that the data can be restored in case of a disaster or data loss. Backups can be made of any type of digital &#8230; <a title=\"Backup Linux, Mac, and Windows Systems using Duplicati\" class=\"read-more\" href=\"https:\/\/computingforgeeks.com\/backup-linux-mac-windows-systems-using-duplicati\/\" aria-label=\"Read more about Backup Linux, Mac, and Windows Systems using Duplicati\">Read more<\/a><\/p>\n","protected":false},"author":21,"featured_media":137095,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8718,299,50,320,663,90],"tags":[38505],"class_list":["post-137075","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-backup","category-how-to","category-linux-tutorials","category-macos","category-storage","category-windows","tag-duplicati"],"_links":{"self":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/137075","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/comments?post=137075"}],"version-history":[{"count":1,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/137075\/revisions"}],"predecessor-version":[{"id":163380,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/137075\/revisions\/163380"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media\/137095"}],"wp:attachment":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media?parent=137075"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/categories?post=137075"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/tags?post=137075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}