{"id":584,"date":"2024-12-05T02:09:48","date_gmt":"2024-12-04T23:09:48","guid":{"rendered":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/"},"modified":"2024-12-05T02:31:58","modified_gmt":"2024-12-04T23:31:58","slug":"incremental-backups-with-rsync-a-comprehensive-guide","status":"publish","type":"post","link":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/","title":{"rendered":"Incremental Backups with Rsync: A Comprehensive Guide"},"content":{"rendered":"<p><br \/>\n<\/p>\n<p>In today\u2019s digital landscape, data integrity and availability are paramount for individuals and organizations alike. One effective way to ensure your data is safeguarded is through incremental backups. This article will guide you through the process of creating incremental backups using Rsync, a powerful and flexible file transfer utility widely used in Linux environments.<\/p>\n<p><\/p>\n<h2>What are Incremental Backups?<\/h2>\n<p><\/p>\n<p>Incremental backups involve copying only the data that has changed since the last backup. This method reduces the time and storage space required for backups and makes recovery quicker, as it allows you to restore recent changes without the need to process the entire backup history.<\/p>\n<p><\/p>\n<h3>Why Use Rsync for Incremental Backups?<\/h3>\n<p><\/p>\n<p>Rsync stands out as a versatile tool for backup tasks due to its delta-transfer algorithm, which only sends the differences between files, rather than the whole file. This feature makes Rsync especially efficient for incremental backups. Additionally, Rsync offers the following benefits:<\/p>\n<p><\/p>\n<ul><\/p>\n<li><strong>Speed<\/strong>: Only modified files are transferred.<\/li>\n<p><\/p>\n<li><strong>Compression<\/strong>: Saves bandwidth by compressing data during transfer.<\/li>\n<p><\/p>\n<li><strong>Remote Backup<\/strong>: Supports backing up data to remote servers over SSH.<\/li>\n<p><\/p>\n<li><strong>Simplicity<\/strong>: User-friendly command-line interface.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h2>Setting Up Rsync for Incremental Backups<\/h2>\n<p><\/p>\n<p>To get started with Rsync, ensure it is installed on your system. Most Linux distributions come with Rsync by default, but you can install it using the package manager if necessary.<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\"># For Debian\/Ubuntu<br \/>\nsudo apt-get install rsync<br \/>\n<br \/>\n# For CentOS\/RHEL<br \/>\nsudo yum install rsync<\/code><\/pre>\n<p><\/p>\n<h3>Basic Syntax of Rsync<\/h3>\n<p><\/p>\n<p>The basic syntax for an Rsync command is:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">rsync [options] source destination<\/code><\/pre>\n<p><\/p>\n<h3>Example: Initial Backup<\/h3>\n<p><\/p>\n<p>Let\u2019s initiate an initial full backup of a directory to a backup location:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">rsync -av --progress \/path\/to\/source\/ \/path\/to\/destination\/<\/code><\/pre>\n<p><\/p>\n<ul><\/p>\n<li><code>-a<\/code>: Archive mode; it preserves permissions, timestamps, symbolic links, and more.<\/li>\n<p><\/p>\n<li><code>-v<\/code>: Verbose; it provides detailed output of the transfer process.<\/li>\n<p><\/p>\n<li><code>--progress<\/code>: Shows progress during transfer.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h3>Creating Incremental Backups<\/h3>\n<p><\/p>\n<p>Once your initial full backup is complete, creating incremental backups becomes straightforward. You can run the same Rsync command for subsequent backups:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">rsync -av --progress \/path\/to\/source\/ \/path\/to\/destination\/<\/code><\/pre>\n<p><\/p>\n<p>The command will only transfer files that have changed since the last backup, streamlining the backup process.<\/p>\n<p><\/p>\n<h3>Using Rsync with the <code>--link-dest<\/code> Option<\/h3>\n<p><\/p>\n<p>For users who want to save even more space, Rsync offers the <code>--link-dest<\/code> option, which allows you to create hard links to unchanged files from previous backups. This way, all files can appear in each backup directory, while only the changed files take up additional space.<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">rsync -av --link-dest=\/path\/to\/previous_backup\/ \/path\/to\/source\/ \/path\/to\/destination\/<\/code><\/pre>\n<p><\/p>\n<p>This command enables you to maintain multiple snapshots of your files over time without consuming excessive disk space.<\/p>\n<p><\/p>\n<h3>Scheduling Backups with Cron<\/h3>\n<p><\/p>\n<p>To automate your backup process, you can use <code>cron<\/code>, a time-based job scheduler in Unix-like operating systems. <\/p>\n<p><\/p>\n<ol><\/p>\n<li>Open the crontab for editing:<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<pre><code class=\"language-bash\">crontab -e<\/code><\/pre>\n<p><\/p>\n<ol><\/p>\n<li>Add a new cron job for daily incremental backups. For example, to run the backup at 2 AM every day:<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<pre><code class=\"language-bash\">0 2 * * * rsync -av --delete \/path\/to\/source\/ \/path\/to\/destination\/<\/code><\/pre>\n<p><\/p>\n<p>The <code>--delete<\/code> option will remove files in the destination that no longer exist in the source, keeping the backup synchronized.<\/p>\n<p><\/p>\n<h3>Using Rsync Over SSH<\/h3>\n<p><\/p>\n<p>For secure backups to a remote server, you can utilize Rsync over SSH:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">rsync -avz -e ssh \/path\/to\/source\/ user@remote_server:\/path\/to\/destination\/<\/code><\/pre>\n<p><\/p>\n<ul><\/p>\n<li><code>-z<\/code>: Enables compression during transfer.<\/li>\n<p><\/p>\n<li><code>-e ssh<\/code>: Specifies SSH as the transport.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h2>Monitoring and Verifying Backups<\/h2>\n<p><\/p>\n<p>After performing incremental backups, it\u2019s crucial to monitor and verify their integrity. You can list the contents of your backup destination or compare it to the source directory using:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">rsync -av --dry-run \/path\/to\/source\/ \/path\/to\/destination\/<\/code><\/pre>\n<p><\/p>\n<p>The <code>--dry-run<\/code> option will simulate the backup without actually copying any files, allowing you to verify which files would be transferred.<\/p>\n<p><\/p>\n<h2>Conclusion<\/h2>\n<p><\/p>\n<p>Incremental backups using Rsync are an efficient method to secure your data while minimizing resource usage. By following this guide, you can set up a reliable backup system tailored to your needs. Whether backing up locally or to a remote server, Rsync provides the flexibility and efficiency required for effective data management.<\/p>\n<p><\/p>\n<p>For more in-depth insights on various techniques and strategies for backup solutions, check out our other articles on <a href=\"#\">data protection strategies<\/a> and <a href=\"#\">automating backups with scripts<\/a>. If you\u2019re interested in exploring more about Linux utilities, don\u2019t miss our guide on <a href=\"#\">command-line tools every Linux user should know<\/a>.<\/p>\n<p><\/p>\n<h3>References<\/h3>\n<p><\/p>\n<ul><\/p>\n<li>The Linux Documentation Project: Rsync<\/li>\n<p><\/p>\n<li><a href=\"https:\/\/rsync.samba.org\/\">Rsync Official Page<\/a><\/li>\n<p><\/p>\n<li>DigitalOcean Community: How To Use Rsync<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<p>By understanding and implementing these incremental backup techniques with Rsync, you can effectively guard against data loss, ensuring that your valuable information remains safe and easily recoverable.<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>In today\u2019s digital landscape, data integrity and availability are paramount for individuals and organizations alike. One effective way to ensure your data is safeguarded is through incremental backups. This article will guide you through the process of creating incremental backups using Rsync, a powerful and flexible file transfer utility widely used in Linux environments. What [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":585,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[22],"tags":[210,218,233,285,286],"class_list":["post-584","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-security","tag-backups","tag-comprehensive","tag-guide","tag-incremental","tag-rsync","et-has-post-format-content","et_post_format-et-post-format-standard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.5 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Incremental Backups with Rsync: A Comprehensive Guide - WafaTech Blogs<\/title>\n<meta name=\"description\" content=\"Incremental Backups with Rsync: A Comprehensive Guide %\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Incremental Backups with Rsync: A Comprehensive Guide\" \/>\n<meta property=\"og:description\" content=\"Incremental Backups with Rsync: A Comprehensive Guide %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"WafaTech Blogs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-12-04T23:09:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-04T23:31:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"WafaTech SA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:site\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"WafaTech SA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/\"},\"author\":{\"name\":\"WafaTech SA\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\"},\"headline\":\"Incremental Backups with Rsync: A Comprehensive Guide\",\"datePublished\":\"2024-12-04T23:09:48+00:00\",\"dateModified\":\"2024-12-04T23:31:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/\"},\"wordCount\":677,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png\",\"keywords\":[\"Backups\",\"Comprehensive\",\"Guide\",\"Incremental\",\"Rsync\"],\"articleSection\":[\"Linux Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/\",\"name\":\"Incremental Backups with Rsync: A Comprehensive Guide - WafaTech Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png\",\"datePublished\":\"2024-12-04T23:09:48+00:00\",\"dateModified\":\"2024-12-04T23:31:58+00:00\",\"description\":\"Incremental Backups with Rsync: A Comprehensive Guide %\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png\",\"width\":1024,\"height\":1024,\"caption\":\"linux server incremental backups with rsync\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/incremental-backups-with-rsync-a-comprehensive-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Incremental Backups with Rsync: A Comprehensive Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"name\":\"WafaTech Blogs\",\"description\":\"Smart Technologies\",\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"alternateName\":\"WafaTech\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\",\"name\":\"WafaTech Blogs\",\"alternateName\":\"WafaTech\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"width\":2221,\"height\":482,\"caption\":\"WafaTech Blogs\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/WafaTech\\\/61560546351289\\\/\",\"https:\\\/\\\/x.com\\\/wafatech_sa\",\"https:\\\/\\\/www.youtube.com\\\/@wafatech-sa\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wafatech\\\/\"],\"description\":\"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.\",\"email\":\"sales@wafatech.sa\",\"legalName\":\"Al-Wafa Al-Dhakia For Information Technology LLC\",\"foundingDate\":\"2013-01-08\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\",\"name\":\"WafaTech SA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"caption\":\"WafaTech SA\"},\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/author\\\/omer-yaseen\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Incremental Backups with Rsync: A Comprehensive Guide - WafaTech Blogs","description":"Incremental Backups with Rsync: A Comprehensive Guide %","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/","og_locale":"en_US","og_type":"article","og_title":"Incremental Backups with Rsync: A Comprehensive Guide","og_description":"Incremental Backups with Rsync: A Comprehensive Guide %","og_url":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/","og_site_name":"WafaTech Blogs","article_publisher":"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","article_published_time":"2024-12-04T23:09:48+00:00","article_modified_time":"2024-12-04T23:31:58+00:00","og_image":[{"width":1024,"height":1024,"url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png","type":"image\/png"}],"author":"WafaTech SA","twitter_card":"summary_large_image","twitter_creator":"@wafatech_sa","twitter_site":"@wafatech_sa","twitter_misc":{"Written by":"WafaTech SA","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/#article","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/"},"author":{"name":"WafaTech SA","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06"},"headline":"Incremental Backups with Rsync: A Comprehensive Guide","datePublished":"2024-12-04T23:09:48+00:00","dateModified":"2024-12-04T23:31:58+00:00","mainEntityOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/"},"wordCount":677,"commentCount":0,"publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png","keywords":["Backups","Comprehensive","Guide","Incremental","Rsync"],"articleSection":["Linux Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/","url":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/","name":"Incremental Backups with Rsync: A Comprehensive Guide - WafaTech Blogs","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/#primaryimage"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png","datePublished":"2024-12-04T23:09:48+00:00","dateModified":"2024-12-04T23:31:58+00:00","description":"Incremental Backups with Rsync: A Comprehensive Guide %","breadcrumb":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/#primaryimage","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png","width":1024,"height":1024,"caption":"linux server incremental backups with rsync"},{"@type":"BreadcrumbList","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/incremental-backups-with-rsync-a-comprehensive-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wafatech.sa\/blog\/"},{"@type":"ListItem","position":2,"name":"Incremental Backups with Rsync: A Comprehensive Guide"}]},{"@type":"WebSite","@id":"https:\/\/wafatech.sa\/blog\/#website","url":"https:\/\/wafatech.sa\/blog\/","name":"WafaTech Blogs","description":"Smart Technologies","publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"alternateName":"WafaTech","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wafatech.sa\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wafatech.sa\/blog\/#organization","name":"WafaTech Blogs","alternateName":"WafaTech","url":"https:\/\/wafatech.sa\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","width":2221,"height":482,"caption":"WafaTech Blogs"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","https:\/\/x.com\/wafatech_sa","https:\/\/www.youtube.com\/@wafatech-sa","https:\/\/www.linkedin.com\/company\/wafatech\/"],"description":"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.","email":"sales@wafatech.sa","legalName":"Al-Wafa Al-Dhakia For Information Technology LLC","foundingDate":"2013-01-08","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06","name":"WafaTech SA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","caption":"WafaTech SA"},"url":"https:\/\/wafatech.sa\/blog\/author\/omer-yaseen\/"}]}},"jetpack_featured_media_url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/12\/Incremental-Backups-with-Rsync-A-Comprehensive-Guide.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/584","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/comments?post=584"}],"version-history":[{"count":3,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/584\/revisions"}],"predecessor-version":[{"id":596,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/584\/revisions\/596"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media\/585"}],"wp:attachment":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media?parent=584"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/categories?post=584"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/tags?post=584"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}