{"id":2371,"date":"2025-05-31T22:35:00","date_gmt":"2025-05-31T14:35:00","guid":{"rendered":"https:\/\/ichwanchandra.com\/blog\/?p=2371"},"modified":"2026-07-17T14:55:25","modified_gmt":"2026-07-17T06:55:25","slug":"configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync","status":"publish","type":"post","link":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/","title":{"rendered":"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Data loss remains one of the most critical risks for IT professionals, developers, and home-lab enthusiasts alike. While cloud solutions exist, nothing beats the control, speed, and privacy of backing up directly to your own Network Attached Storage (NAS). This guide walks you through a step-by-step process to configure rsync-based backups from our Ubuntu machine to our ASUSTOR NAS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Key Takeaways<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Reliable, Native Tooling:<\/strong> Leverage <code>rsync<\/code>, a fast, widely-used Linux utility for efficient file synchronization.<\/li>\n\n\n\n<li><strong>NAS as a Backup Server:<\/strong> Configure your ASUSTOR NAS as an rsync-compatible backup server, pulling data from your Ubuntu machine.<\/li>\n\n\n\n<li><strong>Incremental &amp; Secure:<\/strong> Enable archive mode for block-level incremental backups, compress data to save bandwidth, and password-protect the transfer.<\/li>\n\n\n\n<li><strong>Automation Ready:<\/strong> Schedule regular backups using ASUSTOR\u2019s Backup &amp; Restore app, or use command-line scripts for full control.<\/li>\n\n\n\n<li><strong>Metadata Preservation:<\/strong> Keep critical file attributes like permissions, ownership, and timestamps intact during backup.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step-by-Step Guide: Back Up Ubuntu to ASUSTOR NAS<\/strong><\/h2>\n\n\n\n<p>Based on ASUSTOR\u2019s official knowledge base (updated December 2025), the core method involves enabling the rsync daemon on your Ubuntu machine, then creating a remote sync job on the NAS. Below is the modern, secure approach for current Ubuntu releases (20.04 LTS and later).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Part 1: Prepare Your Ubuntu Machine (Rsync Server)<\/strong><\/h3>\n\n\n\n<p>Modern Ubuntu uses <code>systemd<\/code>, so the init script method mentioned in older guides is replaced by a service configuration. Follow these updated steps:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Install rsync (if not present):<\/strong>bashsudo apt update sudo apt install rsync<\/li>\n\n\n\n<li><strong>Create the main configuration file:<\/strong>bashsudo nano \/etc\/rsyncd.confPaste the following template, adjusting paths and IPs:iniuid = your_username gid = your_username address = 0.0.0.0 port = 873 hosts allow = 192.168.1.0\/24 # Your local network range max connections = 5 [ubuntu_backup] path = \/home\/your_username\/important_data comment = Backup from Ubuntu read only = yes auth users = backup_user secrets file = \/etc\/rsyncd.secrets<\/li>\n\n\n\n<li><strong>Create the secrets file (store credentials):<\/strong>bashsudo nano \/etc\/rsyncd.secretsFormat: <code>username:password<\/code> (e.g., <code>backup_user:SecurePass123<\/code>)<br>Set strict permissions: <code>sudo chmod 600 \/etc\/rsyncd.secrets<\/code><\/li>\n\n\n\n<li><strong>Enable and start the rsync daemon:<\/strong>bashsudo systemctl enable rsync sudo systemctl start rsyncVerify with: <code>sudo systemctl status rsync<\/code><\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Part 2: Configure the ASUSTOR NAS to Pull the Backup<\/strong><\/h3>\n\n\n\n<p>Now, log into your ASUSTOR NAS\u2019s ADM (ASUSTOR Data Master) interface.<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Navigate to <strong>Backup &amp; Restore<\/strong> &gt; <strong>Remote Sync<\/strong>.<\/li>\n\n\n\n<li><strong>Create a new backup job:<\/strong>\n<ul class=\"wp-block-list\">\n<li>Click <strong>Create<\/strong> &gt; <strong>Remote Sync job<\/strong>.<\/li>\n\n\n\n<li><strong>Server type:<\/strong> Select <code>Rsync-compatible server<\/code>.<\/li>\n\n\n\n<li><strong>Transfer mode:<\/strong> Choose <code>Remote server -&gt; Your NAS<\/code> (you are <em>pulling<\/em> from Ubuntu).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Enter Ubuntu server details:<\/strong>\n<ul class=\"wp-block-list\">\n<li><strong>Server IP:<\/strong> <code>172.16.12.235<\/code> (your Ubuntu machine\u2019s IP)<\/li>\n\n\n\n<li><strong>Port:<\/strong> <code>873<\/code><\/li>\n\n\n\n<li><strong>Module:<\/strong> <code>ubuntu_backup<\/code> (the name inside <code>[brackets]<\/code> in your rsyncd.conf)<\/li>\n\n\n\n<li><strong>Username &amp; Password:<\/strong> Use <code>backup_user<\/code> and password from the <code>rsyncd.secrets<\/code> file.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Set source (Ubuntu) and destination (NAS) folders:<\/strong>\n<ul class=\"wp-block-list\">\n<li><strong>Source:<\/strong> Corresponds to the <code>path<\/code> defined in rsyncd.conf (e.g., <code>\/home\/your_username\/important_data<\/code>).<\/li>\n\n\n\n<li><strong>Destination:<\/strong> Choose or create a shared folder on the NAS (e.g., <code>\/Backups\/Ubuntu_Workstation<\/code>).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Configure advanced options (critical for efficiency):<\/strong>\n<ul class=\"wp-block-list\">\n<li>\u2705 <strong>Archive mode (incremental backup):<\/strong> <em>Strongly recommended.<\/em> Only changed blocks of files are transferred after the first full backup.<\/li>\n\n\n\n<li>\u2705 <strong>Compress data during transfer:<\/strong> Reduces network load, ideal for large files.<\/li>\n\n\n\n<li>\u2705 <strong>Keep file metadata:<\/strong> Preserves permissions, ownership, and timestamps.<\/li>\n\n\n\n<li>\u2610 <strong>Support sparse files:<\/strong> Only enable if backing up VM disk images or database files.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Schedule the backup:<\/strong> Choose periodic (daily, weekly) or manual. For production systems, a <strong>daily incremental backup<\/strong> is standard.<\/li>\n\n\n\n<li><strong>Finalize:<\/strong> Name the job (e.g., &#8220;Ubuntu_Work_Backup&#8221;) and finish. The NAS will now honor the schedule.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Alternative Method: Command-Line Push from Ubuntu<\/strong><\/h3>\n\n\n\n<p>If you prefer initiating backups from Ubuntu using a script or cron job, ASUSTOR\u2019s guide also provides an example:<\/p>\n\n\n\n<p>bash<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">rsync -av \/home\/your_username\/Documents\/ rsync:\/\/backup_user@172.16.13.2:873\/ubuntu_backup\/<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Flags:<\/strong> <code>-a<\/code> (archive, preserves metadata), <code>-v<\/code> (verbose).<\/li>\n\n\n\n<li><strong>Authentication:<\/strong> The rsync client will prompt for the password defined in <code>\/etc\/rsyncd.secrets<\/code>. You can automate this using the <code>--password-file<\/code> option (secure permissions required).<\/li>\n<\/ul>\n\n\n\n<p>To schedule this, add the command to a cron job (<code>crontab -e<\/code>), for example, daily at 2 AM:<\/p>\n\n\n\n<p>cron<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">0 2 * * * rsync -av \/home\/your_username\/ rsync:\/\/backup_user@172.16.13.2:873\/ubuntu_backup\/ --password-file=\/etc\/rsync_pass<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Troubleshooting &amp; Best Practices<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Firewall:<\/strong> Ensure port 873 (TCP) is open on your Ubuntu machine: <code>sudo ufw allow from 192.168.1.0\/24 to any port 873 proto tcp<\/code><\/li>\n\n\n\n<li><strong>Permissions:<\/strong> The <code>rsyncd.conf<\/code> <code>uid\/gid<\/code> must have read access to the source directories.<\/li>\n\n\n\n<li><strong>Test First:<\/strong> Run the remote sync job manually from ADM without schedule to verify credentials and connectivity.<\/li>\n\n\n\n<li><strong>Monitor Space:<\/strong> Enable NAS email alerts to avoid filling the backup volume.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>Integrating Ubuntu backups with an ASUSTOR NAS using rsync provides a professional, efficient, and secure solution. By following this guide, you leverage:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Reliability<\/strong> of a time-tested Linux tool.<\/li>\n\n\n\n<li><strong>Efficiency<\/strong> via incremental block-level backups and compression.<\/li>\n\n\n\n<li><strong>Control<\/strong> through on-NAS scheduling or client-side cron jobs.<\/li>\n\n\n\n<li><strong>Integrity<\/strong> with full metadata preservation.<\/li>\n<\/ul>\n\n\n\n<p>Whether you\u2019re protecting a developer workstation, a home media server, or a small business file share, this setup ensures your data resides safely on your own hardware, accessible instantly. Implement these steps today, and eliminate the \u201cwhat if\u201d from your data management strategy. For further reading, explore ASUSTOR\u2019s Backup &amp; Restore documentation and the <code>man rsync<\/code> page for advanced tuning. Your future self\u2014with intact files\u2014will thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Data loss remains one of the most critical risks for IT professionals, developers, and home-lab enthusiasts alike. While cloud solutions exist, nothing beats the control, speed, and privacy of backing up directly to your own Network Attached Storage (NAS).<\/p>\n","protected":false},"author":1,"featured_media":2442,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[59,8],"tags":[],"class_list":["post-2371","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hardware","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer - Ichwan Chandra<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer - Ichwan Chandra\" \/>\n<meta property=\"og:description\" content=\"Data loss remains one of the most critical risks for IT professionals, developers, and home-lab enthusiasts alike. While cloud solutions exist, nothing beats the control, speed, and privacy of backing up directly to your own Network Attached Storage (NAS).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/\" \/>\n<meta property=\"og:site_name\" content=\"Ichwan Chandra\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-31T14:35:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-17T06:55:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2025\/05\/ubuntu-rsync-asustor-nas.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1408\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ichwan Chandra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ichwan Chandra\" \/>\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\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/\"},\"author\":{\"name\":\"Ichwan Chandra\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#\\\/schema\\\/person\\\/2fa69a7a1008a3369584752194b063d5\"},\"headline\":\"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer\",\"datePublished\":\"2025-05-31T14:35:00+00:00\",\"dateModified\":\"2026-07-17T06:55:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/\"},\"wordCount\":780,\"image\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/ubuntu-rsync-asustor-nas.png\",\"articleSection\":[\"Hardware\",\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/\",\"url\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/\",\"name\":\"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer - Ichwan Chandra\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/ubuntu-rsync-asustor-nas.png\",\"datePublished\":\"2025-05-31T14:35:00+00:00\",\"dateModified\":\"2026-07-17T06:55:25+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#\\\/schema\\\/person\\\/2fa69a7a1008a3369584752194b063d5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/#primaryimage\",\"url\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/ubuntu-rsync-asustor-nas.png\",\"contentUrl\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/ubuntu-rsync-asustor-nas.png\",\"width\":1408,\"height\":768,\"caption\":\"Ubuntu Backup to Asustor NAS via Rsync\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/\",\"name\":\"Ichwan Chandra\",\"description\":\"In a lifelong learning mode\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/#\\\/schema\\\/person\\\/2fa69a7a1008a3369584752194b063d5\",\"name\":\"Ichwan Chandra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g\",\"caption\":\"Ichwan Chandra\"},\"sameAs\":[\"https:\\\/\\\/ichwanchandra.com\\\/blog\"],\"url\":\"https:\\\/\\\/ichwanchandra.com\\\/blog\\\/author\\\/isuchan193\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer - Ichwan Chandra","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:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/","og_locale":"en_US","og_type":"article","og_title":"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer - Ichwan Chandra","og_description":"Data loss remains one of the most critical risks for IT professionals, developers, and home-lab enthusiasts alike. While cloud solutions exist, nothing beats the control, speed, and privacy of backing up directly to your own Network Attached Storage (NAS).","og_url":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/","og_site_name":"Ichwan Chandra","article_published_time":"2025-05-31T14:35:00+00:00","article_modified_time":"2026-07-17T06:55:25+00:00","og_image":[{"width":1408,"height":768,"url":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2025\/05\/ubuntu-rsync-asustor-nas.png","type":"image\/png"}],"author":"Ichwan Chandra","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ichwan Chandra","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/#article","isPartOf":{"@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/"},"author":{"name":"Ichwan Chandra","@id":"https:\/\/ichwanchandra.com\/blog\/#\/schema\/person\/2fa69a7a1008a3369584752194b063d5"},"headline":"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer","datePublished":"2025-05-31T14:35:00+00:00","dateModified":"2026-07-17T06:55:25+00:00","mainEntityOfPage":{"@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/"},"wordCount":780,"image":{"@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/#primaryimage"},"thumbnailUrl":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2025\/05\/ubuntu-rsync-asustor-nas.png","articleSection":["Hardware","Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/","url":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/","name":"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer - Ichwan Chandra","isPartOf":{"@id":"https:\/\/ichwanchandra.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/#primaryimage"},"image":{"@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/#primaryimage"},"thumbnailUrl":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2025\/05\/ubuntu-rsync-asustor-nas.png","datePublished":"2025-05-31T14:35:00+00:00","dateModified":"2026-07-17T06:55:25+00:00","author":{"@id":"https:\/\/ichwanchandra.com\/blog\/#\/schema\/person\/2fa69a7a1008a3369584752194b063d5"},"breadcrumb":{"@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/#primaryimage","url":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2025\/05\/ubuntu-rsync-asustor-nas.png","contentUrl":"https:\/\/ichwanchandra.com\/blog\/wp-content\/uploads\/2025\/05\/ubuntu-rsync-asustor-nas.png","width":1408,"height":768,"caption":"Ubuntu Backup to Asustor NAS via Rsync"},{"@type":"BreadcrumbList","@id":"https:\/\/ichwanchandra.com\/blog\/configure-backup-from-linux-ubuntu-to-asustor-nas-via-rsync\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ichwanchandra.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Seamless Ubuntu to NAS Backups: A Guide to Rsync-Based Data Transfer"}]},{"@type":"WebSite","@id":"https:\/\/ichwanchandra.com\/blog\/#website","url":"https:\/\/ichwanchandra.com\/blog\/","name":"Ichwan Chandra","description":"In a lifelong learning mode","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ichwanchandra.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/ichwanchandra.com\/blog\/#\/schema\/person\/2fa69a7a1008a3369584752194b063d5","name":"Ichwan Chandra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d8d64c76e361108ee058442df7c49c539eefd1d1e5a3e8dbcc9d70289e0bbf2?s=96&d=retro&r=g","caption":"Ichwan Chandra"},"sameAs":["https:\/\/ichwanchandra.com\/blog"],"url":"https:\/\/ichwanchandra.com\/blog\/author\/isuchan193\/"}]}},"_links":{"self":[{"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/posts\/2371","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/comments?post=2371"}],"version-history":[{"count":8,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/posts\/2371\/revisions"}],"predecessor-version":[{"id":2430,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/posts\/2371\/revisions\/2430"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/media\/2442"}],"wp:attachment":[{"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/media?parent=2371"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/categories?post=2371"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ichwanchandra.com\/blog\/wp-json\/wp\/v2\/tags?post=2371"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}