{"id":6444,"date":"2023-12-15T09:20:14","date_gmt":"2023-12-15T16:20:14","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6444"},"modified":"2023-12-15T09:21:07","modified_gmt":"2023-12-15T16:21:07","slug":"ncdu-linux-command","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/ncdu-linux-command\/","title":{"rendered":"ncdu Command Guide | Managing Linux Disk Usage"},"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\/2023\/12\/Graphic-depicting-the-ncdu-command-in-a-Linux-interface-highlighting-disk-usage-analysis-and-directory-browsing-for-efficient-storage-management-300x300.jpg\" alt=\"Graphic depicting the ncdu command in a Linux interface highlighting disk usage analysis and directory browsing for efficient storage management\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you finding it challenging to manage disk usage in Linux? You&#8217;re not alone. Many system administrators find themselves grappling with this task, but there&#8217;s a tool that can make this process a breeze. Like a skilled auditor, the &#8216;ncdu&#8217; (NCurses Disk Usage) command can help you analyze and manage disk usage efficiently. These insights can assist you in maintaining a clean and efficient system, even in environments with extensive file systems.<\/p>\n<p><strong>This guide will walk you through the basics to advanced usage of the ncdu command in Linux.<\/strong> We\u2019ll explore ncdu&#8217;s core functionality, delve into its advanced features, and even discuss common issues and their solutions.<\/p>\n<p>So, let&#8217;s dive in and start mastering the ncdu command in Linux!<\/p>\n<h2>TL;DR: How Do I Use the NCDU Command in Linux?<\/h2>\n<blockquote><p>\n  The <code>ncdu<\/code> command is a powerful tool used to analyze disk usage in Linux. It is used with the syntax, <code>ncdu [option] directory<\/code> It provides a detailed report of the directories and files consuming the most space, helping you manage disk usage more effectively.\n<\/p><\/blockquote>\n<p>Here&#8217;s a simple example:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu \/home\n<\/code><\/pre>\n<p>This command will analyze the disk usage of the \/home directory, providing a breakdown of the space each file and subdirectory consumes.<\/p>\n<blockquote><p>\n  This is just a basic usage of the ncdu command in Linux, but there&#8217;s much more to learn about this versatile tool. Continue reading for a more detailed explanation and advanced usage scenarios.\n<\/p><\/blockquote>\n<h2>Getting Started with NCDU<\/h2>\n<p>The ncdu command, short for NCurses Disk Usage, is an essential tool in the Linux administrator&#8217;s toolkit for managing disk usage. It&#8217;s a simple yet powerful command that allows you to analyze disk usage in a directory or file system.<\/p>\n<h3>Running NCDU on a Directory<\/h3>\n<p>Let&#8217;s start with a basic example. Suppose you want to analyze the disk usage of the \/var directory. You would use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu \/var\n<\/code><\/pre>\n<p>This command will scan the \/var directory and provide a detailed report of the space consumed by each file and subdirectory. It might return an output similar to this:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Output:\n.\n    6.0 MiB [##########] \/log\n  500.0 KiB [#         ] \/tmp\n  100.0 KiB [          ] \/mail\n   50.0 KiB [          ] \/spool\n\nTotal disk usage: 6.6 MiB  Apparent size: 6.6 MiB  Items: 23\n<\/code><\/pre>\n<p>This output provides a breakdown of the space consumed by each subdirectory in the \/var directory. The &#8216;Total disk usage&#8217; line at the end provides a summary of the total space consumed, the apparent size, and the number of items (files and directories) scanned.<\/p>\n<h3>Benefits and Limitations of NCDU<\/h3>\n<p>The ncdu command is an invaluable tool for managing disk usage due to its simplicity and the detailed report it provides. It&#8217;s particularly useful when you need to quickly identify large files or directories that are consuming excessive disk space.<\/p>\n<p>However, like any tool, ncdu has its limitations. It can be slower than other disk usage commands when scanning large file systems due to its thorough analysis. Moreover, it may not be installed by default on some Linux distributions, requiring you to install it manually.<\/p>\n<h2>Advanced NCDU Command Usage<\/h2>\n<p>As you get comfortable with the basic usage of the ncdu command, you&#8217;ll find that it offers a host of advanced features that provide even more control over how you analyze disk usage. These features are accessed through command-line arguments or flags that modify the behavior of the ncdu command.<\/p>\n<p>Before we dive into these advanced features, let&#8217;s familiarize ourselves with some of the most commonly used ncdu arguments.<\/p>\n<table>\n<thead>\n<tr>\n<th>Argument<\/th>\n<th>Description<\/th>\n<th>Example<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>-x<\/code><\/td>\n<td>Skips directories on different file systems.<\/td>\n<td><code>ncdu -x \/<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-q<\/code><\/td>\n<td>Hides the progress bar.<\/td>\n<td><code>ncdu -q \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-r<\/code><\/td>\n<td>Enables read-only mode, prevents accidental deletions.<\/td>\n<td><code>ncdu -r \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-B<\/code><\/td>\n<td>Displays size in bytes instead of a human-readable format.<\/td>\n<td><code>ncdu -B \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-X<\/code><\/td>\n<td>Excludes files that match patterns in the specified file.<\/td>\n<td><code>ncdu -X .ncduignore \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-0<\/code><\/td>\n<td>Prints null instead of newline at the end of each line for use with xargs -0.<\/td>\n<td><code>ncdu -0 \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-1<\/code><\/td>\n<td>Only scans the specified directory, not its subdirectories.<\/td>\n<td><code>ncdu -1 \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-e<\/code><\/td>\n<td>Shows empty directories.<\/td>\n<td><code>ncdu -e \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-i<\/code><\/td>\n<td>Ignores hidden files and directories.<\/td>\n<td><code>ncdu -i \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-a<\/code><\/td>\n<td>Shows files in addition to directories.<\/td>\n<td><code>ncdu -a \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-L<\/code><\/td>\n<td>Follows symbolic links.<\/td>\n<td><code>ncdu -L \/home<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-P<\/code><\/td>\n<td>Enables color output.<\/td>\n<td><code>ncdu -P \/home<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Now that we&#8217;ve familiarized ourselves with these arguments, let&#8217;s explore some advanced usage scenarios of the ncdu command.<\/p>\n<h3>Ignoring Directories on Different File Systems<\/h3>\n<p>If you&#8217;re scanning a directory that contains mount points for other file systems, you might want to exclude these from your analysis. The <code>-x<\/code> argument allows you to do this. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu -x \/\n<\/code><\/pre>\n<p>This command will scan the root directory, but it will skip any directories that are on a different file system. This can be useful for avoiding network shares or temporary file systems that you&#8217;re not interested in.<\/p>\n<h3>Hiding the Progress Bar<\/h3>\n<p>The ncdu command shows a progress bar by default while it&#8217;s scanning directories. If you prefer a cleaner output, you can hide this progress bar with the <code>-q<\/code> argument. Here&#8217;s how you would do this:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu -q \/home\n<\/code><\/pre>\n<p>This command will scan the \/home directory and display the results without showing a progress bar. This can be useful if you&#8217;re redirecting the output to a file or another command.<\/p>\n<h3>Enabling Read-Only Mode<\/h3>\n<p>If you&#8217;re worried about accidentally deleting files while using ncdu, you can enable read-only mode with the <code>-r<\/code> argument. This will prevent ncdu from deleting files, even if you press the &#8216;d&#8217; key. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu -r \/home\n<\/code><\/pre>\n<p>This command will scan the \/home directory in read-only mode. This can provide peace of mind when you&#8217;re analyzing disk usage on a system with important data.<\/p>\n<p>These are just a few examples of the advanced features offered by the ncdu command. By learning how to use these features, you can gain even more control over how you manage disk usage on your Linux system.<\/p>\n<h2>Exploring Alternative Approaches<\/h2>\n<p>While the ncdu command is a powerful tool for managing disk usage in Linux, it&#8217;s not the only tool available. Two other commands, <code>du<\/code> and <code>df<\/code>, can also be used to analyze disk usage. Let&#8217;s explore these alternatives and understand their advantages and disadvantages.<\/p>\n<h3>The DU Command<\/h3>\n<p>The <code>du<\/code> (Disk Usage) command is a standard Linux command used to estimate file and directory space usage. It operates by recursively summarizing disk usage for each file and directory.<\/p>\n<p>Here&#8217;s an example of how you might use the <code>du<\/code> command:<\/p>\n<pre><code class=\"language-bash line-numbers\">du -sh \/var\n<\/code><\/pre>\n<p>This command will display a summary (<code>-s<\/code>) of the disk usage in human-readable format (<code>-h<\/code>) for the \/var directory. The output might look something like this:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Output:\n6.6M    \/var\n<\/code><\/pre>\n<p>This means that the \/var directory is using 6.6 megabytes of space.<\/p>\n<p>The <code>du<\/code> command is faster than the ncdu command, but it doesn&#8217;t provide a detailed breakdown of the disk usage by subdirectory. It&#8217;s useful for getting a quick estimate of the space used by a directory or file.<\/p>\n<h3>The DF Command<\/h3>\n<p>The <code>df<\/code> (Disk Free) command is used to display the amount of disk space used and available on Linux file systems. Unlike the <code>du<\/code> and <code>ncdu<\/code> commands, which analyze disk usage at the file and directory level, the <code>df<\/code> command provides a summary at the file system level.<\/p>\n<p>Here&#8217;s how you might use the <code>df<\/code> command:<\/p>\n<pre><code class=\"language-bash line-numbers\">df -h\n<\/code><\/pre>\n<p>This command will display a human-readable (<code>-h<\/code>) summary of the disk usage for each file system. The output might look something like this:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Output:\nFilesystem      Size  Used Avail Use% Mounted on\nudev            3.9G     0  3.9G   0% \/dev\ntmpfs           797M  1.5M  795M   1% \/run\n\/dev\/sda1       291G   46G  229G  17% \/\ntmpfs           3.9G  144K  3.9G   1% \/dev\/shm\ntmpfs           5.0M  4.0K  5.0M   1% \/run\/lock\ntmpfs           3.9G     0  3.9G   0% \/sys\/fs\/cgroup\ntmpfs           797M   16K  797M   1% \/run\/user\/1000\n<\/code><\/pre>\n<p>This output provides a summary of the total size, used space, available space, percentage of space used, and mount point for each file system.<\/p>\n<p>The <code>df<\/code> command is useful for getting a quick overview of the disk usage on your system, but it doesn&#8217;t provide a detailed breakdown at the file and directory level like the <code>du<\/code> and <code>ncdu<\/code> commands.<\/p>\n<p>In conclusion, while the ncdu command is a powerful tool for managing disk usage in Linux, the <code>du<\/code> and <code>df<\/code> commands offer alternative approaches that might be more suitable depending on your specific needs.<\/p>\n<h2>Troubleshooting Common NCDU Issues<\/h2>\n<p>While the ncdu command is a powerful and reliable tool, you might encounter a few roadblocks or issues during usage. Let&#8217;s discuss some common problems and their solutions.<\/p>\n<h3>Permission Denied Error<\/h3>\n<p>One common issue is the &#8216;Permission denied&#8217; error. This happens when you try to scan a directory for which your user doesn&#8217;t have read permissions. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu \/root\n# Output:\nncdu: \/root: Permission denied\n<\/code><\/pre>\n<p>In this case, the solution is to run the command as a superuser using <code>sudo<\/code>:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo ncdu \/root\n<\/code><\/pre>\n<p>This command will allow ncdu to scan the \/root directory by elevating your permissions temporarily.<\/p>\n<h3>NCDU Command Not Found<\/h3>\n<p>Another common issue is the &#8216;ncdu: command not found&#8217; error. This happens when ncdu is not installed on your system. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu \/var\n# Output:\nncdu: command not found\n<\/code><\/pre>\n<p>In this case, the solution is to install ncdu using your package manager. For Debian-based systems, you can use <code>apt<\/code>:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt install ncdu\n<\/code><\/pre>\n<p>For Red Hat-based systems, you can use <code>yum<\/code>:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install ncdu\n<\/code><\/pre>\n<p>After running these commands, you should be able to use ncdu without any issues.<\/p>\n<h3>Incorrect Disk Usage Reporting<\/h3>\n<p>Sometimes, ncdu might report disk usage differently than other tools like <code>du<\/code> or <code>df<\/code>. This can happen due to several reasons, including differences in how these tools calculate disk usage, file system overhead, or files that have been deleted but are still being held open by processes.<\/p>\n<p>In most cases, this is not an issue with ncdu, but rather a reflection of the complex nature of disk usage reporting on Linux. If you notice significant discrepancies, it might be worth investigating further to ensure there are no underlying issues with your file system.<\/p>\n<p>In conclusion, while the ncdu command is a powerful and reliable tool, it&#8217;s important to be aware of these potential issues and know how to troubleshoot them. By doing so, you can ensure that you&#8217;re using ncdu effectively and efficiently.<\/p>\n<h2>Understanding Disk Usage in Linux<\/h2>\n<p>To fully appreciate the power of the ncdu command, it&#8217;s important to understand the fundamentals of disk usage in Linux. Disk usage refers to the amount of disk space that a file or directory occupies. It&#8217;s a crucial aspect of system administration, as efficient disk usage ensures optimal system performance and prevents issues like system crashes due to lack of space.<\/p>\n<h3>How Linux Measures Disk Usage<\/h3>\n<p>In Linux, disk usage is usually measured in bytes, kilobytes (KB), megabytes (MB), gigabytes (GB), or terabytes (TB). One kilobyte is equal to 1024 bytes, one megabyte is equal to 1024 kilobytes, and so on.<\/p>\n<pre><code class=\"language-bash line-numbers\">ls -lh \/var\n# Output:\n# total 6.6M\ndrwxr-xr-x  2 root root 4.0K Jan 25  2020 backups\ndrwxr-xr-x 21 root root 4.0K Apr 15  2020 cache\ndrwxrwxrwt  2 root root 4.0K Apr 15  2020 crash\ndrwxr-xr-x 31 root root 4.0K Apr 15  2020 lib\ndrwxrwsr-x  2 root staff 4.0K Apr 12  2018 local\ndrwxrwxrwt  2 root root 4.0K Apr 15  2020 lock\ndrwxr-xr-x 13 root root 4.0K Apr 15  2020 log\n<\/code><\/pre>\n<p>In the above example, the <code>-lh<\/code> option in the <code>ls<\/code> command displays file size in a human-readable format. The &#8216;6.6M&#8217; next to the &#8216;total&#8217; keyword indicates that the total disk usage of the \/var directory is approximately 6.6 megabytes.<\/p>\n<h3>The Importance of Efficient Disk Usage Management<\/h3>\n<p>Managing disk usage efficiently is crucial for maintaining a healthy Linux system. Over time, unused files and directories can accumulate, wasting valuable disk space. This can lead to slower system performance and, in extreme cases, can cause the system to run out of space and crash.<\/p>\n<p>The ncdu command is a powerful tool for managing disk usage in Linux. It provides a detailed breakdown of disk usage, allowing you to identify large files or directories that are consuming excessive space. By regularly analyzing and managing your disk usage with ncdu, you can ensure that your system remains clean and efficient.<\/p>\n<p>In the following sections, we&#8217;ll delve deeper into the advanced usage of the ncdu command and explore how it can help you manage large file systems and cloud storage.<\/p>\n<h2>Leveraging NCDU for Large File Systems and Cloud Storage<\/h2>\n<p>The ncdu command isn&#8217;t just for managing disk usage on your local machine. It&#8217;s a versatile tool that can be used in a variety of contexts, including managing large file systems and cloud storage.<\/p>\n<h3>Managing Large File Systems with NCDU<\/h3>\n<p>When working with large file systems, the ncdu command can be an invaluable tool. Large file systems often contain a multitude of files and directories, making it difficult to keep track of disk usage. The ncdu command can provide a detailed breakdown of disk usage, making it easy to identify files or directories that are consuming excessive space.<\/p>\n<p>For example, if you&#8217;re managing a large server with multiple users, you might use the ncdu command to analyze the \/home directory:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu \/home\n# Output:\n.\n  1.2 GiB [##########] \/user1\n  500.0 MiB [#         ] \/user2\n  300.0 MiB [          ] \/user3\n\nTotal disk usage: 2.0 GiB  Apparent size: 2.0 GiB  Items: 12000\n<\/code><\/pre>\n<p>This command will provide a breakdown of the disk usage for each user&#8217;s home directory, allowing you to identify any users who are consuming excessive disk space.<\/p>\n<h3>Using NCDU with Cloud Storage<\/h3>\n<p>If you&#8217;re using cloud storage, you can also use the ncdu command to manage your disk usage. Many cloud storage providers allow you to mount your cloud storage as a local file system, which means you can use the ncdu command just like you would on your local machine.<\/p>\n<p>For example, if you&#8217;re using Amazon S3 and have mounted your bucket to the \/mnt\/s3 directory, you could use the ncdu command to analyze your S3 usage:<\/p>\n<pre><code class=\"language-bash line-numbers\">ncdu \/mnt\/s3\n# Output:\n.\n  1.0 GiB [##########] \/photos\n  500.0 MiB [#         ] \/videos\n  100.0 MiB [          ] \/documents\n\nTotal disk usage: 1.6 GiB  Apparent size: 1.6 GiB  Items: 3000\n<\/code><\/pre>\n<p>This command will provide a breakdown of the disk usage for each directory in your S3 bucket, just like it would for a local directory.<\/p>\n<h3>Further Resources for Mastering NCDU<\/h3>\n<p>If you&#8217;re interested in learning more about the ncdu command and disk usage management in Linux, here are a few resources that you might find helpful:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/manpages.debian.org\/jessie\/ncdu\/ncdu.1.en.html\" target=\"_blank\" rel=\"noopener\">The NCDU man page<\/a>: This is the official manual for the ncdu command. It provides a detailed explanation of the command and its various options.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/dev.yorhel.nl\/ncdu\" target=\"_blank\" rel=\"noopener\">NCDU Documentation Manual<\/a>: This website provides information about the ncdu (NCurses Disk Usage) command-line tool, and includes a detailed explanation of the tool&#8217;s features and usage instructions.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.tecmint.com\/check-linux-disk-usage-of-files-and-directories\/\" target=\"_blank\" rel=\"noopener\">Managing Disk Space with NCDU<\/a>: This article provides a practical guide to managing disk space with the ncdu command, including numerous examples and tips.<\/p>\n<\/li>\n<\/ol>\n<p>By exploring these resources and practicing the examples in this guide, you can become a master of disk usage management in Linux.<\/p>\n<h2>Wrapping Up: NCDU and Efficient Disk Usage<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved deep into the ncdu command, a powerful tool for managing disk usage in Linux. From understanding the fundamentals of disk usage to exploring advanced usage of the ncdu command, we&#8217;ve covered a wide spectrum of concepts and practices.<\/p>\n<p>We started by introducing the ncdu command and its basic usage, providing a simple command example and discussing its benefits and potential limitations. We then explored advanced usage of the ncdu command, discussing different options like <code>-x<\/code>, <code>-q<\/code>, and <code>-r<\/code> that modify the behavior of the command. Along the way, we&#8217;ve provided practical examples and expected outputs to demonstrate these concepts.<\/p>\n<p>We also introduced alternative methods to analyze disk usage in Linux, such as the <code>du<\/code> and <code>df<\/code> commands. We compared these methods, discussing the advantages and disadvantages of each. Here&#8217;s a quick comparison of these methods:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Speed<\/th>\n<th>Detail Level<\/th>\n<th>Complexity<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>NCDU<\/td>\n<td>Moderate<\/td>\n<td>High<\/td>\n<td>Moderate<\/td>\n<\/tr>\n<tr>\n<td>DU<\/td>\n<td>Fast<\/td>\n<td>Low<\/td>\n<td>Low<\/td>\n<\/tr>\n<tr>\n<td>DF<\/td>\n<td>Fast<\/td>\n<td>Low<\/td>\n<td>Low<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>We discussed common issues one might encounter while using the ncdu command and provided solutions to these problems. We further delved into the fundamentals of disk usage in Linux, discussing the importance of managing disk usage efficiently.<\/p>\n<p>Finally, we explored the relevance of the ncdu command in managing large file systems and cloud storage, demonstrating its versatility and wide range of applications.<\/p>\n<p>Whether you&#8217;re a Linux beginner or an experienced system administrator, this guide aimed to provide you with a thorough understanding of the ncdu command and its usage. With this knowledge, you&#8217;re now equipped to manage disk usage efficiently in Linux. Happy managing!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you finding it challenging to manage disk usage in Linux? You&#8217;re not alone. Many system administrators find themselves grappling with this task, but there&#8217;s a tool that can make this process a breeze. Like a skilled auditor, the &#8216;ncdu&#8217; (NCurses Disk Usage) command can help you analyze and manage disk usage efficiently. These insights [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":13908,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6444","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\/6444","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=6444"}],"version-history":[{"count":6,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6444\/revisions"}],"predecessor-version":[{"id":13940,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6444\/revisions\/13940"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/13908"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6444"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6444"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6444"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}