{"id":6588,"date":"2024-01-02T14:51:12","date_gmt":"2024-01-02T21:51:12","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6588"},"modified":"2024-01-02T14:52:23","modified_gmt":"2024-01-02T21:52:23","slug":"install-du-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-du-command-linux\/","title":{"rendered":"&#8216;du&#8217; Command Install Guide for Linux Disk Management"},"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\/Digital-illustration-of-a-Linux-terminal-depicting-the-installation-of-the-du-command-for-estimating-file-space-usage-300x300.jpg\" alt=\"Digital illustration of a Linux terminal depicting the installation of the du command for estimating file space usage\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you looking to install the <code>du<\/code> command on your Linux system but aren&#8217;t sure where to start? Many Linux users, particularly beginners, might find the task daunting. Yet, the <code>du<\/code> command is a powerful tool for managing disk space; it&#8217;s a utility worth mastering. Du is also readily available on most package management systems, making it a straightforward process once you know-how.<\/p>\n<p><strong>In this tutorial, we will guide you on how to install the <code>du<\/code> command on your Linux system.<\/strong> We will show you methods for both APT and YUM-based distributions, delve into compiling <code>du<\/code> from source, installing a specific version, and finally, how to use the <code>du<\/code> command and ensure it&#8217;s installed correctly.<\/p>\n<p>So, let&#8217;s dive in and begin installing <code>du<\/code> on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;du&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  The <code>'du'<\/code> command is typically pre-installed on most Linux distributions. However, if it&#8217;s not, you can install it from your distribution&#8217;s by using <code>sudo apt-get install coreutils<\/code>, and on Red Hat-based systems like CentOS, you can use <code>sudo yum install coreutils<\/code>. To use the &#8216;du&#8217; command, the basic syntax is <code>du [options] [file or directory]<\/code>.\n<\/p><\/blockquote>\n<p>For example:<\/p>\n<pre><code class=\"language-bash line-numbers\">du -sh \/home\/user\n\n# Output:\n# 23M     \/home\/user\n<\/code><\/pre>\n<p>This command will display the total disk usage of the \/home\/user directory in a human-readable format (23M stands for 23 Megabytes).<\/p>\n<p>This is just a basic way to install and use the &#8216;du&#8217; command in Linux, but there&#8217;s much more to learn about this versatile tool. Continue reading for more detailed information and advanced usage scenarios.<\/p>\n<h2>Getting Started with the &#8216;du&#8217; Command in Linux<\/h2>\n<p>The &#8216;du&#8217; command, short for &#8216;Disk Usage&#8217;, is a standard command in Linux that calculates the size of a directory or a file. It&#8217;s an incredibly useful tool for monitoring the disk space used by files and directories on your system. This can be particularly helpful when you&#8217;re trying to free up space or track down large files that are taking up more room than expected.<\/p>\n<h3>Installing &#8216;du&#8217; with APT<\/h3>\n<p>If you&#8217;re using a Debian-based distribution like Ubuntu, the &#8216;du&#8217; command is a part of the coreutils package, which is installed by default. However, if for some reason it&#8217;s not installed, you can install it using the Advanced Packaging Tool (APT). Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get update\nsudo apt-get install coreutils\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# coreutils is already the newest version (8.30-3ubuntu2).\n# 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n<\/code><\/pre>\n<p>This will update your package lists and then install the coreutils package, which includes the &#8216;du&#8217; command.<\/p>\n<h3>Installing &#8216;du&#8217; with YUM<\/h3>\n<p>If you&#8217;re using a Red Hat-based distribution like CentOS, the &#8216;du&#8217; command is also part of the coreutils package. If it&#8217;s not installed, you can use the Yellowdog Updater, Modified (YUM) to install it. Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum check-update\nsudo yum install coreutils\n\n# Output:\n# Loaded plugins: fastestmirror, ovl\n# Loading mirror speeds from cached hostfile\n# Package coreutils-8.22-24.el7.x86_64 already installed and latest version\n# Nothing to do\n<\/code><\/pre>\n<p>This will check for updates and then install the coreutils package, which includes the &#8216;du&#8217; command.<\/p>\n<h3>Using the &#8216;du&#8217; Command<\/h3>\n<p>Once installed, you can use the &#8216;du&#8217; command to check the disk usage of a specific directory. For instance, to check the disk usage of the \/var directory, you can use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">du \/var\n\n# Output:\n# 8       \/var\/empty\n# 4       \/var\/tmp\n# 12      \/var\n<\/code><\/pre>\n<p>This will display the disk usage of each subdirectory inside \/var. The numbers represent the disk usage in kilobytes.<\/p>\n<p>Stay tuned for more advanced usage scenarios in the next section!<\/p>\n<h2>Installing &#8216;du&#8217; from Source Code<\/h2>\n<p>While package managers like APT and YUM make it easy to install the &#8216;du&#8217; command, you might want to compile it from source. This allows you to get the latest version directly from the developers, including any new features or bug fixes. Here&#8217;s how to do it:<\/p>\n<pre><code class=\"language-bash line-numbers\">cd \/tmp\nwget http:\/\/ftp.gnu.org\/gnu\/coreutils\/coreutils-8.32.tar.xz\ntar xvJf coreutils-8.32.tar.xz\ncd coreutils-8.32\n.\/configure\nmake\nsudo make install\n\n# Output:\n# ... (a lot of compilation output) ...\n# make[2]: Leaving directory '\/tmp\/coreutils-8.32\/src'\n# make[1]: Leaving directory '\/tmp\/coreutils-8.32\/src'\n# Making install in man\n# make[1]: Entering directory '\/tmp\/coreutils-8.32\/man'\n# make  install-am\n# make[2]: Entering directory '\/tmp\/coreutils-8.32\/man'\n# make[3]: Entering directory '\/tmp\/coreutils-8.32\/man'\n# make[3]: Nothing to be done for 'install-exec-am'.\n# ... (more output) ...\n<\/code><\/pre>\n<p>This will download the source code for the latest version of the coreutils package, extract it, configure the build, compile the code, and install it on your system.<\/p>\n<h2>Installing Different Versions of &#8216;du&#8217;<\/h2>\n<p>Different versions of the &#8216;du&#8217; command might have different features or bug fixes. Therefore, you might want to install a specific version depending on your needs.<\/p>\n<h3>Installing a Specific Version from Source<\/h3>\n<p>To install a specific version from source, you simply need to replace the version number in the URL of the wget command. For instance, to install version 8.31, you would use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget http:\/\/ftp.gnu.org\/gnu\/coreutils\/coreutils-8.31.tar.xz\n<\/code><\/pre>\n<h3>Installing a Specific Version with APT<\/h3>\n<p>On Debian-based systems, you can use the APT package manager to install a specific version of a package. However, the version must be available in the repositories you have enabled. Here&#8217;s how to do it:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install coreutils=8.31-1\n<\/code><\/pre>\n<h3>Installing a Specific Version with YUM<\/h3>\n<p>On Red Hat-based systems, you can use the YUM package manager to install a specific version of a package. However, the version must be available in the repositories you have enabled. Here&#8217;s how to do it:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install coreutils-8.31-1\n<\/code><\/pre>\n<h3>Version Comparison<\/h3>\n<p>Here&#8217;s a comparison of the features and changes in the recent versions of the &#8216;du&#8217; command:<\/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>8.32<\/td>\n<td>Added the &#8211;files0-from option<\/td>\n<\/tr>\n<tr>\n<td>8.31<\/td>\n<td>Fixed a bug with the -D option<\/td>\n<\/tr>\n<tr>\n<td>8.30<\/td>\n<td>Improved performance for large directories<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Basic Usage and Verification<\/h2>\n<p>Once you&#8217;ve installed the &#8216;du&#8217; command, you can use it to analyze disk usage. For instance, to display the disk usage of all files and directories in the current directory, you can use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">du -a\n\n# Output:\n# 4       .\/file1.txt\n# 8       .\/dir1\/file2.txt\n# 8       .\/dir1\n# 16      .\n<\/code><\/pre>\n<p>This will display the disk usage of each file and directory in the current directory. The numbers represent the disk usage in kilobytes.<\/p>\n<p>To verify that the &#8216;du&#8217; command is installed correctly, you can use the &#8211;version option:<\/p>\n<pre><code class=\"language-bash line-numbers\">du --version\n\n# Output:\n# du (GNU coreutils) 8.32\n# Copyright (C) 2020 Free Software Foundation, Inc.\n# License GPLv3+: GNU GPL version 3 or later &lt;https:\/\/gnu.org\/licenses\/gpl.html&gt;.\n# This is free software: you are free to change and redistribute it.\n# There is NO WARRANTY, to the extent permitted by law.\n# \n# Written by Torbjorn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering.\n<\/code><\/pre>\n<p>This will display the version of the &#8216;du&#8217; command that is currently installed on your system.<\/p>\n<h2>Exploring Alternative Disk Space Estimation Methods<\/h2>\n<p>While the &#8216;du&#8217; command is a powerful tool for disk space management, there are other methods available in Linux that you might find useful. Let&#8217;s explore some of these alternative approaches.<\/p>\n<h3>The &#8216;df&#8217; Command<\/h3>\n<p>The <code>df<\/code> command, short for &#8216;disk filesystem&#8217;, is another standard command in Linux for disk space analysis. Unlike &#8216;du&#8217;, which estimates the space used by a given file or directory, &#8216;df&#8217; displays the amount of disk space used and available on filesystems.<\/p>\n<p>Here&#8217;s an example of how to use the <code>df<\/code> command:<\/p>\n<pre><code class=\"language-bash line-numbers\">df -h\n\n# Output:\n# Filesystem      Size  Used Avail Use% Mounted on\n# udev            3.9G     0  3.9G   0% \/dev\n# tmpfs           798M  1.9M  796M   1% \/run\n# \/dev\/sda1        97G   11G   81G  12% \/\n# tmpfs           3.9G     0  3.9G   0% \/dev\/shm\n# tmpfs           5.0M     0  5.0M   0% \/run\/lock\n# tmpfs           3.9G     0  3.9G   0% \/sys\/fs\/cgroup\n# \/dev\/sda5       183G   60G  113G  35% \/mnt\/data\n# tmpfs           798M     0  798M   0% \/run\/user\/1000\n<\/code><\/pre>\n<p>The <code>-h<\/code> option makes the output human-readable by displaying sizes in KB, MB, or GB as appropriate.<\/p>\n<h3>Graphical Disk Usage Analyzers<\/h3>\n<p>If you prefer a more visual approach, there are several graphical tools available for disk usage analysis. These tools provide a graphical interface to view the disk usage statistics, making it easier to identify large files or directories.<\/p>\n<p>One popular tool is the Disk Usage Analyzer (also known as Baobab), which is included in many Linux distributions. It provides a ring chart or a treemap view of your disk usage. You can install it using your package manager, for example:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install baobab\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# The following NEW packages will be installed:\n#  baobab\n# 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.\n# Need to get 271 kB of archives.\n# After this operation, 1,176 kB of additional disk space will be used.\n# Get:1 http:\/\/us.archive.ubuntu.com\/ubuntu bionic\/main amd64 baobab amd64 3.28.0-1 [271 kB]\n# Fetched 271 kB in 1s (366 kB\/s)\n# Selecting previously unselected package baobab.\n# (Reading database ... 215377 files and directories currently installed.)\n# Preparing to unpack ...\/baobab_3.28.0-1_amd64.deb ...\n# Unpacking baobab (3.28.0-1) ...\n# Setting up baobab (3.28.0-1) ...\n# Processing triggers for man-db (2.8.3-2ubuntu0.1) ...\n<\/code><\/pre>\n<p>Once installed, you can run it from the command line or find it in your application menu.<\/p>\n<p>While these alternative methods can provide additional insights into your disk usage, the &#8216;du&#8217; command remains a versatile and essential tool for any Linux user. It offers a level of detail and flexibility that is hard to match, making it an invaluable part of your disk management toolkit.<\/p>\n<h2>Troubleshooting the &#8216;du&#8217; Command in Linux<\/h2>\n<p>While the &#8216;du&#8217; command is generally straightforward, you might encounter some issues or unexpected results. In this section, we&#8217;ll discuss some common problems and how to resolve them.<\/p>\n<h3>Permission Denied Errors<\/h3>\n<p>Sometimes, when running the &#8216;du&#8217; command, you might see &#8216;Permission denied&#8217; errors. This usually happens when you&#8217;re trying to check the disk usage of directories that your user doesn&#8217;t have access to. One solution is to use &#8216;sudo&#8217; to run the command as the root user:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo du -sh \/root\n\n# Output:\n# 4.0K    \/root\n<\/code><\/pre>\n<p>This command will display the disk usage of the \/root directory, which is typically accessible only to the root user.<\/p>\n<h3>Understanding the &#8216;du&#8217; Command Output<\/h3>\n<p>The &#8216;du&#8217; command can sometimes produce confusing results, especially when dealing with hard links or directories with many small files. Remember that &#8216;du&#8217; counts the total space used by the files and directories, including metadata stored in inodes and directory entries. To get a more accurate estimate of the actual file data size, you can use the &#8216;&#8211;apparent-size&#8217; option:<\/p>\n<pre><code class=\"language-bash line-numbers\">du --apparent-size -sh \/path\/to\/directory\n\n# Output:\n# 1.5G    \/path\/to\/directory\n<\/code><\/pre>\n<p>This command will display the apparent size of the files, which might be less than the actual disk usage reported by &#8216;du&#8217;.<\/p>\n<h3>Excluding Certain Files or Directories<\/h3>\n<p>In some cases, you might want to exclude certain files or directories from the &#8216;du&#8217; command output. You can do this using the &#8216;&#8211;exclude&#8217; option followed by a pattern. For example, to exclude all .jpg files, you can use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">du -sh --exclude='*.jpg' \/path\/to\/directory\n\n# Output:\n# 1.2G    \/path\/to\/directory\n<\/code><\/pre>\n<p>This command will calculate the disk usage of the specified directory, excluding any .jpg files.<\/p>\n<p>Remember, the &#8216;du&#8217; command is a powerful tool, but like any tool, it requires understanding and practice to use effectively. Don&#8217;t be discouraged if you encounter problems or unexpected results; with a bit of troubleshooting and patience, you can master the &#8216;du&#8217; command and make it an essential part of your Linux toolkit.<\/p>\n<h2>Understanding Disk Space Management in Linux<\/h2>\n<p>To fully grasp the &#8216;du&#8217; command&#8217;s functionality and its significance, it\u2019s crucial to comprehend the fundamentals of disk space management in Linux. Disk space management is a vital aspect of system administration that can significantly impact your system&#8217;s performance.<\/p>\n<h3>Why Disk Space Management Matters<\/h3>\n<p>Disk space management is crucial for several reasons. A full or nearly full disk can slow down your system and make it unstable. It also leaves little room for system logs, which could lead to loss of important system information. Moreover, it can prevent you from installing new applications, saving files, or even performing basic tasks if there&#8217;s not enough space for temporary files.<\/p>\n<h3>How Linux Manages Disk Space<\/h3>\n<p>Linux systems manage disk space through a hierarchical filesystem structure. Each file and directory resides within this structure, with the root directory (\/) at the top. Disk space is allocated to files in blocks, with the block size varying depending on the filesystem.<\/p>\n<p>The &#8216;du&#8217; command helps manage this structure by providing information about file and directory sizes, making it easier to identify where disk space is being used.<\/p>\n<h3>Impact of Disk Usage on System Performance<\/h3>\n<p>Excessive disk usage can lead to system slowdowns. When your disk is nearly full, your system must work harder to find free space, leading to fragmentation. Additionally, Linux systems use a portion of disk space for &#8216;swap&#8217; space, which acts as an overflow for system memory. If your disk is full and additional memory is needed, your system&#8217;s performance can be significantly impacted.<\/p>\n<p>Let&#8217;s illustrate this with an example. Suppose you&#8217;re running a database server, and your database grows, taking up a significant portion of your disk space. This could lead to slower query times and may even prevent new data from being written if the disk becomes full.<\/p>\n<pre><code class=\"language-bash line-numbers\">df -h\n\n# Output:\n# Filesystem      Size  Used Avail Use% Mounted on\n# udev            3.9G     0  3.9G   0% \/dev\n# tmpfs           798M  1.9M  796M   1% \/run\n# \/dev\/sda1        97G   92G   0G  100% \/\n# tmpfs           3.9G     0  3.9G   0% \/dev\/shm\n<\/code><\/pre>\n<p>In the above output, you can see that the root directory (\/) is 100% full. This situation could lead to the issues described above.<\/p>\n<p>In conclusion, understanding and managing disk space is a fundamental aspect of Linux system administration. Tools like the &#8216;du&#8217; command provide valuable insights into disk usage, helping you maintain a healthy and efficient system.<\/p>\n<h2>The Bigger Picture: Disk Space Management and System Administration<\/h2>\n<p>The &#8216;du&#8217; command is not just a tool for analyzing disk usage. It&#8217;s a fundamental part of system administration and security in Linux. By understanding how disk space is used, you can ensure your system runs smoothly and securely.<\/p>\n<h3>The Role of Disk Space Management in System Administration<\/h3>\n<p>As a system administrator, you&#8217;re responsible for ensuring that your system runs efficiently. This includes managing disk space. By regularly monitoring disk usage, you can identify potential issues before they become problems, such as running out of space or a single user consuming a disproportionate amount of disk space.<\/p>\n<h3>Disk Space Management and Security<\/h3>\n<p>Disk space management is also crucial for security. An attacker could potentially fill up a disk to cause denial of service, or hide large amounts of data on your system. By keeping a close eye on disk usage, you can spot unusual patterns that could indicate a security breach.<\/p>\n<h3>Exploring Related Concepts: File Systems and Disk Quotas<\/h3>\n<p>If you&#8217;re interested in disk space management, you might also want to explore related concepts like file systems and disk quotas. File systems determine how data is stored and retrieved on a disk. Different file systems have different features and performance characteristics, which can influence how you manage disk space.<\/p>\n<p>Disk quotas are a feature of many file systems that allow you to limit the amount of disk space a user or group can use. This can be useful for managing disk usage in a multi-user environment.<\/p>\n<h3>Further Resources for Mastering Disk Space Management in Linux<\/h3>\n<p>If you&#8217;re interested in learning more about disk space management in Linux, here are some resources that you might find useful:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.gnu.org\/software\/coreutils\/manual\/coreutils.html\" target=\"_blank\" rel=\"noopener\">GNU Coreutils Manual<\/a>: This is the official manual for the GNU core utilities, which includes the &#8216;du&#8217; command. It provides detailed information about each command and its options.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/tldp.org\/\" target=\"_blank\" rel=\"noopener\">The Linux Documentation Project<\/a>: The Linux Documentation Project is a comprehensive resource for all things Linux. It includes guides, how-tos, and manuals covering a wide range of topics.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.tldp.org\/LDP\/Linux-Filesystem-Hierarchy\/html\/\" target=\"_blank\" rel=\"noopener\">Linux Filesystem Hierarchy<\/a>: This guide from The Linux Documentation Project provides an in-depth look at the Linux filesystem hierarchy, which is crucial for understanding disk space management.<\/p>\n<\/li>\n<\/ol>\n<p>Remember, mastering disk space management is a journey. Don&#8217;t be afraid to explore, experiment, and learn as you go!<\/p>\n<h2>Wrapping Up: Installing Disk Space Management with &#8216;du&#8217; Command in Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve taken a deep dive into the world of disk space management in Linux, focusing on the &#8216;du&#8217; command.<\/p>\n<p>We started with the basics, learning how to install and use the &#8216;du&#8217; command in Linux. We then explored more advanced usage scenarios, including different options and flags that provide more detailed and specific output. We also discussed how to troubleshoot common issues and understand the &#8216;du&#8217; command&#8217;s output.<\/p>\n<p>We didn&#8217;t stop there. We ventured into alternative methods for estimating disk space usage, such as the &#8216;df&#8217; command and graphical disk usage analyzers. Each of these methods has its own advantages and can be used alongside the &#8216;du&#8217; command for comprehensive disk space management.<\/p>\n<p>Here&#8217;s a quick comparison of the methods we&#8217;ve discussed:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Pros<\/th>\n<th>Cons<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>&#8216;du&#8217; Command<\/td>\n<td>Detailed, flexible, installed by default on most Linux distributions<\/td>\n<td>Can be confusing, requires understanding of options<\/td>\n<\/tr>\n<tr>\n<td>&#8216;df&#8217; Command<\/td>\n<td>Simple, provides disk usage of entire filesystems<\/td>\n<td>Less detailed than &#8216;du&#8217;<\/td>\n<\/tr>\n<tr>\n<td>Graphical Disk Usage Analyzers<\/td>\n<td>Visual, easy to understand<\/td>\n<td>May not be available on all systems, not as flexible as command line tools<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re just starting out with disk space management in Linux or you&#8217;re looking to level up your skills, we hope this guide has given you a deeper understanding of the &#8216;du&#8217; command and its alternatives.<\/p>\n<p>With the knowledge you&#8217;ve gained, you&#8217;re now well-equipped to manage disk space effectively on your Linux system. Remember, mastering disk space management is a journey, and every command you learn brings you one step closer to becoming a Linux power user. Happy exploring!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you looking to install the du command on your Linux system but aren&#8217;t sure where to start? Many Linux users, particularly beginners, might find the task daunting. Yet, the du command is a powerful tool for managing disk space; it&#8217;s a utility worth mastering. Du is also readily available on most package management systems, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":14817,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6588","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\/6588","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=6588"}],"version-history":[{"count":7,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6588\/revisions"}],"predecessor-version":[{"id":15028,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6588\/revisions\/15028"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/14817"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6588"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6588"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6588"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}