{"id":9484,"date":"2020-12-17T17:27:25","date_gmt":"2020-12-17T14:27:25","guid":{"rendered":"https:\/\/unihost.com\/help\/?p=9484"},"modified":"2023-01-19T13:59:51","modified_gmt":"2023-01-19T10:59:51","slug":"how-to-mount-storage-box","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/","title":{"rendered":"How to mount Storage Box"},"content":{"rendered":"<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">This tutorial will show you how to install the SSHFS client on Linux and how to mount a Storage Box.<!--more--><\/span><!--more--><\/p>\n<h2 id=\"installing-sshfs\" style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Installing SSHFS<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">SSHFS is Linux based software that needs to be installed&nbsp;<\/span><\/p>\n<p style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Ubuntu \/ Debian<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">apt update<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">apt install sshfs<\/span><\/pre>\n<p style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">RHEL &amp; Centos<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">yum install sshfs<\/span><\/pre>\n<h2 style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Mounting a Storage Box<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">To mount a remote directory the SSH user needs to be able to access it. The SSHFS mount command takes the following form:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">sshfs &lt;username&gt;@&lt;username&gt;.your-storagebox.de: \/mnt\/<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If you want to permanently mount the remote directory you need to edit the local machine\u2019s \/etc\/fstab file an add a new mount entry.&nbsp;When creating a persistent mount make sure you can connect the remote host using the SSH key-based authentication.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Open fstab file<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">nano \/etc\/fstab<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Scroll to the bottom of the file and add the following entry<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">&lt;username&gt;@&lt;username&gt;.your-storagebox.de: \/mnt\/ fuse.sshfs defaults 0 0<\/span><\/pre>\n<h2 style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Unmounting a Remote File System<\/span><\/h2>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">fusermount -u \/mnt<\/span><\/pre>\n<h2 style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">SSH key authentication for storage boxes<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If you use SCP, SFTP, rsync or BorgBackup, you can log in using SSH key authentication without entering a password.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Important note: Depending on the SSH port of the backup account\/storage box you use, you may need to use a specific format for the public SSH key. For SSH port 22 (SFTP and SCP only), you are required to use a public SSH key in RFC4716 format. For SSH port 23 (SFTP, SCP, rsync and BorgBackup) you are required to use a common public SSH key in OpenSSH format. If you want to use the services over both ports, then you must store the public SSH key in both formats.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Using an ed25519 key is not supported on SSH port 22.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Please note that each sub-account requires its own authorized_keys file.<\/span><\/p>\n<h2 id=\"generating-ssh-keys\" style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Generating SSH keys<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You can use ssh-keygen to generate a new pair of SSH keys:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">ssh-keygen<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Generating public\/private rsa key pair.<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Enter file in which to save the key (\/root\/.ssh\/id_rsa):<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Enter passphrase (empty for no passphrase):<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Enter same passphrase again:<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Your identification has been saved in \/root\/.ssh\/id_rsa.<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Your public key has been saved in \/root\/.ssh\/id_rsa.pub.<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">The key fingerprint is:<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">cb:3c:a0:39:69:39:ec:35:d5:66:f3:c5:92:99:2f:e1 root@server<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">The key's randomart image is:<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">+--[ RSA 2048]----+<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">|&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp;|<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">|&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">|&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">| . =&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  |<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">| . S = * o&nbsp; &nbsp; &nbsp;|<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">| . = = + + = |<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">| X o = E .&nbsp; &nbsp; |<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">| o + . . .&nbsp; &nbsp; &nbsp; &nbsp;|<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">| .&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">+-----------------+<\/span><\/pre>\n<h2 style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Creating authorized_keys file<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Insert the required public SSH keys into a new local authorized_keys file.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">For SSH over port 23 (SCP, SFTP, Rsync and Borg Backup), add the public SSH key in OpenSSH format:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">server&gt; cat .ssh\/id_rsa.pub &gt;&gt; storagebox_authorized_keys<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If you converted your public SSH key to RFC4716 format in the previous step, add it as well:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">server&gt; cat .ssh\/id_rsa_rfc.pub &gt;&gt; storagebox_authorized_keys<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You can also add the public SSH key in both formats.<\/span><\/p>\n<h2 style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Uploading authorized_keys<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Now you need to upload the generated authorized_keys file to the storage box\/backup account. To do this, create the directory .ssh with the file rights 0700 (rwx&#8212;&#8212;) and create the file authorized_keys with the public SSH keys and the file rights 0600 (rw&#8212;&#8212;-).<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You can do this with the following command, for example:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">server&gt; echo -e \"mkdir .ssh \\n chmod 700 .ssh \\n put storagebox_authorized_keys .ssh\/authorized_keys \\n chmod 600 .ssh\/authorized_keys\" | sftp &lt;username&gt;@&lt;username&gt;.your-storagebox.de<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">u12345@u12345.your-storagebox.de's password:<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Connected to u12345.your-storagebox.de'.<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">sftp&gt; mkdir .ssh<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">sftp&gt; chmod 700 .ssh<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Changing mode on \/.ssh<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">sftp&gt; put storagebox_authorized_keys .ssh\/authorized_keys<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Uploading storagebox_authorized_keys to \/.ssh\/authorized_keys<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">storagebox_authorized_keys 100% 2916 2.0MB\/s 00:00<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">sftp&gt; chmod 600 .ssh\/authorized_keys<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Changing mode on \/.ssh\/authorized_keys<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Based on which SSH key format you have uploaded you should be able to log in without a password on port 22 and\/or 23:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">sftp -P &lt;22 or 23&gt; &lt;username&gt;@&lt;username&gt;.your-storagebox.de<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Connected to &lt;username&gt;.your-storagebox.de.<\/span>\n<span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">sftp&gt; quit<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Warning: The ssh-copy-id command cannot be used to upload the public SSH key.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial will show you how to install the SSHFS client on Linux and how to mount a Storage Box.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158],"tags":[664,670,671,669,668],"class_list":["post-9484","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers","tag-backup","tag-mount","tag-sshfs","tag-storage","tag-storage-box"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to mount Storage Box - Unihost.FAQ<\/title>\n<meta name=\"description\" content=\"This tutorial will show you how to install the SSHFS client on Linux and how to mount a Storage Box. It&#039;s really easy to make it done.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to mount Storage Box - Unihost.FAQ\" \/>\n<meta property=\"og:description\" content=\"This tutorial will show you how to install the SSHFS client on Linux and how to mount a Storage Box. It&#039;s really easy to make it done.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.FAQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-17T14:27:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-19T10:59:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/help\/minio.php?.\/unihost-logo-alt.png\" \/>\n\t<meta property=\"og:image:width\" content=\"250\" \/>\n\t<meta property=\"og:image:height\" content=\"141\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Unihost Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Unihost Support\" \/>\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:\/\/unihost.com\/help\/how-to-mount-storage-box\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"How to mount Storage Box\",\"datePublished\":\"2020-12-17T14:27:25+00:00\",\"dateModified\":\"2023-01-19T10:59:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/\"},\"wordCount\":443,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"keywords\":[\"backup\",\"mount\",\"sshfs\",\"storage\",\"storage box\"],\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/\",\"url\":\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/\",\"name\":\"How to mount Storage Box - Unihost.FAQ\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/#website\"},\"datePublished\":\"2020-12-17T14:27:25+00:00\",\"dateModified\":\"2023-01-19T10:59:51+00:00\",\"description\":\"This tutorial will show you how to install the SSHFS client on Linux and how to mount a Storage Box. It's really easy to make it done.\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\/\/unihost.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help\",\"item\":\"https:\/\/unihost.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to mount Storage Box\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unihost.com\/help\/#website\",\"url\":\"https:\/\/unihost.com\/help\/\",\"name\":\"Unihost.FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unihost.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unihost.com\/help\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\/\/unihost.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/unihost\/\",\"https:\/\/x.com\/unihost\",\"https:\/\/www.instagram.com\/unihost\/?hl=en\",\"https:\/\/www.linkedin.com\/company\/unihost-com\",\"https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\",\"name\":\"Unihost Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"caption\":\"Unihost Support\"},\"sameAs\":[\"https:\/\/unihost.com\/\"],\"url\":\"https:\/\/unihost.com\/help\/author\/support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to mount Storage Box - Unihost.FAQ","description":"This tutorial will show you how to install the SSHFS client on Linux and how to mount a Storage Box. It's really easy to make it done.","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:\/\/unihost.com\/help\/how-to-mount-storage-box\/","og_locale":"en_US","og_type":"article","og_title":"How to mount Storage Box - Unihost.FAQ","og_description":"This tutorial will show you how to install the SSHFS client on Linux and how to mount a Storage Box. It's really easy to make it done.","og_url":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2020-12-17T14:27:25+00:00","article_modified_time":"2023-01-19T10:59:51+00:00","og_image":[{"width":250,"height":141,"url":"https:\/\/unihost.com\/help\/minio.php?.\/unihost-logo-alt.png","type":"image\/png"}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"How to mount Storage Box","datePublished":"2020-12-17T14:27:25+00:00","dateModified":"2023-01-19T10:59:51+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/"},"wordCount":443,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"keywords":["backup","mount","sshfs","storage","storage box"],"articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/","url":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/","name":"How to mount Storage Box - Unihost.FAQ","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"datePublished":"2020-12-17T14:27:25+00:00","dateModified":"2023-01-19T10:59:51+00:00","description":"This tutorial will show you how to install the SSHFS client on Linux and how to mount a Storage Box. It's really easy to make it done.","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/how-to-mount-storage-box\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/how-to-mount-storage-box\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Help","item":"https:\/\/unihost.com\/help\/"},{"@type":"ListItem","position":3,"name":"How to mount Storage Box"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/help\/#website","url":"https:\/\/unihost.com\/help\/","name":"Unihost.FAQ","description":"","publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/help\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost\/","https:\/\/x.com\/unihost","https:\/\/www.instagram.com\/unihost\/?hl=en","https:\/\/www.linkedin.com\/company\/unihost-com","https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw"]},{"@type":"Person","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a","name":"Unihost Support","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","caption":"Unihost Support"},"sameAs":["https:\/\/unihost.com\/"],"url":"https:\/\/unihost.com\/help\/author\/support\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/9484","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/comments?post=9484"}],"version-history":[{"count":2,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/9484\/revisions"}],"predecessor-version":[{"id":10512,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/9484\/revisions\/10512"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=9484"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=9484"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=9484"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}