{"id":10056,"date":"2021-04-19T11:39:12","date_gmt":"2021-04-19T08:39:12","guid":{"rendered":"https:\/\/unihost.com\/help\/?p=10056"},"modified":"2023-01-19T13:48:21","modified_gmt":"2023-01-19T10:48:21","slug":"how-to-add-a-new-disk-to-an-existing-linux-server","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/","title":{"rendered":"How to add a new disk to an existing Linux server"},"content":{"rendered":"<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">In this guide, I will show how to add a new disk to an existing Linux server, create a partition and mount it to make it accessible.<\/span><!--more--><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Verify that the drive is installed and working properly if a new block level device is found when running <span style=\"color: #800000;\">lsblk<\/span>:<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-10057\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/DM_190421_SgDZ1GGX_DM_190421.png\" alt=\"How to add a new disk to an existing Linux server - Image 1\" width=\"703\" height=\"133\" title=\"How to add a new disk to an existing Linux server - Image 1\"><\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You can run <span style=\"color: #800000;\">fdisk -l<\/span> to see the disk list.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-10059\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/DM_190421_BZV5FZTf_DM_190421.png\" alt=\"How to add a new disk to an existing Linux server - Image 2\" width=\"700\" height=\"359\" title=\"How to add a new disk to an existing Linux server - Image 2\"><\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">In my case, the primary OS drive is <span style=\"color: #800000;\">sda.<\/span> The second drive&nbsp;<span style=\"color: #800000;\">sdb<\/span>, which isn\u2019t mounted and it&#8217;s an empty disk.<\/span><\/p>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">Create a mount point<\/span><\/h2>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">mkdir \/storage<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You can name the folder as you want so.<\/span><\/p>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">Create a New Filesystem<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Since the drive doesn\u2019t have a filesystem, I can\u2019t use it for storing files. To create a new filesystem on an empty volume, I will use the <span style=\"color: #800000;\">mkfs<\/span> command:<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">mkfs -t ext4 \/dev\/sdb<\/span><\/pre>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"> <img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-10061\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/DM_190421_AsQvaafI_DM_190421.png\" alt=\"How to add a new disk to an existing Linux server - Image 3\" width=\"691\" height=\"279\" title=\"How to add a new disk to an existing Linux server - Image 3\"><\/span><\/p>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">Mount partition<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Once formatting has been completed, now mount the partition with <span style=\"color: #800000;\">mount<\/span> command.<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">mount \/dev\/sdb \/storage\/<\/span><\/pre>\n<h2 style=\"text-align: center;\"><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">Edit \/etc\/fstab<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Make an entry in <span style=\"color: #800000;\">\/etc\/fstab<\/span> file for permanent mount at boot time.<\/span><\/p>\n<pre><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">nano \/etc\/fstab<\/span><br><br><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">\/dev\/sdb \/storage ext4 defaults 0 0<\/span><\/pre>\n<h2 style=\"text-align: center;\"><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Verify the mount<\/span><\/h2>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">Now you can reboot your server. The partition will be mount on the next boot.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-10065\" src=\"https:\/\/unihost.com\/help\/minio.php?.\/DM_190421_XosJU5y__DM_190421.png\" alt=\"How to add a new disk to an existing Linux server - Image 4\" width=\"715\" height=\"304\" title=\"How to add a new disk to an existing Linux server - Image 4\"><\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">As you can see the partition already mounted and ready to use.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">You have successfully added the new disk to your Linux server.<\/span><\/p>\n<p><span style=\"font-family: Ubuntu, sans-serif; font-size: 12pt;\">If you have more than one new disks and you want to create a software RAID &#8211; check our guide &#8211; <a href=\"https:\/\/unihost.com\/help\/how-to-set-up-a-software-raid\/\">How to set up a software RAID<\/a><\/span><\/p>\n<p><\/p>\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, I will show how to add a new disk to an existing Linux server, create a partition and mount it to make it accessible.<\/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":[],"class_list":["post-10056","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add a new disk to an existing Linux server - Unihost.FAQ<\/title>\n<meta name=\"description\" content=\"Unihost.FAQ How to add a new disk to an existing Linux server 02. Dedicated servers How to add a new disk to an existing Linux server Unihost.FAQ\" \/>\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-add-a-new-disk-to-an-existing-linux-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add a new disk to an existing Linux server - Unihost.FAQ\" \/>\n<meta property=\"og:description\" content=\"Unihost.FAQ How to add a new disk to an existing Linux server 02. Dedicated servers How to add a new disk to an existing Linux server Unihost.FAQ\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/\" \/>\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=\"2021-04-19T08:39:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-19T10:48:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/help\/wp-content\/uploads\/DM_190421_SgDZ1GGX_DM_190421.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=\"2 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-add-a-new-disk-to-an-existing-linux-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"How to add a new disk to an existing Linux server\",\"datePublished\":\"2021-04-19T08:39:12+00:00\",\"dateModified\":\"2023-01-19T10:48:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/\"},\"wordCount\":239,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/help\/#organization\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/DM_190421_SgDZ1GGX_DM_190421.png\",\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/\",\"url\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/\",\"name\":\"How to add a new disk to an existing Linux server - Unihost.FAQ\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/help\/wp-content\/uploads\/DM_190421_SgDZ1GGX_DM_190421.png\",\"datePublished\":\"2021-04-19T08:39:12+00:00\",\"dateModified\":\"2023-01-19T10:48:21+00:00\",\"description\":\"Unihost.FAQ How to add a new disk to an existing Linux server 02. Dedicated servers How to add a new disk to an existing Linux server Unihost.FAQ\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#primaryimage\",\"url\":\"https:\/\/unihost.com\/help\/minio.php?.\/DM_190421_SgDZ1GGX_DM_190421.png\",\"contentUrl\":\"https:\/\/unihost.com\/help\/minio.php?.\/DM_190421_SgDZ1GGX_DM_190421.png\",\"width\":703,\"height\":133},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#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 add a new disk to an existing Linux server\"}]},{\"@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 add a new disk to an existing Linux server - Unihost.FAQ","description":"Unihost.FAQ How to add a new disk to an existing Linux server 02. Dedicated servers How to add a new disk to an existing Linux server Unihost.FAQ","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-add-a-new-disk-to-an-existing-linux-server\/","og_locale":"en_US","og_type":"article","og_title":"How to add a new disk to an existing Linux server - Unihost.FAQ","og_description":"Unihost.FAQ How to add a new disk to an existing Linux server 02. Dedicated servers How to add a new disk to an existing Linux server Unihost.FAQ","og_url":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2021-04-19T08:39:12+00:00","article_modified_time":"2023-01-19T10:48:21+00:00","og_image":[{"url":"https:\/\/unihost.com\/help\/wp-content\/uploads\/DM_190421_SgDZ1GGX_DM_190421.png","type":"","width":"","height":""}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"How to add a new disk to an existing Linux server","datePublished":"2021-04-19T08:39:12+00:00","dateModified":"2023-01-19T10:48:21+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/"},"wordCount":239,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/DM_190421_SgDZ1GGX_DM_190421.png","articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/","url":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/","name":"How to add a new disk to an existing Linux server - Unihost.FAQ","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#primaryimage"},"image":{"@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/help\/wp-content\/uploads\/DM_190421_SgDZ1GGX_DM_190421.png","datePublished":"2021-04-19T08:39:12+00:00","dateModified":"2023-01-19T10:48:21+00:00","description":"Unihost.FAQ How to add a new disk to an existing Linux server 02. Dedicated servers How to add a new disk to an existing Linux server Unihost.FAQ","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#primaryimage","url":"https:\/\/unihost.com\/help\/minio.php?.\/DM_190421_SgDZ1GGX_DM_190421.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?.\/DM_190421_SgDZ1GGX_DM_190421.png","width":703,"height":133},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/how-to-add-a-new-disk-to-an-existing-linux-server\/#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 add a new disk to an existing Linux server"}]},{"@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\/10056","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=10056"}],"version-history":[{"count":7,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/10056\/revisions"}],"predecessor-version":[{"id":10567,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/10056\/revisions\/10567"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=10056"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=10056"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=10056"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}