{"id":6636,"date":"2024-01-07T11:21:12","date_gmt":"2024-01-07T18:21:12","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6636"},"modified":"2024-01-07T11:23:36","modified_gmt":"2024-01-07T18:23:36","slug":"install-lsblk-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-lsblk-command-linux\/","title":{"rendered":"Installing &#8216;lsblk&#8217; Command | Linux Disk Monitoring Guide"},"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\/01\/Image-of-a-Linux-terminal-illustrating-the-installation-of-the-lsblk-command-used-for-listing-block-devices-and-their-information-300x300.jpg\" alt=\"Image of a Linux terminal illustrating the installation of the lsblk command used for listing block devices and their information\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you struggling with monitoring disk spaces in Linux? Like a vigilant watchman, the &#8216;lsblk&#8217; command in Linux can help you keep track of your block devices. The &#8216;lsblk&#8217; command is readily available on most package management systems, making it a straightforward process once you understand the steps. Whether you&#8217;re using Debian and Ubuntu for APT package management or CentOS and AlmaLinux for YUM package manager, this guide has got you covered.<\/p>\n<p><strong>In this comprehensive guide, we will walk you through the process of installing and using the &#8216;lsblk&#8217; command in Linux.<\/strong> We will delve into advanced topics like compiling from source and installing a specific version of the command. Finally, we will wrap up with guidance on how to use the command and verify the correct version is installed.<\/p>\n<p>So, let&#8217;s dive in and start mastering disk monitoring by installing the &#8216;lsblk&#8217; command in Linux!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;lsblk&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  In most Linux distributions, the <code>'lsblk'<\/code> command comes pre-installed, you can verify this with <code>lsblk --version<\/code>. However, if it is not installed to your system, you can add it via the &#8216;util-linux&#8217; package with, <code>sudo apt-get install util-linux<\/code> or <code>sudo yum install util-linux<\/code>.\n<\/p><\/blockquote>\n<p>To use it, simply type the following command in your terminal and press Enter:<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk\n<\/code><\/pre>\n<p>This command will display information about all your block devices, including their names, types, mount points, and sizes. Here&#8217;s an example of what you might see:<\/p>\n<pre><code class=\"language-bash line-numbers\">NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT\nsda      8:0    0 931.5G  0 disk \nsda1   8:1    0   512M  0 part \/boot\/efi\nsda2   8:2    0   931G  0 part \/\n<\/code><\/pre>\n<p>In this output, &#8216;sda&#8217; is the name of a disk, &#8216;sda1&#8217; and &#8216;sda2&#8217; are its partitions, and &#8216;\/boot\/efi&#8217; and &#8216;\/&#8217; are their mount points.<\/p>\n<p>This is just a basic way to use the &#8216;lsblk&#8217; command in Linux, but there&#8217;s much more to learn about this powerful tool. Continue reading for more detailed information and advanced usage scenarios.<\/p>\n<h2>Understanding and Installing the &#8216;lsblk&#8217; Command<\/h2>\n<p>The &#8216;lsblk&#8217; command in Linux is a utility that provides information about all the block devices on your system. Block devices include hard drives, SSDs, and their partitions, USB drives, and more. The &#8216;lsblk&#8217; command helps you monitor these devices, which is especially useful for system administrators managing storage resources.<\/p>\n<h3>Installing &#8216;lsblk&#8217; with APT<\/h3>\n<p>On Debian-based systems like Ubuntu, you can use the Advanced Package Tool (APT) to install &#8216;lsblk&#8217;. However, in most cases, &#8216;lsblk&#8217; comes pre-installed. Here&#8217;s how you can verify if &#8216;lsblk&#8217; is already installed on your system:<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk --version\n<\/code><\/pre>\n<pre><code class=\"language-bash line-numbers\"># Output:\n# lsblk from util-linux 2.36.1\n<\/code><\/pre>\n<p>If &#8216;lsblk&#8217; is not installed, you can install it with the &#8216;util-linux&#8217; package using the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install util-linux\n<\/code><\/pre>\n<h3>Installing &#8216;lsblk&#8217; with YUM<\/h3>\n<p>On Red Hat-based systems like CentOS, you can use the Yellowdog Updater, Modified (YUM) to install &#8216;lsblk&#8217;. Similar to APT, &#8216;lsblk&#8217; is often pre-installed. You can verify its presence or install it with the &#8216;util-linux&#8217; package as follows:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install util-linux\n<\/code><\/pre>\n<h3>Installing &#8216;lsblk&#8217; with Zypper<\/h3>\n<p>On SUSE Linux distributions, you can use the Zypper package manager to install &#8216;lsblk&#8217;. As with the other distributions, &#8216;lsblk&#8217; usually comes pre-installed. If it&#8217;s not, you can install it with the &#8216;util-linux&#8217; package as follows:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo zypper install util-linux\n<\/code><\/pre>\n<p>After installation, you can use the &#8216;lsblk&#8217; command to display a list of all block devices, along with their names, types, sizes, and mount points. In the next section, we&#8217;ll dive deeper into how to use the &#8216;lsblk&#8217; command in Linux.<\/p>\n<h2>Installing &#8216;lsblk&#8217; Command from Source Code<\/h2>\n<p>If you need the latest features or bug fixes, you might want to install &#8216;lsblk&#8217; from source code. The source code is usually available on the official website or a trusted repository like GitHub. Here&#8217;s how you can do it:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Download the source code\nwget https:\/\/github.com\/karelzak\/util-linux\/archive\/refs\/tags\/v2.37.tar.gz\n\n# Extract the tarball\n tar -xvf v2.37.tar.gz\n\n# Change to the directory\n cd util-linux-2.37\/\n\n# Configure the source code\n.\/configure\n\n# Compile the code\nmake\n\n# Install the program\nsudo make install\n<\/code><\/pre>\n<p>This will install the latest version of &#8216;lsblk&#8217; on your system. You can verify the installation using the &#8216;&#8211;version&#8217; flag:<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk --version\n<\/code><\/pre>\n<h2>Installing Different Versions of &#8216;lsblk&#8217;<\/h2>\n<h3>From Source<\/h3>\n<p>To install a specific version of &#8216;lsblk&#8217;, you need to download the corresponding source code. You can find the source code for all versions on the official website or GitHub repository. Replace &#8216;v2.37&#8217; in the wget command with the version number you want.<\/p>\n<h3>Using Package Managers<\/h3>\n<h4>APT<\/h4>\n<p>On Debian-based systems, you can install a specific version of a package using the following syntax:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install util-linux=2.36.1-7\n<\/code><\/pre>\n<p>Replace &#8216;2.36.1-7&#8217; with the version number you want.<\/p>\n<h4>YUM<\/h4>\n<p>On Red Hat-based systems, you can list all available versions of a package using the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">yum --showduplicates list util-linux\n<\/code><\/pre>\n<p>You can then install a specific version using the following syntax:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install util-linux-2.36.1-7.el8\n<\/code><\/pre>\n<p>Replace &#8216;2.36.1-7.el8&#8217; with the version number you want.<\/p>\n<h3>Version Comparison<\/h3>\n<p>Different versions of &#8216;lsblk&#8217; come with various features, bug fixes, and compatibility updates. Here&#8217;s a summary of some key changes:<\/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.37<\/td>\n<td>Added support for new file systems<\/td>\n<\/tr>\n<tr>\n<td>2.36<\/td>\n<td>Fixed bugs in display of block devices<\/td>\n<\/tr>\n<tr>\n<td>2.35<\/td>\n<td>Improved compatibility with older Linux kernels<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Using the &#8216;lsblk&#8217; Command<\/h2>\n<h3>Basic Usage<\/h3>\n<p>You can list all block devices with their sizes in a human-readable format using the &#8216;-b&#8217; and &#8216;-H&#8217; flags:<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk -b -H\n<\/code><\/pre>\n<p>This will display the sizes in bytes, which can be useful for scripts or other automated tasks.<\/p>\n<h3>Verifying the Installation<\/h3>\n<p>You can verify the correct installation of &#8216;lsblk&#8217; using the &#8216;&#8211;version&#8217; flag:<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk --version\n<\/code><\/pre>\n<p>This will display the version number of &#8216;lsblk&#8217;, which should match the version you installed.<\/p>\n<h2>Alternative Disk Monitoring Methods in Linux<\/h2>\n<p>While &#8216;lsblk&#8217; is a powerful tool for monitoring disk spaces in Linux, it&#8217;s not the only one. There are other commands, such as &#8216;df&#8217; and &#8216;du&#8217;, which you can use to manage your disk spaces efficiently. Let&#8217;s explore these alternatives.<\/p>\n<h3>Using the &#8216;df&#8217; Command<\/h3>\n<p>The &#8216;df&#8217; command, short for disk free, is a built-in Linux command that displays the amount of disk space used and available on filesystems. Here&#8217;s how you can use it:<\/p>\n<pre><code class=\"language-bash line-numbers\">df -h\n<\/code><\/pre>\n<pre><code class=\"language-bash line-numbers\"># Output:\n# Filesystem      Size  Used Avail Use% Mounted on\n# udev            3.9G     0  3.9G   0% \/dev\n# tmpfs           797M  1.9M  795M   1% \/run\n# \/dev\/sda2       454G  180G  250G  42% \/\n<\/code><\/pre>\n<p>The &#8216;-h&#8217; flag makes the output human-readable by displaying sizes in &#8216;K&#8217;, &#8216;M&#8217;, &#8216;G&#8217; instead of in blocks.<\/p>\n<h3>Using the &#8216;du&#8217; Command<\/h3>\n<p>The &#8216;du&#8217; command, short for disk usage, is another built-in Linux command that estimates file and directory space usage. Here&#8217;s how you can use it:<\/p>\n<pre><code class=\"language-bash line-numbers\">du -sh \/home\/user\n<\/code><\/pre>\n<pre><code class=\"language-bash line-numbers\"># Output:\n# 4.2G    \/home\/user\n<\/code><\/pre>\n<p>The &#8216;-s&#8217; flag summarizes the total size of the specified directory, and the &#8216;-h&#8217; flag makes the output human-readable.<\/p>\n<h3>Comparing &#8216;lsblk&#8217;, &#8216;df&#8217;, and &#8216;du&#8217;<\/h3>\n<p>While &#8216;lsblk&#8217;, &#8216;df&#8217;, and &#8216;du&#8217; can all help you monitor disk spaces in Linux, they serve different purposes and provide different information. Here&#8217;s a comparison:<\/p>\n<table>\n<thead>\n<tr>\n<th>Command<\/th>\n<th>Information Provided<\/th>\n<th>Use Case<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>lsblk<\/td>\n<td>Block devices and their attributes<\/td>\n<td>When you need detailed information about all block devices<\/td>\n<\/tr>\n<tr>\n<td>df<\/td>\n<td>Disk space usage of filesystems<\/td>\n<td>When you want to check the disk space usage of your filesystems<\/td>\n<\/tr>\n<tr>\n<td>du<\/td>\n<td>Disk space usage of directories and files<\/td>\n<td>When you want to find out the disk space taken up by specific directories or files<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>In conclusion, while &#8216;lsblk&#8217; is a powerful command for monitoring disk spaces in Linux, &#8216;df&#8217; and &#8216;du&#8217; are also valuable tools that you can use depending on your specific needs.<\/p>\n<h2>Troubleshooting &#8216;lsblk&#8217; Command Issues<\/h2>\n<p>While &#8216;lsblk&#8217; is a reliable tool, you may encounter some issues while using it. Let&#8217;s discuss common problems and their solutions.<\/p>\n<h3>&#8216;lsblk&#8217; Command Not Found<\/h3>\n<p>This is the most common issue. If &#8216;lsblk&#8217; is not installed, or if its path is not included in the PATH environment variable, you&#8217;ll see a &#8216;command not found&#8217; error. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk\n<\/code><\/pre>\n<pre><code class=\"language-bash line-numbers\"># Output:\n# bash: lsblk: command not found\n<\/code><\/pre>\n<p>To resolve this, you can install &#8216;lsblk&#8217; using your package manager as we discussed earlier. If &#8216;lsblk&#8217; is installed but its path is not included in the PATH variable, you can add it using the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">export PATH=$PATH:\/path\/to\/lsblk\n<\/code><\/pre>\n<p>Replace &#8216;\/path\/to\/lsblk&#8217; with the actual path to &#8216;lsblk&#8217;. You can find this path using the &#8216;which&#8217; command:<\/p>\n<pre><code class=\"language-bash line-numbers\">which lsblk\n<\/code><\/pre>\n<h3>Errors in &#8216;lsblk&#8217; Output<\/h3>\n<p>Sometimes, &#8216;lsblk&#8217; might display errors or warnings in its output. These are usually due to problems with the block devices themselves, not with &#8216;lsblk&#8217;. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk\n<\/code><\/pre>\n<pre><code class=\"language-bash line-numbers\"># Output:\n# lsblk: \/dev\/sda: not a block device\n<\/code><\/pre>\n<p>In this case, &#8216;\/dev\/sda&#8217; is not recognized as a block device. You can check the device&#8217;s status using the &#8216;dmesg&#8217; command:<\/p>\n<pre><code class=\"language-bash line-numbers\">dmesg | grep sda\n<\/code><\/pre>\n<p>This will display the kernel messages related to &#8216;sda&#8217;, which can help you troubleshoot the issue.<\/p>\n<p>Remember, understanding the &#8216;lsblk&#8217; command and its potential issues will help you effectively monitor disk spaces in Linux. Stay tuned for more advanced topics and related concepts.<\/p>\n<h2>Understanding Block Devices in Linux<\/h2>\n<p>Before diving deeper into the &#8216;lsblk&#8217; command, it&#8217;s crucial to understand what block devices are in Linux. A block device is a type of device you can read from or write to in blocks of data. Examples include hard drives, SSDs, and USB drives. The &#8216;lsblk&#8217; command provides information about these block devices.<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk\n<\/code><\/pre>\n<pre><code class=\"language-bash line-numbers\"># Output:\n# NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT\n# sda      8:0    0 931.5G  0 disk \n# sda1   8:1    0   512M  0 part \/boot\/efi\n# sda2   8:2    0   931G  0 part \/\n<\/code><\/pre>\n<p>In the output, &#8216;sda&#8217; is a disk, and &#8216;sda1&#8217; and &#8216;sda2&#8217; are its partitions. Each block device has a major and minor number (&#8216;MAJ:MIN&#8217;), which the system uses to identify it.<\/p>\n<h2>Importance of Monitoring Disk Spaces in Linux<\/h2>\n<p>Monitoring disk spaces in Linux is crucial for several reasons. It allows you to:<\/p>\n<ul>\n<li><strong>Prevent data loss:<\/strong> If your disk is running out of space, new data might not be saved, or existing data might be overwritten.<\/p>\n<\/li>\n<li>\n<p><strong>Optimize performance:<\/strong> Full or nearly full disks can slow down your system. By monitoring disk spaces, you can take action before this happens.<\/p>\n<\/li>\n<li>\n<p><strong>Plan for upgrades:<\/strong> If you consistently use up most of your disk spaces, it might be time to upgrade your storage resources.<\/p>\n<\/li>\n<\/ul>\n<p>The &#8216;lsblk&#8217; command is a handy tool for monitoring disk spaces in Linux. By providing detailed information about all block devices, it enables you to keep track of your storage resources and make informed decisions.<\/p>\n<h2>Disk Space Monitoring: A Critical Aspect of System Administration<\/h2>\n<p>As a system administrator, monitoring disk space is a crucial task. It&#8217;s not just about knowing how much space is left on your disks. It&#8217;s about understanding how your storage resources are being used, which can help you optimize your system&#8217;s performance, plan for future upgrades, and even prevent security issues.<\/p>\n<p>For instance, an unexpected decrease in available disk space could indicate a security breach, such as a log file inflation attack where an attacker fills up your disk space with large log files, causing your system to crash.<\/p>\n<h2>Exploring File Systems and Partitions in Linux<\/h2>\n<p>If you&#8217;re interested in disk space monitoring, you might also want to explore related concepts like file systems and partitions in Linux. A file system determines how data is stored and retrieved, while a partition is a section of the disk that operates as an independent unit.<\/p>\n<p>You can use the &#8216;lsblk&#8217; command to list all your partitions:<\/p>\n<pre><code class=\"language-bash line-numbers\">lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL\n<\/code><\/pre>\n<pre><code class=\"language-bash line-numbers\"># Output:\n# NAME   FSTYPE     SIZE MOUNTPOINT LABEL\n# sda             931.5G            \n# \u251c\u2500sda1 vfat       512M \/boot\/efi  EFI\n# \u2514\u2500sda2 ext4     931G   \/          \n<\/code><\/pre>\n<p>In this output, &#8216;sda1&#8217; and &#8216;sda2&#8217; are partitions of the &#8216;sda&#8217; disk, &#8216;vfat&#8217; and &#8216;ext4&#8217; are their file systems, and &#8216;\/boot\/efi&#8217; and &#8216;\/&#8217; are their mount points.<\/p>\n<h3>Further Resources for Mastering Linux Disk Monitoring<\/h3>\n<p>Here are some additional resources that can help you deepen your understanding of disk space monitoring in Linux:<\/p>\n<ul>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/opensource.com\/life\/16\/10\/introduction-linux-filesystems\" target=\"_blank\" rel=\"noopener\">Linux File Systems Explained<\/a>: This article provides a comprehensive overview of file systems in Linux.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.howtogeek.com\/106873\/how-to-use-fdisk-to-manage-partitions-on-linux\/\" target=\"_blank\" rel=\"noopener\">Understanding Linux Partitions<\/a>: This guide explains how partitions work in Linux and how you can manage them.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.tecmint.com\/create-lvm-storage-in-linux\/\" target=\"_blank\" rel=\"noopener\">Linux Disk Management<\/a>: This tutorial covers advanced topics in Linux disk management, including RAID arrays and LVM.<\/p>\n<\/li>\n<\/ul>\n<h2>Wrapping Up: Installing the &#8216;lsblk&#8217; Command in Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve explored the ins and outs of the &#8216;lsblk&#8217; command, a crucial tool for monitoring disk spaces in Linux. We&#8217;ve covered everything from installation across various package management systems like Debian, Ubuntu, CentOS, and AlmaLinux to advanced topics like compiling from source and installing a specific version of the command.<\/p>\n<p>We began with the basics, understanding what the &#8216;lsblk&#8217; command is and how to install it using various package managers. We then delved into more advanced usage, such as installing &#8216;lsblk&#8217; from source code and installing specific versions of the command. We also discussed how to use the command and how to verify the correct version.<\/p>\n<p>Along the way, we tackled common issues that you might encounter when using the &#8216;lsblk&#8217; command, such as the &#8216;command not found&#8217; error and errors in the &#8216;lsblk&#8217; output, providing you with solutions for each issue. We also explored alternative approaches to disk space monitoring in Linux, comparing &#8216;lsblk&#8217; with other commands like &#8216;df&#8217; and &#8216;du&#8217;.<\/p>\n<p>Here&#8217;s a quick comparison of these methods:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Information Provided<\/th>\n<th>Use Case<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>lsblk<\/td>\n<td>Block devices and their attributes<\/td>\n<td>When you need detailed information about all block devices<\/td>\n<\/tr>\n<tr>\n<td>df<\/td>\n<td>Disk space usage of filesystems<\/td>\n<td>When you want to check the disk space usage of your filesystems<\/td>\n<\/tr>\n<tr>\n<td>du<\/td>\n<td>Disk space usage of directories and files<\/td>\n<td>When you want to find out the disk space taken up by specific directories or files<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re just starting out with the &#8216;lsblk&#8217; command or you&#8217;re looking to level up your Linux system administration skills, we hope this guide has given you a deeper understanding of the &#8216;lsblk&#8217; command and its capabilities.<\/p>\n<p>With its ability to provide detailed information about all block devices, the &#8216;lsblk&#8217; command is a powerful tool for monitoring disk spaces in Linux. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you struggling with monitoring disk spaces in Linux? Like a vigilant watchman, the &#8216;lsblk&#8217; command in Linux can help you keep track of your block devices. The &#8216;lsblk&#8217; command is readily available on most package management systems, making it a straightforward process once you understand the steps. Whether you&#8217;re using Debian and Ubuntu for [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15313,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6636","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bash","category-linux","category-sysadmin","cat-124-id","cat-3-id","cat-9-id","has_thumb"],"_links":{"self":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6636","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=6636"}],"version-history":[{"count":6,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6636\/revisions"}],"predecessor-version":[{"id":15351,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6636\/revisions\/15351"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/15313"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6636"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6636"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6636"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}