{"id":1662,"date":"2023-01-24T03:09:29","date_gmt":"2023-01-23T21:39:29","guid":{"rendered":"https:\/\/trysiteprice.com\/blog\/?p=1662"},"modified":"2023-01-24T03:09:29","modified_gmt":"2023-01-23T21:39:29","slug":"how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs","status":"publish","type":"post","link":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/","title":{"rendered":"How to install Linux VM on FreeBSD using bhyve and ZFS"},"content":{"rendered":"<p>bhyve is a hypervisor for FreeBSD that allows you to run virtual machines (VMs) on top of a FreeBSD host. You can use bhyve and ZFS to install a Linux VM on a FreeBSD host. Here are the general steps to do this:<\/p>\n<ol>\n<li>Create a ZFS pool on the host system:<\/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-wrap hljs language-bash\">zpool create -f mypool \/dev\/ada0<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"2\">\n<li>Create a ZFS dataset for the Linux VM:<\/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-wrap hljs language-bash\">zfs create mypool\/vm<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"3\">\n<li>Download a Linux ISO image, for example, Ubuntu or Debian, and copy it to the dataset:<\/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-wrap hljs language-bash\">fetch -o \/mypool\/vm\/ubuntu.iso http:\/\/releases.ubuntu.com\/20.04\/ubuntu-20.04-live-server-amd64.iso<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"4\">\n<li>Create a virtual disk for the Linux VM:<\/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-wrap hljs language-bash\">bhyve-firmware -c \/mypool\/vm\/disk0.img -s 8G -t virtio<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"5\">\n<li>Create a configuration file for the Linux VM:<\/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-wrap hljs language-javascript\">echo <span class=\"hljs-string\">'vm:<br \/>\n  vcpu: 1<br \/>\n  memory: 2048<br \/>\n  disks:<br \/>\n    - \/mypool\/vm\/disk0.img<br \/>\n  cdrom: \/mypool\/vm\/ubuntu.iso<br \/>\n  boot: cd<br \/>\n  network:<br \/>\n    - type: virtio<br \/>\n    - dhcp: true<br \/>\n'<\/span> &gt; <span class=\"hljs-regexp\">\/mypool\/<\/span>vm\/config.<span class=\"hljs-property\">yml<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"6\">\n<li>Use the bhyve command to create and start the Linux VM:<\/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-wrap hljs language-javascript\">bhyve -c <span class=\"hljs-number\">1<\/span> -m 2G -H -P -A -l com1,stdio -s <span class=\"hljs-number\">0<\/span>:<span class=\"hljs-number\">0<\/span>,hostbridge -s <span class=\"hljs-number\">3<\/span>,ahci-cd,<span class=\"hljs-regexp\">\/mypool\/<\/span>vm\/ubuntu.<span class=\"hljs-property\">iso<\/span> -s <span class=\"hljs-number\">4<\/span>,virtio-blk,<span class=\"hljs-regexp\">\/mypool\/<\/span>vm\/disk0.<span class=\"hljs-property\">img<\/span> vm<\/code><\/div>\n<\/div>\n<ol start=\"7\">\n<li>Once the Linux VM is running, you can use the bhyveload command to load the kernel and initrd, then use the bhyve command to boot the Linux VM:<\/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-wrap hljs language-javascript\">bhyveload -m 2G -d \/mypool\/vm\/ubuntu.<span class=\"hljs-property\">iso<\/span> vm<br \/>\nbhyve -c <span class=\"hljs-number\">1<\/span> -m 2G -H -P -A -l com1,stdio -s <span class=\"hljs-number\">0<\/span>:<span class=\"hljs-number\">0<\/span>,hostbridge -s <span class=\"hljs-number\">3<\/span>,ahci-cd,<span class=\"hljs-regexp\">\/mypool\/<\/span>vm\/ubuntu.<span class=\"hljs-property\">iso<\/span> -s <span class=\"hljs-number\">4<\/span>,virtio-blk,<span class=\"hljs-regexp\">\/mypool\/<\/span>vm\/disk0.<span class=\"hljs-property\">img<\/span> vm<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"8\">\n<li>You should now see the Linux installer starting and you can proceed with the installation as you would on a physical machine.<\/li>\n<li>Once the Linux VM is installed, you can use the bhyve command to start the Linux VM:<\/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-wrap hljs language-javascript\">bhyve -c <span class=\"hljs-number\">1<\/span> -m 2G -H -P -A -l com1,stdio -s <span class=\"hljs-number\">0<\/span>:<span class=\"hljs-number\">0<\/span>,hostbridge -s <span class=\"hljs-number\">4<\/span>,virtio-blk,<span class=\"hljs-regexp\">\/mypool\/<\/span>vm\/disk0.<span class=\"hljs-property\">img<\/span> vm<br \/>\n<\/code><\/div>\n<\/div>\n<ol start=\"10\">\n<li>After the Linux VM is started, you can use the bconsole command to connect to the serial console and access the Linux VM:<\/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-wrap hljs language-bash\">bconsole -s \/dev\/nmdm0B<br \/>\n<\/code><\/div>\n<\/div>\n<p>It is important to note that the above steps are just an example and may require adjustments depending on the specific Linux distribution, version and architecture you want to use. Additionally, bhyve uses a lot of memory and CPU, so make sure your hardware is up to the task.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>bhyve is a hypervisor for FreeBSD that allows you to run virtual machines (VMs) on top of a FreeBSD host. You can use bhyve and ZFS to install a Linux VM on a FreeBSD host. Here are the general steps to do this: Create a ZFS pool on the host system: zpool create -f mypool &#8230; <a title=\"How to install Linux VM on FreeBSD using bhyve and ZFS\" class=\"read-more\" href=\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/\" aria-label=\"Read more about How to install Linux VM on FreeBSD using bhyve and ZFS\">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-1662","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>How to install Linux VM on FreeBSD using bhyve and ZFS - 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\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Linux VM on FreeBSD using bhyve and ZFS - TrySitePrice\" \/>\n<meta property=\"og:description\" content=\"bhyve is a hypervisor for FreeBSD that allows you to run virtual machines (VMs) on top of a FreeBSD host. You can use bhyve and ZFS to install a Linux VM on a FreeBSD host. Here are the general steps to do this: Create a ZFS pool on the host system: zpool create -f mypool ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/\" \/>\n<meta property=\"og:site_name\" content=\"TrySitePrice\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-23T21:39:29+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\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/\"},\"author\":{\"name\":\"Rahul Sahu\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4\"},\"headline\":\"How to install Linux VM on FreeBSD using bhyve and ZFS\",\"datePublished\":\"2023-01-23T21:39:29+00:00\",\"dateModified\":\"2023-01-23T21:39:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/\"},\"wordCount\":252,\"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\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/\",\"url\":\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/\",\"name\":\"How to install Linux VM on FreeBSD using bhyve and ZFS - TrySitePrice\",\"isPartOf\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/#website\"},\"datePublished\":\"2023-01-23T21:39:29+00:00\",\"dateModified\":\"2023-01-23T21:39:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/trysiteprice.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Linux VM on FreeBSD using bhyve and ZFS\"}]},{\"@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":"How to install Linux VM on FreeBSD using bhyve and ZFS - 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\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/","og_locale":"en_US","og_type":"article","og_title":"How to install Linux VM on FreeBSD using bhyve and ZFS - TrySitePrice","og_description":"bhyve is a hypervisor for FreeBSD that allows you to run virtual machines (VMs) on top of a FreeBSD host. You can use bhyve and ZFS to install a Linux VM on a FreeBSD host. Here are the general steps to do this: Create a ZFS pool on the host system: zpool create -f mypool ... Read more","og_url":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/","og_site_name":"TrySitePrice","article_published_time":"2023-01-23T21:39:29+00:00","author":"Rahul Sahu","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/#article","isPartOf":{"@id":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/"},"author":{"name":"Rahul Sahu","@id":"https:\/\/trysiteprice.com\/blog\/#\/schema\/person\/358e04eeea4281deacad2f30c58e67f4"},"headline":"How to install Linux VM on FreeBSD using bhyve and ZFS","datePublished":"2023-01-23T21:39:29+00:00","dateModified":"2023-01-23T21:39:29+00:00","mainEntityOfPage":{"@id":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/"},"wordCount":252,"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\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/","url":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/","name":"How to install Linux VM on FreeBSD using bhyve and ZFS - TrySitePrice","isPartOf":{"@id":"https:\/\/trysiteprice.com\/blog\/#website"},"datePublished":"2023-01-23T21:39:29+00:00","dateModified":"2023-01-23T21:39:29+00:00","breadcrumb":{"@id":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/trysiteprice.com\/blog\/how-to-install-linux-vm-on-freebsd-using-bhyve-and-zfs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/trysiteprice.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Linux VM on FreeBSD using bhyve and ZFS"}]},{"@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\/1662","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=1662"}],"version-history":[{"count":1,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/1662\/revisions"}],"predecessor-version":[{"id":1663,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/posts\/1662\/revisions\/1663"}],"wp:attachment":[{"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/media?parent=1662"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/categories?post=1662"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/trysiteprice.com\/blog\/wp-json\/wp\/v2\/tags?post=1662"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}