{"id":2361,"date":"2023-01-28T09:39:33","date_gmt":"2023-01-28T04:09:33","guid":{"rendered":"https:\/\/trysiteprice.com\/blog\/?p=2361"},"modified":"2023-01-28T10:07:41","modified_gmt":"2023-01-28T04:37:41","slug":"linux-mount-an-lvm-volume-partition-command-2","status":"publish","type":"post","link":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/","title":{"rendered":"Linux mount an LVM volume \/ partition command"},"content":{"rendered":"<p>To mount an LVM volume or partition on Linux, you will first need to have the LVM utilities installed. You can install them using the package manager of your distribution. For example, on Ubuntu, you can use the command <code>sudo apt-get install lvm2<\/code>.<\/p>\n<p>Once the LVM utilities are installed, you can use the <code>lvdisplay<\/code> command to list the available LVM volumes. You should be able to see the volume you want to mount in the list.<\/p>\n<p>To mount the LVM volume, you will need to create a mount point. This is a directory where the volume will be mounted. For example, you can create a mount point at \/mnt\/my_volume.<\/p>\n<p>Then, use the command <code>sudo mount \/dev\/{volume group}\/{logical volume} \/mnt\/my_volume<\/code> to mount the volume. Replace {volume group} and {logical volume} with the actual values from the lvdisplay output.<\/p>\n<p>For example, if your volume group is &#8220;vg_data&#8221; and the logical volume is &#8220;lv_data&#8221;, the command will look like this:<\/p>\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-bash\">sudo mount \/dev\/vg_data\/lv_data \/mnt\/my_volume<br \/>\n<\/code><\/div>\n<\/div>\n<p>It is also worth noting that if you want to mount the LVM partition automatically during boot, you need to add the above command to the \/etc\/fstab file.<\/p>\n<p>&nbsp;<\/p>\n<p>In order to mount an LVM (Logical Volume Management) volume on Linux, you can use the following command:<\/p>\n<ol>\n<li>First, use the <code>lsblk<\/code> command to check the LVM volume name and path, it will show the volume group name and logical volume name, for example:<\/li>\n<\/ol>\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-graphql\">lsblk<br \/>\nNAME   <span class=\"hljs-symbol\">MAJ<\/span><span class=\"hljs-punctuation\">:<\/span>MIN RM  SIZE RO <span class=\"hljs-keyword\">TYPE<\/span> MOUNTPOINT<br \/>\nsda      <span class=\"hljs-number\">8<\/span><span class=\"hljs-punctuation\">:<\/span><span class=\"hljs-number\">0<\/span>    <span class=\"hljs-number\">0<\/span>  <span class=\"hljs-number\">100<\/span>G  <span class=\"hljs-number\">0<\/span> disk<br \/>\n\u251c\u2500sda1   <span class=\"hljs-number\">8<\/span><span class=\"hljs-punctuation\">:<\/span><span class=\"hljs-number\">1<\/span>    <span class=\"hljs-number\">0<\/span>  <span class=\"hljs-number\">100<\/span>G  <span class=\"hljs-number\">0<\/span> part \/<br \/>\n\u2514\u2500sda2   <span class=\"hljs-number\">8<\/span><span class=\"hljs-punctuation\">:<\/span><span class=\"hljs-number\">2<\/span>    <span class=\"hljs-number\">0<\/span>    <span class=\"hljs-number\">8<\/span>G  <span class=\"hljs-number\">0<\/span> part <span class=\"hljs-punctuation\">[<\/span>SWAP<span class=\"hljs-punctuation\">]<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"2\">\n<li>Use the <code>vgdisplay<\/code> command to check the volume group name and logical volume name<\/li>\n<\/ol>\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-sql\">vgdisplay<br \/>\n  <span class=\"hljs-comment\">--- Volume group ---<\/span><br \/>\n  VG Name               myvg<br \/>\n  <span class=\"hljs-keyword\">System<\/span> ID<br \/>\n  Format                lvm2<br \/>\n  Metadata Areas        <span class=\"hljs-number\">1<\/span><br \/>\n  Metadata Sequence <span class=\"hljs-keyword\">No<\/span>  <span class=\"hljs-number\">2<\/span><br \/>\n  VG Access             read<span class=\"hljs-operator\">\/<\/span>write<br \/>\n  VG Status             resizable<br \/>\n  MAX LV                <span class=\"hljs-number\">0<\/span><br \/>\n  Cur LV                <span class=\"hljs-number\">1<\/span><br \/>\n  <span class=\"hljs-keyword\">Open<\/span> LV               <span class=\"hljs-number\">1<\/span><br \/>\n  Max PV                <span class=\"hljs-number\">0<\/span><br \/>\n  Cur PV                <span class=\"hljs-number\">1<\/span><br \/>\n  Act PV                <span class=\"hljs-number\">1<\/span><br \/>\n  VG Size               <span class=\"hljs-operator\">&lt;<\/span><span class=\"hljs-number\">8.00<\/span> GiB<br \/>\n  PE Size               <span class=\"hljs-number\">4.00<\/span> MiB<br \/>\n  Total PE              <span class=\"hljs-number\">2048<\/span><br \/>\n  Alloc PE <span class=\"hljs-operator\">\/<\/span> Size       <span class=\"hljs-number\">2048<\/span> <span class=\"hljs-operator\">\/<\/span> <span class=\"hljs-number\">8.00<\/span> GiB<br \/>\n  <span class=\"hljs-keyword\">Free<\/span>  PE <span class=\"hljs-operator\">\/<\/span> Size       <span class=\"hljs-number\">0<\/span> <span class=\"hljs-operator\">\/<\/span> <span class=\"hljs-number\">0<\/span><br \/>\n  VG UUID               g8r1fZ<span class=\"hljs-operator\">-<\/span>zUiC<span class=\"hljs-operator\">-<\/span>oU6C<span class=\"hljs-operator\">-<\/span>U6WQ<span class=\"hljs-number\">-1<\/span>Dd9<span class=\"hljs-number\">-9<\/span>aJZ<span class=\"hljs-number\">-8<\/span>r1fZ<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"3\">\n<li>Use the <code>lvdisplay<\/code> command to check the logical volume name<\/li>\n<\/ol>\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-bash\">lvdisplay<br \/>\n  --- Logical volume ---<br \/>\n  LV Path                \/dev\/myvg\/mylv<br \/>\n  LV Name                mylv<br \/>\n  VG Name                myvg<br \/>\n  LV UUID                g8r1fZ-zUiC-oU6C-U6WQ-1Dd9-9aJZ-8r1fZ<br \/>\n  LV Write Access        <span class=\"hljs-built_in\">read<\/span>\/write<br \/>\n  LV Creation host, time ubuntu, 2020-07-12 18:11:51 +0800<br \/>\n  LV Status              available<br \/>\n  <span class=\"hljs-comment\"># open                 1<\/span><br \/>\n  LV Size                8.00 GiB<br \/>\n  Current LE             2048<br \/>\n  Segments               1<br \/>\n  Allocation             inherit<br \/>\n  Read ahead sectors     auto<br \/>\n  - currently <span class=\"hljs-built_in\">set<\/span> to     256<br \/>\n  Block device           253:2<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"4\">\n<li>Now use the <code>mount<\/code> command to mount the volume.<\/li>\n<\/ol>\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-bash\">sudo mount \/dev\/myvg\/mylv \/mnt<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"5\">\n<li>To mount the volume automatically at boot, you need to add the following line to the \/etc\/fstab file<\/li>\n<\/ol>\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-bash\">\/dev\/myvg\/mylv \/mnt ext4 defaults 0 0<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"6\">\n<li>You can use <code>df -h<\/code> command to check the mounted volume<\/li>\n<\/ol>\n<div class=\"bg-black mb-4 rounded-md\">\n<div class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans\"><\/div>\n<div class=\"p-4 overflow-y-auto\"><code class=\"!whitespace-pre hljs language-bash\"><span class=\"hljs-built_in\">df<\/span> -h<br \/>\nFilesystem      Size  Used Avail Use% Mounted on<br \/>\n\/dev\/sda1       100G  1.9G   99G   2% \/<br \/>\ndevtmpfs        3.9G     0  3.9G   0% \/dev<br \/>\ntmpfs           3.9G   17M  3.9G   1% \/dev\/shm<br \/>\ntmpfs           3.9G<\/code><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>To mount an LVM volume or partition on Linux, you will first need to have the LVM utilities installed. You can install them using the package manager of your distribution. For example, on Ubuntu, you can use the command sudo apt-get install lvm2. Once the LVM utilities are installed, you can use the lvdisplay command &#8230; <a title=\"Linux mount an LVM volume \/ partition command\" class=\"read-more\" href=\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/\" aria-label=\"Read more about Linux mount an LVM volume \/ partition command\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2361","post","type-post","status-publish","format-standard","hentry","category-best-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux mount an LVM volume \/ partition command - TrySitePrice<\/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:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux mount an LVM volume \/ partition command - TrySitePrice\" \/>\n<meta property=\"og:description\" content=\"To mount an LVM volume or partition on Linux, you will first need to have the LVM utilities installed. You can install them using the package manager of your distribution. For example, on Ubuntu, you can use the command sudo apt-get install lvm2. Once the LVM utilities are installed, you can use the lvdisplay command ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/\" \/>\n<meta property=\"og:site_name\" content=\"TrySitePrice\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-28T04:09:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-28T04:37:41+00:00\" \/>\n<meta name=\"author\" content=\"Rahul Sahu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/\"},\"author\":{\"name\":\"Rahul Sahu\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4\"},\"headline\":\"Linux mount an LVM volume \/ partition command\",\"datePublished\":\"2023-01-28T04:09:33+00:00\",\"dateModified\":\"2023-01-28T04:37:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/\"},\"wordCount\":288,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\"},\"articleSection\":[\"Best\/Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/\",\"url\":\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/\",\"name\":\"Linux mount an LVM volume \/ partition command - TrySitePrice\",\"isPartOf\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#website\"},\"datePublished\":\"2023-01-28T04:09:33+00:00\",\"dateModified\":\"2023-01-28T04:37:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/trysiteprice.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux mount an LVM volume \/ partition command\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#website\",\"url\":\"https:\/\/trysiteprice.com\/blog\/\",\"name\":\"TrySitePrice\",\"description\":\"Free Website Value Calculator Tool\",\"publisher\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/trysiteprice.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#organization\",\"name\":\"TrySitePrice\",\"url\":\"https:\/\/trysiteprice.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png\",\"contentUrl\":\"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png\",\"width\":395,\"height\":268,\"caption\":\"TrySitePrice\"},\"image\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4\",\"name\":\"Rahul Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g\",\"caption\":\"Rahul Sahu\"},\"sameAs\":[\"https:\/\/trysiteprice.com\/blog\"],\"url\":\"https:\/\/trysiteprice.com\/blog\/author\/rsahu4242_trysiteprice\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux mount an LVM volume \/ partition command - TrySitePrice","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:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/","og_locale":"en_US","og_type":"article","og_title":"Linux mount an LVM volume \/ partition command - TrySitePrice","og_description":"To mount an LVM volume or partition on Linux, you will first need to have the LVM utilities installed. You can install them using the package manager of your distribution. For example, on Ubuntu, you can use the command sudo apt-get install lvm2. Once the LVM utilities are installed, you can use the lvdisplay command ... Read more","og_url":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/","og_site_name":"TrySitePrice","article_published_time":"2023-01-28T04:09:33+00:00","article_modified_time":"2023-01-28T04:37:41+00:00","author":"Rahul Sahu","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/#article","isPartOf":{"@id":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/"},"author":{"name":"Rahul Sahu","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4"},"headline":"Linux mount an LVM volume \/ partition command","datePublished":"2023-01-28T04:09:33+00:00","dateModified":"2023-01-28T04:37:41+00:00","mainEntityOfPage":{"@id":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/"},"wordCount":288,"commentCount":0,"publisher":{"@id":"https:\/\/trysiteprice.com\/blog\/#organization"},"articleSection":["Best\/Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/","url":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/","name":"Linux mount an LVM volume \/ partition command - TrySitePrice","isPartOf":{"@id":"https:\/\/trysiteprice.com\/blog\/#website"},"datePublished":"2023-01-28T04:09:33+00:00","dateModified":"2023-01-28T04:37:41+00:00","breadcrumb":{"@id":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/trysiteprice.com\/blog\/linux-mount-an-lvm-volume-partition-command-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/trysiteprice.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Linux mount an LVM volume \/ partition command"}]},{"@type":"WebSite","@id":"https:\/\/trysiteprice.com\/blog\/#website","url":"https:\/\/trysiteprice.com\/blog\/","name":"TrySitePrice","description":"Free Website Value Calculator Tool","publisher":{"@id":"https:\/\/trysiteprice.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/trysiteprice.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/trysiteprice.com\/blog\/#organization","name":"TrySitePrice","url":"https:\/\/trysiteprice.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png","contentUrl":"https:\/\/trysiteprice.com\/blog\/wp-content\/uploads\/2021\/12\/cropped-trysiteprice-logo.png","width":395,"height":268,"caption":"TrySitePrice"},"image":{"@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4","name":"Rahul Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/51f0f95f7b95665f62baed2211572165?s=96&d=mm&r=g","caption":"Rahul Sahu"},"sameAs":["https:\/\/trysiteprice.com\/blog"],"url":"https:\/\/trysiteprice.com\/blog\/author\/rsahu4242_trysiteprice\/"}]}},"_links":{"self":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/2361","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/comments?post=2361"}],"version-history":[{"count":3,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/2361\/revisions"}],"predecessor-version":[{"id":2364,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/2361\/revisions\/2364"}],"wp:attachment":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/media?parent=2361"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/categories?post=2361"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/tags?post=2361"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}