{"id":6830,"date":"2022-08-12T23:22:54","date_gmt":"2022-08-12T17:52:54","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=6830"},"modified":"2022-08-12T23:22:58","modified_gmt":"2022-08-12T17:52:58","slug":"how-to-mount-amazon-s3-bucket-as-a-drive","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/","title":{"rendered":"How to Mount Amazon S3 bucket as a Drive\u00a0"},"content":{"rendered":"\n<p><strong>Mounting Amazon S3 Cloud Storage in Windows<\/strong>:<\/p>\n\n\n\n<p>Open Windows PowerShell as Administrator.<\/p>\n\n\n\n<p>Create the directory to download and store&nbsp;<em>rclone<\/em>&nbsp;files:<\/p>\n\n\n\n<p><strong>mkdir c:\\rclone<\/strong><\/p>\n\n\n\n<p>Go to the created directory:<\/p>\n\n\n\n<p><strong>cd c:\\rclone<\/strong><\/p>\n\n\n\n<p>Download&nbsp;<em>rclone<\/em>&nbsp;by using the direct link mentioned above:<\/p>\n\n\n\n<p><strong>Invoke-WebRequest -Uri &#8220;https:\/\/downloads.rclone.org\/v1.51.0\/rclone-v1.51.0-windows-amd64.zip&#8221; -OutFile &#8220;c:\\rclone\\rclone.zip&#8221;<\/strong><\/p>\n\n\n\n<p>Extract files from the downloaded archive:<\/p>\n\n\n\n<p><strong>Expand-Archive -path &#8216;c:\\rclone\\rclone.zip&#8217; -destinationpath &#8216;.\\&#8217;<\/strong><\/p>\n\n\n\n<p>Check the contents of the directory:<\/p>\n\n\n\n<p><strong>dir<\/strong><\/p>\n\n\n\n<p>Copy the extracted files to&nbsp;<em>C:\\rclone\\<\/em>&nbsp;to avoid dots in the directory name:<\/p>\n\n\n\n<p><strong>cp C:\\rclone\\rclone-v1.51.0-windows-amd64\\*.* C:\\rclone\\<\/strong><\/p>\n\n\n\n<p>Run&nbsp;<em>rclone<\/em>&nbsp;in the configuring mode:<\/p>\n\n\n\n<p><strong>.\\rclone.exe config<\/strong><\/p>\n\n\n\n<p>The configurator is working as a wizard in the command line mode. Select the needed parameters at each step of the wizard.<\/p>\n\n\n\n<p>Type&nbsp;<strong>n<\/strong>&nbsp;and press&nbsp;<strong>Enter<\/strong>&nbsp;to select the&nbsp;<em>New remote option<\/em>.<\/p>\n\n\n\n<p><em>n\/s\/q&gt;&nbsp;<strong>n<\/strong><\/em><\/p>\n\n\n\n<p>Enter the name of your S3 bucket:<\/p>\n\n\n\n<p><em>name&gt;&nbsp;<strong>b<\/strong><\/em>ucket-name<\/p>\n\n\n\n<p>Select the type of cloud storage to configure. Type&nbsp;<strong>4<\/strong>&nbsp;to select Amazon S3 cloud storage.<\/p>\n\n\n\n<p><em>Storage&gt;&nbsp;<strong>4<\/strong><\/em><\/p>\n\n\n\n<p>Choose your S3 provider. Type&nbsp;<strong>1<\/strong>&nbsp;to select Amazon Web Services S3.<\/p>\n\n\n\n<p><em>provider&gt;&nbsp;<strong>1<\/strong><\/em><\/p>\n\n\n\n<p>Get AWS credentials from runtime (true or false).&nbsp;<strong>1<\/strong>&nbsp;(false) is used by default. Press&nbsp;<strong>Enter<\/strong>&nbsp;without typing anything to use the default value.<\/p>\n\n\n\n<p><em>env_auth&gt;&nbsp;<strong>1<\/strong><\/em><\/p>\n\n\n\n<p>Enter your AWS access key:<\/p>\n\n\n\n<p><em>access_key_id&gt;&nbsp;<\/em>xxxxxxxxxxxxxxxxxxxxx<\/p>\n\n\n\n<p>Enter your secret access key:<\/p>\n\n\n\n<p><em>secret_access_key&gt;&nbsp;xxxxxxxxxxxxxx<\/em><\/p>\n\n\n\n<p>Region to connect to Mumbai(ap-south-1)&nbsp;is used for our bucket in this example and we should type<strong>14<\/strong>.<\/p>\n\n\n\n<p><em>region&gt;&nbsp;<\/em>14<\/p>\n\n\n\n<p>Endpoint for S3 API. Leave blank if using AWS to use the default endpoint for the region. Press&nbsp;<strong>Enter<\/strong>.<\/p>\n\n\n\n<p><em>Endpoint&gt;<\/em><\/p>\n\n\n\n<p>Location constraint must be set to match the Region. Type<strong> 14<\/strong>&nbsp;to select the&nbsp;<em>Mumbai(ap-south-1))<\/em>.<\/p>\n\n\n\n<p><em>location_constraint&gt;&nbsp;<\/em>14<\/p>\n\n\n\n<p>Canned ACL used when creating buckets and storing or copying objects. Press&nbsp;<strong>Enter<\/strong>&nbsp;to use the default parameters.<\/p>\n\n\n\n<p><em>acl&gt;<\/em><\/p>\n\n\n\n<p>Select the storage class to use when storing new objects in S3. Enter a string value. The standard storage class option (<strong>2<\/strong>) is suitable in our case.<\/p>\n\n\n\n<p><em>storage_class&gt;&nbsp;<strong>2<\/strong><\/em><\/p>\n\n\n\n<p>Edit advanced config? (y\/n)<\/p>\n\n\n\n<p><em>y\/n&gt;&nbsp;<strong>n<\/strong><\/em><\/p>\n\n\n\n<p>Check your configuration and type&nbsp;<strong>y<\/strong>&nbsp;(yes) if everything is correct.<\/p>\n\n\n\n<p><em>t\/e\/d&gt;&nbsp;<strong>y<\/strong><\/em><\/p>\n\n\n\n<p>Type&nbsp;<strong>q<\/strong>&nbsp;to quit the configuration wizard.<\/p>\n\n\n\n<p><em>e\/n\/d\/r\/c\/s\/q&gt;&nbsp;<strong>q<\/strong><\/em><\/p>\n\n\n\n<p><em>Rclone<\/em>&nbsp;is now configured to work with Amazon S3 cloud storage. Make sure you have the correct date and time settings on your Windows machine. Otherwise an error can occur when mounting an S3 bucket <\/p>\n\n\n\n<p>Run&nbsp;<em>rclone<\/em>&nbsp;in the directory where&nbsp;<strong>rclone.exe<\/strong>&nbsp;is located and list buckets available for your AWS account:<\/p>\n\n\n\n<p><strong>.\\rclone.exe lsd bucket-name:<\/strong><\/p>\n\n\n\n<p>Y<\/p>\n\n\n\n<p>you can enter&nbsp;<strong>c:\\rclone<\/strong>&nbsp;to the&nbsp;<strong>Path<\/strong>&nbsp;environment variable. It allows you to run&nbsp;<em>rclone<\/em>&nbsp;from any directory without switching to the directory where rclone.exe is stored.<\/p>\n\n\n\n<p>Install&nbsp;<em>Chocolately<\/em>, which is a Windows package manager that can be used to install applications from online repositories:<\/p>\n\n\n\n<p><strong>Set-ExecutionPolicy Bypass -Scope Process -Force; `<\/strong><\/p>\n\n\n\n<p><strong>&nbsp; iex ((New-Object System.Net.WebClient).DownloadString(&#8216;https:\/\/chocolatey.org\/install.ps1&#8217;))<\/strong><\/p>\n\n\n\n<p>WinFSP (Windows File System Proxy) is the Windows analog of the Linux FUSE and it is fast, stable and allows you to create user mode file systems.<\/p>\n\n\n\n<p>Install WinFSP from Chocolatey repositories:<\/p>\n\n\n\n<p><strong>choco install winfsp -y<\/strong><\/p>\n\n\n\n<p>Now you can mount your Amazon S3 bucket to your Windows system as a network drive. Let\u2019s mount the&nbsp;<em>b<\/em>ucket-name&nbsp;as&nbsp;<em>S:<\/em><\/p>\n\n\n\n<p><strong>.\\rclone mount bucket-name:bucket-name\/ S: &#8211;vfs-cache-mode full<\/strong><\/p>\n\n\n\n<p>Where the first &#8220;bucket-name\u201d is the bucket name entered in the first step of the rclone configuration wizard and the second \u201cbucket-name\u201d that is defined after \u201c:\u201d is the Amazon S3 bucket name set in the AWS web interface.<\/p>\n\n\n\n<p>List all connected disks and partitions:<\/p>\n\n\n\n<p><strong>gdr -PSProvider &#8216;FileSystem&#8217;<\/strong><\/p>\n\n\n\n<p>Check the content of the mapped network drive:<\/p>\n\n\n\n<p><strong>ls S:<\/strong><\/p>\n\n\n\n<p>The S3 bucket is now mounted as a network drive (S:). <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><a href=\"https:\/\/www.nakivo.com\/blog\/wp-content\/uploads\/2020\/06\/Running-rclone-in-the-configuring-mode.png\"><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mounting Amazon S3 Cloud Storage in Windows: Open Windows PowerShell as Administrator. Create the directory to download and store&nbsp;rclone&nbsp;files: mkdir c:\\rclone Go to the created directory: cd c:\\rclone Download&nbsp;rclone&nbsp;by using the direct link mentioned above: Invoke-WebRequest -Uri &#8220;https:\/\/downloads.rclone.org\/v1.51.0\/rclone-v1.51.0-windows-amd64.zip&#8221; -OutFile &#8220;c:\\rclone\\rclone.zip&#8221; Extract files from the downloaded archive: Expand-Archive -path &#8216;c:\\rclone\\rclone.zip&#8217; -destinationpath&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to Mount Amazon S3 bucket as a Drive\u00a0<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":492,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[270],"tags":[35],"class_list":{"0":"post-6830","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-amazon","7":"tag-windows","8":"h-entry","10":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Mounting Amazon S3 Cloud Storage in Windows: Open Windows PowerShell as Administrator. Create the directory to download and store&nbsp;rclone&nbsp;files: mkdir c:rclone Go to the created directory: cd c:rclone Download&nbsp;rclone&nbsp;by using the direct link mentioned above: Invoke-WebRequest -Uri &#8220;https:\/\/downloads.rclone.org\/v1.51.0\/rclone-v1.51.0-windows-amd64.zip&#8221; -OutFile &#8220;c:rclonerclone.zip&#8221; Extract files from the downloaded archive: Expand-Archive -path &#8216;c:rclonerclone.zip&#8217; -destinationpath&hellip; Continue Reading How to Mount Amazon S3 bucket as a Drive\u00a0\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-12T17:52:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-12T17:52:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"saritha reddy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"saritha reddy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/\"},\"author\":{\"name\":\"saritha reddy\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/4f5e98f0317afdafb023508585c8ad8c\"},\"headline\":\"How to Mount Amazon S3 bucket as a Drive\u00a0\",\"datePublished\":\"2022-08-12T17:52:54+00:00\",\"dateModified\":\"2022-08-12T17:52:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/\"},\"wordCount\":707,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"Windows\"],\"articleSection\":[\"Amazon\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2022-08-12T17:52:54+00:00\",\"dateModified\":\"2022-08-12T17:52:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-mount-amazon-s3-bucket-as-a-drive\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Mount Amazon S3 bucket as a Drive\u00a0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/4f5e98f0317afdafb023508585c8ad8c\",\"name\":\"saritha reddy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9e004a971f4a39281079be544e370957a431c8a6dda0b6d0fa28452175316532?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9e004a971f4a39281079be544e370957a431c8a6dda0b6d0fa28452175316532?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9e004a971f4a39281079be544e370957a431c8a6dda0b6d0fa28452175316532?s=96&r=g\",\"caption\":\"saritha reddy\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/saritha\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Mounting Amazon S3 Cloud Storage in Windows: Open Windows PowerShell as Administrator. Create the directory to download and store&nbsp;rclone&nbsp;files: mkdir c:rclone Go to the created directory: cd c:rclone Download&nbsp;rclone&nbsp;by using the direct link mentioned above: Invoke-WebRequest -Uri &#8220;https:\/\/downloads.rclone.org\/v1.51.0\/rclone-v1.51.0-windows-amd64.zip&#8221; -OutFile &#8220;c:rclonerclone.zip&#8221; Extract files from the downloaded archive: Expand-Archive -path &#8216;c:rclonerclone.zip&#8217; -destinationpath&hellip; Continue Reading How to Mount Amazon S3 bucket as a Drive\u00a0","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2022-08-12T17:52:54+00:00","article_modified_time":"2022-08-12T17:52:58+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"saritha reddy","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"saritha reddy","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/"},"author":{"name":"saritha reddy","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/4f5e98f0317afdafb023508585c8ad8c"},"headline":"How to Mount Amazon S3 bucket as a Drive\u00a0","datePublished":"2022-08-12T17:52:54+00:00","dateModified":"2022-08-12T17:52:58+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/"},"wordCount":707,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["Windows"],"articleSection":["Amazon"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2022-08-12T17:52:54+00:00","dateModified":"2022-08-12T17:52:58+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-mount-amazon-s3-bucket-as-a-drive\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Mount Amazon S3 bucket as a Drive\u00a0"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/4f5e98f0317afdafb023508585c8ad8c","name":"saritha reddy","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9e004a971f4a39281079be544e370957a431c8a6dda0b6d0fa28452175316532?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9e004a971f4a39281079be544e370957a431c8a6dda0b6d0fa28452175316532?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9e004a971f4a39281079be544e370957a431c8a6dda0b6d0fa28452175316532?s=96&r=g","caption":"saritha reddy"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/saritha\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1Ma","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6830","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/492"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=6830"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6830\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=6830"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=6830"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=6830"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}