{"id":2840,"date":"2025-05-19T23:16:15","date_gmt":"2025-05-19T23:16:15","guid":{"rendered":"https:\/\/fadyanwar.com\/?p=2840"},"modified":"2025-05-19T23:16:18","modified_gmt":"2025-05-19T23:16:18","slug":"how-to-mount-azure-files-on-linux-and-sync-data-with-rsync","status":"publish","type":"post","link":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/","title":{"rendered":"How to Mount Azure Files on Linux and Sync Data with Rsync"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p>Microsoft Azure Files provides cloud-based SMB\/NFS file shares that can be integrated with Linux systems. This guide covers mounting Azure Files on Ubuntu using SMB\/CIFS, automating sync with rsync for backups, and troubleshooting common issues.<\/p>\n\n\n\n<p>Prerequisites:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An Azure Storage Account with a file share created<\/li>\n\n\n\n<li>A Linux machine (tested on Ubuntu\/Debian)<\/li>\n\n\n\n<li>cifs-utils package for SMB mounting<\/li>\n<\/ul>\n\n\n\n<p>First, install the required tools by running:<br>sudo apt update &amp;&amp; sudo apt install cifs-utils -y<\/p>\n\n\n\n<p>Next, securely store your Azure credentials by creating a file at \/etc\/smbcredentials\/azure.cred with these contents:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>username=yourstorageaccount\npassword=your-access-key<\/code><\/pre>\n\n\n\n<p>Set proper permissions on the credentials file:<br>sudo chmod 600 \/etc\/smbcredentials\/azure.cred<\/p>\n\n\n\n<p>Create a mount point directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir -p \/media\/azure-backup<\/code><\/pre>\n\n\n\n<p>Mount the Azure file share using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mount -t cifs \/\/yourstorage.file.core.windows.net\/sharename \/media\/azure-backup -o vers=3.0,credentials=\/etc\/smbcredentials\/azure.cred,uid=(id\u2212u),gid=(id\u2212u),gid=(id -g),dir_mode=0755,file_mode=0755<\/code><\/pre>\n\n\n\n<p>To make the mount persistent across reboots, add this line to \/etc\/fstab:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/yourstorage.file.core.windows.net\/sharename \/media\/azure-backup cifs vers=3.0,credentials=\/etc\/smbcredentials\/azure.cred,uid=1000,gid=1000,dir_mode=0755,file_mode=0755 0 0<\/code><\/pre>\n\n\n\n<p>Verify the fstab entry works with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mount -a<\/code><\/pre>\n\n\n\n<p>For syncing data with rsync, first test with a dry run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rsync -avzh --dry-run --progress \/local\/data\/ \/media\/azure-backup\/<\/code><\/pre>\n\n\n\n<p>When ready, perform the actual sync:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rsync -avzh --progress \/local\/data\/ \/media\/azure-backup\/<\/code><\/pre>\n\n\n\n<p>To exclude certain files from syncing:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>rsync -avzh --exclude='*.tmp' --exclude='temp\/' \/local\/data\/ \/media\/azure-backup\/<\/code><\/pre>\n\n\n\n<p>For automated daily syncs, edit crontab with crontab -e and add:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>0 3 * * * rsync -avzh --delete \/local\/data\/ \/media\/azure-backup\/ >> \/var\/log\/azure-sync.log 2>&amp;1<\/code><\/pre>\n\n\n\n<p><strong>Note on the <code>--delete<\/code> Flag:<\/strong> The rsync commands in this guide intentionally omit the <code>--delete<\/code> flag, which means files deleted from your local drive will <em>not<\/em> be automatically removed from your Azure backup. This is a safer default for most backup scenarios, as it prevents accidental data loss if files are deleted locally. However, be aware that over time this may lead to increased storage usage in Azure, as obsolete files accumulate. If you prefer a true mirror where the backup exactly matches your local drive (including deletions), you can add <code>--delete<\/code> to the rsync command. For example: <code>rsync -avzh --progress --delete \/local\/data\/ \/media\/azure-backup\/<\/code>. Always test with <code>--dry-run<\/code> first when using <code>--delete<\/code> to verify which files would be removed. For long-term backup strategies, consider combining approaches &#8211; perhaps maintaining multiple backup sets with some that prune deleted files and others that preserve all versions indefinitely.<\/p>\n\n\n\n<p>Common troubleshooting solutions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&#8220;No route to host&#8221;: Check Azure Firewall allows port 445<\/li>\n\n\n\n<li>&#8220;Permission denied&#8221;: Remount with proper uid\/gid parameters<\/li>\n\n\n\n<li>Slow transfers: Use &#8211;bwlimit=5000 or switch to AzCopy<\/li>\n\n\n\n<li>Rsync failures: Use &#8211;partial flag to resume interrupted transfers<\/li>\n\n\n\n<li>Unmount issues: Use lsof +D \/media\/azure-backup or umount -l<\/li>\n<\/ul>\n\n\n\n<p>Alternative methods include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Azure Storage Explorer for GUI operations<\/li>\n\n\n\n<li>AzCopy for large datasets:<br>azcopy copy &#8220;\/local\/data&#8221; &#8220;<a href=\"https:\/\/yourstorage.file.core.windows.net\/sharename?sv=\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/yourstorage.file.core.windows.net\/sharename?sv=<\/a>&#8230;&#8221; &#8211;recursive<\/li>\n<\/ul>\n\n\n\n<p>This configuration creates a reliable cloud backup solution by combining Azure Files with Linux tools. Always verify with dry runs first, monitor logs, and consider AzCopy for large transfers. For enterprise use, explore Azure Private Link for enhanced security or NFS options for Linux-centric workflows.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Microsoft Azure Files provides cloud-based SMB\/NFS file shares that can be integrated with Linux systems. This guide covers mounting Azure Files on Ubuntu using SMB\/CIFS, automating sync with rsync for backups, and troubleshooting common issues. Prerequisites: First, install the required tools by running:sudo apt update &amp;&amp; sudo apt install cifs-utils -y Next, securely store your [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2846,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_editorskit_title_hidden":false,"_editorskit_reading_time":0,"_editorskit_is_block_options_detached":false,"_editorskit_block_options_position":"{}","_vp_format_video_url":"","_vp_image_focal_point":[],"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2840","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Mount Azure Files on Linux and Sync Data with Rsync - Fady Anwar<\/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:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Mount Azure Files on Linux and Sync Data with Rsync - Fady Anwar\" \/>\n<meta property=\"og:description\" content=\"Microsoft Azure Files provides cloud-based SMB\/NFS file shares that can be integrated with Linux systems. This guide covers mounting Azure Files on Ubuntu using SMB\/CIFS, automating sync with rsync for backups, and troubleshooting common issues. Prerequisites: First, install the required tools by running:sudo apt update &amp;&amp; sudo apt install cifs-utils -y Next, securely store your [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/\" \/>\n<meta property=\"og:site_name\" content=\"Fady Anwar\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-19T23:16:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-19T23:16:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/05\/ChatGPT-Image-May-20-2025-12_14_18-AM-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Fady Anwar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:site\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fady Anwar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/\"},\"author\":{\"name\":\"Fady Anwar\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"headline\":\"How to Mount Azure Files on Linux and Sync Data with Rsync\",\"datePublished\":\"2025-05-19T23:16:15+00:00\",\"dateModified\":\"2025-05-19T23:16:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/\"},\"wordCount\":435,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1\",\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/\",\"name\":\"How to Mount Azure Files on Linux and Sync Data with Rsync - Fady Anwar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1\",\"datePublished\":\"2025-05-19T23:16:15+00:00\",\"dateModified\":\"2025-05-19T23:16:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/05\\\/19\\\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/fadyanwar.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Mount Azure Files on Linux and Sync Data with Rsync\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/\",\"name\":\"Fady Anwar\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/fadyanwar.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\",\"name\":\"Fady Anwar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"caption\":\"Fady Anwar\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Mount Azure Files on Linux and Sync Data with Rsync - Fady Anwar","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:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/","og_locale":"en_US","og_type":"article","og_title":"How to Mount Azure Files on Linux and Sync Data with Rsync - Fady Anwar","og_description":"Microsoft Azure Files provides cloud-based SMB\/NFS file shares that can be integrated with Linux systems. This guide covers mounting Azure Files on Ubuntu using SMB\/CIFS, automating sync with rsync for backups, and troubleshooting common issues. Prerequisites: First, install the required tools by running:sudo apt update &amp;&amp; sudo apt install cifs-utils -y Next, securely store your [&hellip;]","og_url":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/","og_site_name":"Fady Anwar","article_published_time":"2025-05-19T23:16:15+00:00","article_modified_time":"2025-05-19T23:16:18+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/05\/ChatGPT-Image-May-20-2025-12_14_18-AM-1024x683.png","type":"image\/png"}],"author":"Fady Anwar","twitter_card":"summary_large_image","twitter_creator":"@fadyanwar","twitter_site":"@fadyanwar","twitter_misc":{"Written by":"Fady Anwar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/#article","isPartOf":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/"},"author":{"name":"Fady Anwar","@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"headline":"How to Mount Azure Files on Linux and Sync Data with Rsync","datePublished":"2025-05-19T23:16:15+00:00","dateModified":"2025-05-19T23:16:18+00:00","mainEntityOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/"},"wordCount":435,"commentCount":0,"publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/05\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1","articleSection":["Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/","url":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/","name":"How to Mount Azure Files on Linux and Sync Data with Rsync - Fady Anwar","isPartOf":{"@id":"https:\/\/fadyanwar.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/#primaryimage"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/05\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1","datePublished":"2025-05-19T23:16:15+00:00","dateModified":"2025-05-19T23:16:18+00:00","breadcrumb":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/#primaryimage","url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/05\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1","contentUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/05\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fadyanwar.com\/"},{"@type":"ListItem","position":2,"name":"How to Mount Azure Files on Linux and Sync Data with Rsync"}]},{"@type":"WebSite","@id":"https:\/\/fadyanwar.com\/#website","url":"https:\/\/fadyanwar.com\/","name":"Fady Anwar","description":"","publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fadyanwar.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03","name":"Fady Anwar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","caption":"Fady Anwar"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/05\/ChatGPT-Image-May-20-2025-12_14_18-AM.png?fit=1536%2C1024&ssl=1","jetpack_sharing_enabled":true,"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2840","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/comments?post=2840"}],"version-history":[{"count":5,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2840\/revisions"}],"predecessor-version":[{"id":2845,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2840\/revisions\/2845"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media\/2846"}],"wp:attachment":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media?parent=2840"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/categories?post=2840"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/tags?post=2840"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}