{"id":7688,"date":"2024-07-03T19:35:36","date_gmt":"2024-07-04T02:35:36","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=7688"},"modified":"2024-07-03T19:35:36","modified_gmt":"2024-07-04T02:35:36","slug":"install-kvm-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-kvm-linux\/","title":{"rendered":"How to Install KVM Linux | Guide to Scalable Linux Servers"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"alignright size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/ioflood.com\/blog\/wp-content\/uploads\/2024\/07\/Dependable-technician-giving-kvm-tutorial-structured-towards-virtualization-in-Linux-kvm-server-300x300.jpg\" alt=\"Dependable technician giving kvm tutorial structured towards virtualization in Linux kvm server\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Throughought our data center operations at <a href=\"https:\/\/ioflood.com\/\">IOFLOOD<\/a>, we&#8217;ve needed the best virtualization tools to maximize resources on our <a href=\"https:\/\/ioflood.com\/bare-metal-cloud-server.php\">bare metal cloud servers<\/a>. An optimized kvm setup is fundamental to achieve this goal. This article provides a comprehensive guide on a Linux KVM install, to assist our customers diving into virtualization.<\/p>\n<p><strong>In this Linux KVM tutorial, we will guide you on the proper methods to install the KVM command.<\/strong> We will show you kvm setup methods for both APT and YUM-based distributions, delve into compiling KVM from source, installing a specific version, and finally, how to use KVM virtualization and ensure that the command is installed correctly.<\/p>\n<p>So, let&#8217;s dive in and begin the Linux KVM Tutorial!<\/p>\n<h2>TL;DR: How to Install KVM Server in Linux?<\/h2>\n<blockquote><p>\n  Most Linux distributions come with KVM pre-installed. If not, you can install all necessary packages with the package manager used on your system, <code>sudo [apt] install qemu qemu-kvm libvirt-daemon libvirt-clients bridge-utils virt-manager<\/code>. For example, on Ubuntu, you can run the following command:\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils\n<\/code><\/pre>\n<p>This command will install KVM along with the necessary libraries and utilities. The <code>libvirt-daemon-system<\/code> package provides the system-level daemon that manages virtual machines, while <code>libvirt-clients<\/code> provides the client tools. <code>bridge-utils<\/code> is a set of utilities for configuring ethernet bridging, which is often used in KVM networking.<\/p>\n<p>This is just the basic way to install KVM on Linux, but there&#8217;s much more to learn about installing and using KVM. Continue reading for more detailed information and advanced usage scenarios.<\/p>\n<h2>Why and How to Install KVM on Linux<\/h2>\n<p>Kernel-based Virtual Machine (KVM) is a full virtualization solution for Linux. It turns the Linux kernel into a hypervisor, allowing a host machine to run multiple, isolated virtual environments, or &#8216;guests&#8217;. KVM is used for running virtual machines on Linux, serving as an alternative to proprietary solutions like VMware or VirtualBox.<\/p>\n<h3>Install KVM with APT<\/h3>\n<p>If you&#8217;re using a Debian-based distribution like Ubuntu, you&#8217;ll use the APT package manager to install KVM. Here&#8217;s how you can do it:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt update\nsudo apt install qemu qemu-kvm libvirt-daemon libvirt-clients bridge-utils virt-manager\n<\/code><\/pre>\n<p>The command <code>sudo apt update<\/code> updates your package manager&#8217;s repository information. The second command installs KVM along with other necessary packages. <code>qemu-kvm<\/code> is the main KVM package. <code>libvirt-daemon<\/code> and <code>libvirt-clients<\/code> are used to manage KVM at the system and client level, respectively. <code>bridge-utils<\/code> helps set up networking for the virtual machines, and <code>virt-manager<\/code> provides a graphical interface to manage your virtual machines.<\/p>\n<h3>Install KVM with YUM<\/h3>\n<p>For CentOS or other Red Hat-based distributions, you&#8217;ll use the YUM package manager. Here&#8217;s how to install KVM using YUM:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum update\nsudo yum install qemu-kvm libvirt libvirt-python libguestfs-tools virt-install\n<\/code><\/pre>\n<p>The <code>sudo yum update<\/code> command updates your package manager&#8217;s repository information. The second command then installs KVM and the necessary packages. <code>libvirt-python<\/code> and <code>libguestfs-tools<\/code> are additional libraries that help manage KVM. <code>virt-install<\/code> is a command-line tool used to create new virtual machines.<\/p>\n<h3>Install KVM with Pacman<\/h3>\n<p>If you&#8217;re using an Arch-based distribution like Manjaro, you&#8217;ll use the Pacman package manager. Here&#8217;s how to install KVM using Pacman:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo pacman -Syu\nsudo pacman -S qemu virt-manager virt-viewer dnsmasq vde2 bridge-utils openbsd-netcat\n<\/code><\/pre>\n<p>The command <code>sudo pacman -Syu<\/code> updates your package manager&#8217;s repository and upgrades all your system&#8217;s packages. The second command installs KVM along with other necessary packages. <code>dnsmasq<\/code> and <code>vde2<\/code> are used for networking, <code>openbsd-netcat<\/code> is a networking utility, and <code>virt-viewer<\/code> provides a graphical interface to view your virtual machines.<\/p>\n<h2>KVM Setup from Source Code<\/h2>\n<p>Installing KVM from source code gives you the most control over the installation process. You can customize the installation to fit your specific needs and even contribute to the project if you&#8217;re so inclined.<\/p>\n<pre><code class=\"language-bash line-numbers\">git clone https:\/\/github.com\/qemu\/qemu.git\n\ncd qemu\n\n.\/configure\n\nmake\n\nsudo make install\n<\/code><\/pre>\n<p>This sequence of commands clones the QEMU (the software that provides hardware emulation for KVM) repository, navigates into the downloaded directory, configures the build process, compiles the source code, and installs the compiled binaries.<\/p>\n<h2>Different Versions of KVM<\/h2>\n<h3>Install KVM Versions From Source Code<\/h3>\n<p>To install a specific version of KVM from source, you need to checkout the specific version tag after cloning the repository. For example, to install version 2.12.0, you would use the following commands:<\/p>\n<pre><code class=\"language-bash line-numbers\">git clone https:\/\/github.com\/qemu\/qemu.git\ncd qemu\ngit checkout v2.12.0\n.\/configure\nmake\nsudo make install\n<\/code><\/pre>\n<h3>How to InstalL KVM Using Package Managers<\/h3>\n<h4>APT<\/h4>\n<p>On Debian-based distributions, you can specify a package version to install with APT. However, the available versions are limited to those in the repositories your system is configured to use. Here&#8217;s how you can install a specific version:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install qemu-kvm=2.12.0-1ubuntu18.04.6\n<\/code><\/pre>\n<h4>YUM<\/h4>\n<p>On Red Hat-based distributions, you can use the <code>yum<\/code> command to install a specific version of a package. Like with APT, the available versions are limited to those in your configured repositories. Here&#8217;s how you can install a specific version:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install qemu-kvm-2.12.0-1.el7\n<\/code><\/pre>\n<h3>Version Comparison<\/h3>\n<p>Different versions of KVM come with different features, bug fixes, and compatibility changes. Here&#8217;s a brief comparison of some recent versions:<\/p>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Key Changes<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>2.12.0<\/td>\n<td>Added support for ARMv8.4 architecture, improved device emulation<\/td>\n<\/tr>\n<tr>\n<td>2.11.0<\/td>\n<td>Added support for Intel Processor Trace, improved Windows guest support<\/td>\n<\/tr>\n<tr>\n<td>2.10.0<\/td>\n<td>Added support for AMD Secure Memory Encryption, improved graphics emulation<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Using and Verifying New KVM Setup<\/h2>\n<h3>Using KVM Virtualization<\/h3>\n<p>To create a new virtual machine with KVM, you can use the <code>virt-install<\/code> command. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">virt-install --name ubuntu_vm --ram 4096 --disk path=\/var\/lib\/libvirt\/images\/ubuntu_vm.img,size=20 --vcpus 2 --os-type linux --os-variant ubuntu18.04 --network bridge=virbr0 --graphics none --console pty,target_type=serial --location 'http:\/\/us.archive.ubuntu.com\/ubuntu\/dists\/bionic\/main\/installer-amd64\/' --extra-args 'console=ttyS0,115200n8 serial'\n<\/code><\/pre>\n<p>This command creates a new Ubuntu 18.04 virtual machine with 4GB of RAM, 2 CPU cores, and a 20GB disk image.<\/p>\n<h3>Verifying Installation<\/h3>\n<p>To verify that KVM is installed correctly, you can use the <code>virsh<\/code> command to list your virtual machines:<\/p>\n<pre><code class=\"language-bash line-numbers\">virsh list --all\n<\/code><\/pre>\n<p>If KVM is installed correctly, this command will list all your virtual machines, or return an empty list if you don&#8217;t have any.<\/p>\n<h2>Alternatives to KVM Virtualization<\/h2>\n<p>While KVM is a robust and popular tool for virtualization in Linux, it&#8217;s not the only game in town. Let&#8217;s explore some alternative methods for virtualization, namely Xen and VirtualBox.<\/p>\n<h3>Diving into Xen<\/h3>\n<p>Xen is a bare metal hypervisor providing services that allow multiple computer operating systems to execute on the same computer hardware concurrently. Let&#8217;s see how to install Xen on Ubuntu:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install xen-hypervisor\n<\/code><\/pre>\n<p>After installation, you need to add Xen to the GRUB menu:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo sed -i 's\/GRUB_DEFAULT=0\/GRUB_DEFAULT=\"Xen 4.1-amd64\"\/' \/etc\/default\/grub\nsudo update-grub\n<\/code><\/pre>\n<p>After rebooting, you can check the Xen kernel version:<\/p>\n<pre><code class=\"language-bash line-numbers\">uname -r\n\n# Output:\n# 4.1.0-0.bpo.2-amd64\n<\/code><\/pre>\n<p>Xen provides a high level of performance and scalability but requires more technical expertise to set up and manage compared to KVM.<\/p>\n<h3>Venturing into VirtualBox<\/h3>\n<p>VirtualBox is an open-source virtualization software package for x86 virtualization, developed by Oracle. It provides a graphical user interface and is easier to set up for beginners. Let&#8217;s install VirtualBox on Ubuntu:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install virtualbox\n<\/code><\/pre>\n<p>You can verify the installation by running VirtualBox from the command line:<\/p>\n<pre><code class=\"language-bash line-numbers\">virtualbox\n<\/code><\/pre>\n<p>This command will open the VirtualBox GUI, where you can create and manage your virtual machines.<\/p>\n<p>VirtualBox is user-friendly and suitable for desktop users who want to run a different operating system in a window. However, it lacks the performance and scalability of KVM and Xen.<\/p>\n<h3>Xen vs VirtualBox vs KVM: A Comparison<\/h3>\n<table>\n<thead>\n<tr>\n<th>Feature<\/th>\n<th>KVM<\/th>\n<th>Xen<\/th>\n<th>VirtualBox<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Performance<\/td>\n<td>High<\/td>\n<td>High<\/td>\n<td>Moderate<\/td>\n<\/tr>\n<tr>\n<td>Scalability<\/td>\n<td>High<\/td>\n<td>High<\/td>\n<td>Low<\/td>\n<\/tr>\n<tr>\n<td>Ease of Use<\/td>\n<td>Moderate<\/td>\n<td>Low<\/td>\n<td>High<\/td>\n<\/tr>\n<tr>\n<td>Use Case<\/td>\n<td>Servers, Clouds<\/td>\n<td>Servers, Clouds<\/td>\n<td>Desktops<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>In conclusion, while KVM is a solid choice for most Linux users, Xen and VirtualBox offer viable alternatives depending on your specific needs and expertise level.<\/p>\n<h2>Troubleshooting Common KVM Issues<\/h2>\n<p>While KVM is a powerful tool, you might encounter some issues during its installation or usage. Let&#8217;s discuss some common problems and their solutions.<\/p>\n<h3>Verifying KVM Virtualization Support<\/h3>\n<p>KVM requires that your processor supports hardware virtualization. If KVM fails to install or start, it might be because this feature isn&#8217;t enabled in your BIOS\/UEFI settings. You can check if your processor supports hardware virtualization with the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">egrep -c '(vmx|svm)' \/proc\/cpuinfo\n\n# Output:\n# 4\n<\/code><\/pre>\n<p>If the output is 0, your processor doesn&#8217;t support hardware virtualization, or the feature isn&#8217;t enabled in your BIOS\/UEFI settings. If the output is greater than 0, your processor supports hardware virtualization.<\/p>\n<h3>Solving Issues in a KVM Setup<\/h3>\n<p>If KVM fails to install, it might be because your system&#8217;s package lists are outdated. You can update them with the following commands:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt update  # For Debian-based distributions\nsudo yum update  # For Red Hat-based distributions\nsudo pacman -Syu  # For Arch-based distributions\n<\/code><\/pre>\n<p>After updating your package lists, you can try installing KVM again.<\/p>\n<h3>Addressing Network Issues<\/h3>\n<p>If your virtual machines can&#8217;t connect to the network, it might be because the network bridge isn&#8217;t configured correctly. You can list your network bridges with the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">brctl show\n\n# Output:\n# bridge name     bridge id               STP enabled     interfaces\n# virbr0          8000.525400c7e4f3       yes             virbr0-nic\n#                                                         vnet0\n<\/code><\/pre>\n<p>If your bridge isn&#8217;t listed or doesn&#8217;t have any interfaces, you&#8217;ll need to configure it. The process varies depending on your network setup and distribution, so consult your distribution&#8217;s documentation for detailed instructions.<\/p>\n<p>Remember, troubleshooting is a key skill in any IT field. Don&#8217;t be discouraged by these issues; they&#8217;re opportunities to learn and become a more proficient Linux user.<\/p>\n<h2>Understanding KVM Virtualization<\/h2>\n<p>Virtualization is a technology that allows you to create multiple simulated environments or dedicated resources from a single, physical hardware system. It&#8217;s a way of maximizing physical resources to get the most out of an investment in hardware.<\/p>\n<h3>Virtualization: The What and the Why<\/h3>\n<p>In essence, virtualization lets you split one physical machine into multiple &#8216;virtual&#8217; machines, each with its own operating system and applications. This technology has revolutionized the IT industry by allowing more efficient utilization of computer hardware.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Let's list the VMs on our system\nvirsh list --all\n\n# Output:\n#  Id   Name   State\n# ----------------------\n#  -    VM1   shut off\n#  -    VM2   shut off\n<\/code><\/pre>\n<p>In the above example, <code>virsh list --all<\/code> command lists all the virtual machines on the system. Here, VM1 and VM2 are separate virtual machines, each capable of running its own operating system and applications, yet both hosted on the same physical machine.<\/p>\n<h3>Kernel-based Virtual Machine (KVM)<\/h3>\n<p>KVM is a full virtualization solution for Linux on x86 hardware containing virtualization extensions (Intel VT or AMD-V). It consists of a loadable kernel module, <code>kvm.ko<\/code>, that provides the core virtualization infrastructure and a processor-specific module, <code>kvm-intel.ko<\/code> or <code>kvm-amd.ko<\/code>.<\/p>\n<p>KVM also requires a modified QEMU although work is underway to get the required changes upstream.<\/p>\n<p>Using KVM, one can run multiple virtual machines running unmodified Linux or Windows images. Each virtual machine has private virtualized hardware: a network card, disk, graphics adapter, etc.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Let's check the version of KVM installed on our system\nkvm --version\n\n# Output:\n# QEMU emulator version 2.11.1(Debian 1:2.11+dfsg-1ubuntu7.36)\n<\/code><\/pre>\n<p>In the above example, <code>kvm --version<\/code> command displays the version of KVM installed on the system. This can be helpful when troubleshooting or when certain features are only available in specific versions.<\/p>\n<p>Understanding these fundamentals is key to leveraging the power of KVM and virtualization in general. With this knowledge, you can make informed decisions about your virtualization needs.<\/p>\n<h2>Practical Uses of KVM Virtualization<\/h2>\n<h3>Cloud Computing and KVM Virtualization<\/h3>\n<p>Virtualization is a cornerstone of cloud computing. It allows for the creation of &#8216;virtual&#8217; resources, such as servers, storage, and networks. These resources can be provisioned as needed, providing the flexibility and scalability that define cloud computing.<\/p>\n<p>KVM plays a significant role in this aspect. It allows cloud service providers to create and manage virtual machines on their Linux servers, maximizing their hardware utilization and providing customers with customizable computing resources.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Creating a VM in a cloud environment using KVM\nvirt-install --name cloud_vm --ram 8192 --disk path=\/var\/lib\/libvirt\/images\/cloud_vm.img,size=50 --vcpus 4 --os-type linux --os-variant ubuntu18.04 --network bridge=virbr0 --graphics none --console pty,target_type=serial --location 'http:\/\/us.archive.ubuntu.com\/ubuntu\/dists\/bionic\/main\/installer-amd64\/' --extra-args 'console=ttyS0,115200n8 serial'\n\n# Output:\n# 'cloud_vm' created\n<\/code><\/pre>\n<p>In the above example, we&#8217;re creating a virtual machine in a hypothetical cloud environment. This VM has 8GB of RAM, 4 CPU cores, and a 50GB disk image. It&#8217;s running Ubuntu 18.04 and is connected to the network via a bridge.<\/p>\n<h3>Virtualization in Server Management<\/h3>\n<p>In server management, virtualization allows for better resource allocation and isolation. It enables running multiple applications or services on the same server, each within its own virtual machine. This approach prevents applications from interfering with each other while maximizing hardware utilization.<\/p>\n<p>KVM is a popular choice for server virtualization due to its performance and scalability. It&#8217;s used in many enterprise environments, powering everything from small businesses&#8217; servers to data centers.<\/p>\n<h2>Exploring Containerization<\/h2>\n<p>While virtualization involves running multiple operating systems on a single hardware system, containerization involves running multiple applications on a single operating system with isolation. This approach has gained popularity due to its lightweight nature and the rise of microservices architecture.<\/p>\n<p>While KVM is not a containerization tool, understanding it can provide a solid foundation for learning about containerization. Tools like Docker and Kubernetes have become industry standards in this field.<\/p>\n<h3>Further Resources for KVM Virtualization<\/h3>\n<ol>\n<li><a href=\"https:\/\/www.proxmox.com\/en\/\" target=\"_blank\" rel=\"noopener\">Proxmox Virtual Environment<\/a>: Detailed guides and tutorials on using KVM and other virtualization technologies in Red Hat environments.<\/p>\n<\/li>\n<li>\n<p><a href=\"http:\/\/www.linux-kvm.org\/page\/Main_Page\" target=\"_blank\" rel=\"noopener\">Linux KVM<\/a>: The official KVM website, featuring a wealth of resources, including a user guide, FAQ, and links to community resources.<\/p>\n<\/li>\n<li>\n<p><a href=\"https:\/\/access.redhat.com\/documentation\/en-us\/red_hat_virtualization\/4.3\/\" target=\"_blank\" rel=\"noopener\">Red Hat Virtualization Documentation<\/a>: Proxmox VE is a complete open-source platform for all-inclusive enterprise virtualization that tightly integrates KVM hypervisor and LXC containers, software-defined storage and networking functionality on a single platform.<\/p>\n<\/li>\n<\/ol>\n<h2>Recap: KVM Tutorial for Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved into the process of installing and using KVM (Kernel-based Virtual Machine) on Linux. We&#8217;ve explored how this robust tool allows you to create and manage virtual machines, turning your Linux system into a personal cloud.<\/p>\n<p>We started with the basics, explaining how to install KVM on different Linux distributions and how to use it to create a virtual machine. We then ventured into more advanced territory, discussing how to install KVM from source code, how to install different versions, and how to use KVM effectively.<\/p>\n<p>Along the way, we tackled common challenges you might encounter when using KVM, such as verifying hardware virtualization support, solving installation failures, and addressing network issues. We provided you with practical solutions and examples to help you overcome these hurdles.<\/p>\n<p>We also looked at alternative approaches to virtualization in Linux, comparing KVM with other tools like Xen and VirtualBox. Here&#8217;s a quick comparison of these methods:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Performance<\/th>\n<th>Scalability<\/th>\n<th>Ease of Use<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>KVM<\/td>\n<td>High<\/td>\n<td>High<\/td>\n<td>Moderate<\/td>\n<\/tr>\n<tr>\n<td>Xen<\/td>\n<td>High<\/td>\n<td>High<\/td>\n<td>Low<\/td>\n<\/tr>\n<tr>\n<td>VirtualBox<\/td>\n<td>Moderate<\/td>\n<td>Low<\/td>\n<td>High<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re a beginner venturing into Linux virtualization or an experienced sysadmin looking to level up your skills, we hope this guide has given you a deeper understanding of KVM and its capabilities.<\/p>\n<p>With its balance of performance, scalability, and moderate ease of use, KVM is a powerful tool for Linux virtualization. Now, you&#8217;re well equipped to harness its power. Happy virtualizing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Throughought our data center operations at IOFLOOD, we&#8217;ve needed the best virtualization tools to maximize resources on our bare metal cloud servers. An optimized kvm setup is fundamental to achieve this goal. This article provides a comprehensive guide on a Linux KVM install, to assist our customers diving into virtualization. In this Linux KVM tutorial, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":21658,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-7688","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","cat-3-id","has_thumb"],"_links":{"self":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7688","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/comments?post=7688"}],"version-history":[{"count":11,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7688\/revisions"}],"predecessor-version":[{"id":21823,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/7688\/revisions\/21823"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/21658"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=7688"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=7688"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=7688"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}