{"id":6619,"date":"2024-01-08T10:35:49","date_gmt":"2024-01-08T17:35:49","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6619"},"modified":"2024-01-08T10:36:32","modified_gmt":"2024-01-08T17:36:32","slug":"install-htop-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-htop-command-linux\/","title":{"rendered":"How to Install and Use the &#8216;htop&#8217; Command | Linux 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-htop-command-an-interactive-process-viewer-300x300.jpg\" alt=\"Image of a Linux terminal illustrating the installation of the htop command an interactive process viewer\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you finding it hard to monitor system processes in Linux? Well, like a vigilant security guard, the &#8216;htop&#8217; command in Linux can help you keep an eye on your system&#8217;s performance. &#8216;Htop&#8217;, is an incredible tool worth learning to install and use, as it enhances system monitoring and makes it easier to manage tasks on your Linux system. It&#8217;s accessible on most package management systems, simplifying the installation once you understand the process.<\/p>\n<p><strong>In this guide, we will navigate the process of installing &#8216;htop&#8217; on your Linux system.<\/strong> We will provide you with installation instructions for both APT (Debian and Ubuntu) and YUM-based distributions (CentOS and AlmaLinux), delve into how to compile &#8216;htop&#8217; from the source, and install a specific version. Finally, we will show you how to use the &#8216;htop&#8217; command and ascertain that the correctly installed version is in use.<\/p>\n<p>So, let&#8217;s get started with the step-by-step &#8216;htop&#8217; installation on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;htop&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  In most Linux distributions, you can install &#8216;htop&#8217; by running the command <code>sudo apt-get install htop<\/code> for Debian based distributions or <code>sudo yum install htop<\/code> for RPM-based distributions. To use it, simply type <code>htop<\/code> in the terminal.\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\"># For Debian based distributions\nsudo apt-get install htop\n\n# For RPM-based distributions\nsudo yum install htop\n\n# To use htop\nhtop\n<\/code><\/pre>\n<p>This will give you a basic installation and usage of the &#8216;htop&#8217; command in Linux, but there&#8217;s much more to learn about &#8216;htop&#8217;. Continue reading for more detailed information, advanced usage scenarios, and troubleshooting tips.<\/p>\n<h2>Understanding and Installing the &#8216;htop&#8217; Command in Linux<\/h2>\n<p>&#8216;htop&#8217; is a powerful, interactive process viewer for Unix systems. It provides a real-time, dynamic view of the processes running on your system. It&#8217;s a valuable tool for system administrators and power users seeking to monitor system performance, manage processes, and troubleshoot performance issues.<\/p>\n<p>Let&#8217;s dive into how to install the &#8216;htop&#8217; command in Linux, focusing on two popular package management systems: APT and YUM.<\/p>\n<h3>Installing &#8216;htop&#8217; with APT<\/h3>\n<p>For Debian-based distributions like Ubuntu, we use the APT (Advanced Package Tool) package manager. Here&#8217;s how to install &#8216;htop&#8217; using APT:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt update\nsudo apt install htop\n<\/code><\/pre>\n<p>The first command updates the package lists for upgrades and new package installations. The second command installs &#8216;htop&#8217;.<\/p>\n<p>After running these commands, you can check the installed version using:<\/p>\n<pre><code class=\"language-bash line-numbers\">htop -v\n\n# Output:\n# htop 2.2.0 - (C) 2004-2019 Hisham Muhammad\n# Released under the GNU GPL.\n<\/code><\/pre>\n<p>This command displays the version of &#8216;htop&#8217; installed on your system, which in this case is 2.2.0.<\/p>\n<h3>Installing &#8216;htop&#8217; with YUM<\/h3>\n<p>For RPM-based distributions like CentOS, we use the YUM (Yellowdog Updater, Modified) package manager. Here&#8217;s how to install &#8216;htop&#8217; using YUM:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum update\nsudo yum install htop\n<\/code><\/pre>\n<p>Similar to the APT commands, the first command updates your package lists, and the second installs &#8216;htop&#8217;. Verify the installed version using the same <code>htop -v<\/code> command as shown in the APT section.<\/p>\n<p>In the next section, we&#8217;ll delve into more advanced installation methods of the &#8216;htop&#8217; command.<\/p>\n<h2>Installing &#8216;htop&#8217; from Source Code<\/h2>\n<p>Sometimes, you might want to install &#8216;htop&#8217; from the source code. This method is beneficial when you need the latest version, which might not be available in your distribution&#8217;s repositories. Here&#8217;s how to do it:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Download the source code\nwget https:\/\/github.com\/hishamhm\/htop\/archive\/refs\/tags\/3.1.2.tar.gz\n\n# Extract the tarball\n tar -xvf 3.1.2.tar.gz\n\n# Navigate to the directory\n cd htop-3.1.2\n\n# Compile and install\n.\/configure\nmake\nsudo make install\n<\/code><\/pre>\n<p>This sequence of commands downloads the source code, extracts it, navigates into the directory, and then compiles and installs &#8216;htop&#8217;.<\/p>\n<h2>Installing Different Versions of &#8216;htop&#8217;<\/h2>\n<h3>Installing Different Versions from Source<\/h3>\n<p>To install a different version of &#8216;htop&#8217; from source, simply change the version number in the download URL. For example, to download version 2.2.0, use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget https:\/\/github.com\/hishamhm\/htop\/archive\/refs\/tags\/2.2.0.tar.gz\n<\/code><\/pre>\n<p>The rest of the steps for compiling and installing remain the same.<\/p>\n<h3>Installing Different Versions Using Package Managers<\/h3>\n<h4>Using APT<\/h4>\n<p>In Debian-based distributions, 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 htop=version\n<\/code><\/pre>\n<p>Replace &#8216;version&#8217; with the desired version number.<\/p>\n<h4>Using YUM<\/h4>\n<p>In RPM-based distributions, 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 htop\n<\/code><\/pre>\n<p>To install a specific version, use the following syntax:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install htop-version\n<\/code><\/pre>\n<p>Replace &#8216;version&#8217; with the desired version number.<\/p>\n<h3>Version Comparison<\/h3>\n<p>Different versions of &#8216;htop&#8217; come with various improvements and bug fixes. Here&#8217;s a brief comparison of the key features of some versions:<\/p>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Key Features<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>2.2.0<\/td>\n<td>Introduced pressure stall information for Linux, ZFS ARC statistics, more than two processor columns<\/td>\n<\/tr>\n<tr>\n<td>3.0.0<\/td>\n<td>Added CPU frequency metrics, improved support for ncurses, fixed bugs<\/td>\n<\/tr>\n<tr>\n<td>3.1.2<\/td>\n<td>Introduced disk I\/O metrics, improved documentation, fixed bugs<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Using &#8216;htop&#8217; and Verifying Installation<\/h2>\n<h3>Basic Usage of &#8216;htop&#8217;<\/h3>\n<p>After installing &#8216;htop&#8217;, you can start it by typing &#8216;htop&#8217; in your terminal:<\/p>\n<pre><code class=\"language-bash line-numbers\">htop\n<\/code><\/pre>\n<p>This command will open the &#8216;htop&#8217; interactive process viewer. You can navigate using the arrow keys and press &#8216;F10&#8217; to exit.<\/p>\n<h3>Verifying Installation<\/h3>\n<p>To verify that &#8216;htop&#8217; is installed correctly, you can check the version number:<\/p>\n<pre><code class=\"language-bash line-numbers\">htop -v\n\n# Output:\n# htop 3.1.2 - (C) 2004-2021 Hisham Muhammad\n# Released under the GNU GPL.\n<\/code><\/pre>\n<p>This command will display the installed version of &#8216;htop&#8217;, which should match the version you installed.<\/p>\n<h2>Exploring Alternative Commands for System Monitoring<\/h2>\n<p>While &#8216;htop&#8217; is a powerful tool for monitoring system processes in Linux, there are alternative commands that offer different perspectives and functionalities. Let&#8217;s explore the &#8216;top&#8217; and &#8216;ps&#8217; commands as alternatives to &#8216;htop&#8217;.<\/p>\n<h3>The &#8216;top&#8217; Command<\/h3>\n<p>The &#8216;top&#8217; command is a real-time process monitor and system summary. It displays information about the system&#8217;s current state, such as the number of tasks running, CPU utilization, and memory usage.<\/p>\n<p>Here&#8217;s a basic usage example:<\/p>\n<pre><code class=\"language-bash line-numbers\">top\n\n# Output:\ntop - 18:39:01 up  2:37,  1 user,  load average: 0.00, 0.01, 0.05\nTasks: 100 total,   1 running,  99 sleeping,   0 stopped,   0 zombie\n%Cpu(s):  0.7 us,  0.3 sy,  0.0 ni, 98.9 id,  0.0 wa,  0.0 hi,  0.1 si,  0.0 st\nMiB Mem :   1987.0 total,   1167.2 free,    454.4 used,    365.4 buff\/cache\nMiB Swap:   2048.0 total,   2048.0 free,      0.0 used.   1331.4 avail Mem \n<\/code><\/pre>\n<p>The output provides a snapshot of the system&#8217;s current state. However, &#8216;top&#8217; is less user-friendly compared to &#8216;htop&#8217;, as it lacks &#8216;htop&#8217;s easy-to-use interface and color-coded visuals.<\/p>\n<h3>The &#8216;ps&#8217; Command<\/h3>\n<p>The &#8216;ps&#8217; command provides a snapshot of the current processes. It&#8217;s a versatile tool with various options to customize the output.<\/p>\n<p>Here&#8217;s an example of using &#8216;ps&#8217; to display all running processes:<\/p>\n<pre><code class=\"language-bash line-numbers\">ps aux\n\n# Output:\nUSER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND\nroot         1  0.0  0.1 225636  9484 ?        Ss   16:02   0:02 \/sbin\/init splash\nroot         2  0.0  0.0      0     0 ?        S    16:02   0:00 [kthreadd]\nroot         3  0.0  0.0      0     0 ?        I&lt;   16:02   0:00 [rcu_gp]\nroot         4  0.0  0.0      0     0 ?        I&lt;   16:02   0:00 [rcu_par_gp]\n<\/code><\/pre>\n<p>The output includes details about the user, process ID, CPU and memory usage, start time, and the command that started the process.<\/p>\n<p>While &#8216;ps&#8217; provides detailed information, it&#8217;s not as interactive as &#8216;htop&#8217; and requires knowledge of various options to customize the output.<\/p>\n<p>In conclusion, while &#8216;htop&#8217; is a comprehensive tool for monitoring system processes in Linux, &#8216;top&#8217; and &#8216;ps&#8217; are valuable alternatives that offer different perspectives. Depending on your needs, you might find one more useful than the others. Experiment with these tools, understand their advantages and limitations, and choose the ones that best fit your workflow.<\/p>\n<h2>Handling Common &#8216;htop&#8217; Troubles<\/h2>\n<p>While &#8216;htop&#8217; is generally straightforward to use, you might encounter some issues, especially when you&#8217;re new to it. Let&#8217;s discuss some common problems and their solutions.<\/p>\n<h3>&#8216;htop&#8217; Command Not Found<\/h3>\n<p>If you receive a &#8216;command not found&#8217; error after trying to run &#8216;htop&#8217;, it means &#8216;htop&#8217; isn&#8217;t installed on your system or the system can&#8217;t locate it. Here&#8217;s an example of this error:<\/p>\n<pre><code class=\"language-bash line-numbers\">htop\n\n# Output:\n# Command 'htop' not found, but can be installed with:\n<\/code><\/pre>\n<p>To resolve this, you can install &#8216;htop&#8217; using the instructions provided earlier in this guide. If &#8216;htop&#8217; is already installed, make sure the system PATH includes the directory where &#8216;htop&#8217; is installed.<\/p>\n<h3>Permission Denied Error<\/h3>\n<p>If you try to install &#8216;htop&#8217; without sufficient permissions, you&#8217;ll encounter a &#8216;permission denied&#8217; error. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">apt install htop\n\n# Output:\n# E: Could not open lock file \/var\/lib\/dpkg\/lock-frontend - open (13: Permission denied)\n# E: Unable to acquire the dpkg frontend lock (\/var\/lib\/dpkg\/lock-frontend), are you root?\n<\/code><\/pre>\n<p>To resolve this, use the &#8216;sudo&#8217; command to run the installation command with root permissions:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt install htop\n<\/code><\/pre>\n<h3>Unable to Locate Package Error<\/h3>\n<p>If your package lists aren&#8217;t updated or the &#8216;htop&#8217; package is unavailable in your distribution&#8217;s repositories, you might encounter an &#8216;unable to locate package&#8217; error. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt install htop\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# E: Unable to locate package htop\n<\/code><\/pre>\n<p>To resolve this, update your package lists using <code>sudo apt update<\/code> or <code>sudo yum update<\/code> before installing &#8216;htop&#8217;. If the error persists, consider installing &#8216;htop&#8217; from the source code as explained earlier in this guide.<\/p>\n<p>In conclusion, while &#8216;htop&#8217; is a powerful tool for monitoring system processes in Linux, you might encounter some issues when installing or using it. The solutions provided here should help you overcome these common problems and make the most of &#8216;htop&#8217;.<\/p>\n<h2>Understanding Process Management in Linux<\/h2>\n<p>In Linux, every task (also known as a &#8216;process&#8217;) that the system runs is assigned a unique process ID (PID). These tasks could be anything from system services to user applications. The process management in Linux involves creating, scheduling, and eliminating processes.<\/p>\n<h3>Importance of Process Management<\/h3>\n<p>Managing processes is crucial in a Linux system. It helps in optimizing system performance, identifying resource-hungry tasks, and ensuring that resources are fairly distributed among processes.<\/p>\n<p>Process management tools like &#8216;htop&#8217; provide valuable insights into how resources are being used in your system, allowing you to make informed decisions on resource allocation.<\/p>\n<h2>Understanding &#8216;htop&#8217; in the Context of Process Management<\/h2>\n<p>&#8216;htop&#8217; is a process viewer for Linux that provides a real-time, dynamic view of the processes running on your system. It&#8217;s an improvement over the &#8216;top&#8217; command, offering more features and a more user-friendly interface.<\/p>\n<p>Let&#8217;s take a closer look at the &#8216;htop&#8217; interface to understand its role in process management:<\/p>\n<pre><code class=\"language-bash line-numbers\">htop\n\n# Output:\n# 1  [||||||||||||||||||||||||||||100.0%]     Tasks: 31, 59 thr; 1 running\n# 2  [||||||||||||||||||||||||||||100.0%]     Load average: 0.00 0.01 0.05\n# Mem[|||||||||||||||||||387M\/1.94G]     Uptime: 00:03:46\n# Swp[|0K\/2.00G]\n\n#  PID USER      PRI  NI  VIRT   RES   SHR S CPU% MEM%   TIME+  Command\n# 1081 root       20   0  570M  387M 26916 S  0.0 19.4  0:02.90 \/usr\/lib\/packagekit\/packagekitd\n# 1356 root       20   0  428M  111M  8432 S  0.0  5.5  0:01.10 \/usr\/bin\/dockerd -H fd:\/\/ --containerd=\/run\/containerd\/containerd.sock\n# 1447 root       20   0  404M  101M  6068 S  0.0  5.0  0:00.73 \/usr\/sbin\/NetworkManager --no-daemon\n<\/code><\/pre>\n<p>The &#8216;htop&#8217; interface is divided into two main sections. The top section displays statistics about processes and resource usage, including CPU usage, memory usage, and swap usage. The bottom section lists all the processes currently running on the system, along with detailed information like the PID, user, CPU usage, memory usage, and the command that started the process.<\/p>\n<p>In conclusion, understanding process management is essential for using &#8216;htop&#8217; effectively. By monitoring and managing processes, you can ensure optimal system performance and resource utilization.<\/p>\n<h2>The Relevance of Process Management in System Administration and Security<\/h2>\n<p>The &#8216;htop&#8217; command, while simple, plays a crucial role in system administration and security. Understanding and managing processes is a fundamental aspect of Linux system administration. It allows administrators to monitor system health, optimize performance, and troubleshoot issues.<\/p>\n<p>In terms of security, knowing what&#8217;s happening on your system is essential. Unusual processes or high resource usage can be indicators of a security breach. Tools like &#8216;htop&#8217; provide visibility into system processes, helping you detect and investigate suspicious activity.<\/p>\n<h2>Deep Dive into System Load and Memory Usage<\/h2>\n<p>While &#8216;htop&#8217; provides a lot of information, focusing on system load and memory usage can provide valuable insights. System load is a measure of the amount of computational work that a system performs. High system load can lead to slow performance or even system crashes.<\/p>\n<p>Memory usage is another critical metric. Insufficient memory can also lead to poor performance, as the system may need to use swap space, which is slower than RAM.<\/p>\n<p>Here&#8217;s an example of how to use &#8216;htop&#8217; to monitor system load and memory usage:<\/p>\n<pre><code class=\"language-bash line-numbers\">htop\n\n# Output:\n# 1  [||||||||||||||||||||||||||||100.0%]     Tasks: 31, 59 thr; 1 running\n# 2  [||||||||||||||||||||||||||||100.0%]     Load average: 0.00 0.01 0.05\n# Mem[|||||||||||||||||||387M\/1.94G]     Uptime: 00:03:46\n# Swp[|0K\/2.00G]\n<\/code><\/pre>\n<p>In this example, the &#8216;Load average&#8217; line shows the system load, and the &#8216;Mem&#8217; line shows memory usage. By keeping an eye on these metrics, you can detect potential performance issues before they become serious problems.<\/p>\n<h3>Further Resources for Mastering Linux Process Management<\/h3>\n<p>If you want to delve deeper into Linux process management and related concepts, here are some resources that can help:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"http:\/\/www.brendangregg.com\/linuxperf.html\" target=\"_blank\" rel=\"noopener\">Linux Performance<\/a>: This site by Brendan Gregg, a senior performance architect at Netflix, offers a wealth of information on Linux performance, including process management.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.thegeekstuff.com\/\" target=\"_blank\" rel=\"noopener\">The Geek Stuff<\/a>: This site offers numerous tutorials on Linux and Unix, including detailed guides on commands like &#8216;htop&#8217;.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.linuxjournal.com\/\" target=\"_blank\" rel=\"noopener\">Linux Journal<\/a>: This online magazine covers all things Linux, including system administration, security, and performance.<\/p>\n<\/li>\n<\/ol>\n<p>By exploring these resources and practicing with tools like &#8216;htop&#8217;, you can become proficient in Linux process management, improving your skills as a system administrator or power user.<\/p>\n<h2>Wrapping Up: Installing &#8216;htop&#8217; for Linux Process Monitoring<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved into the world of the &#8216;htop&#8217; command, an essential tool for monitoring system processes in Linux.<\/p>\n<p>We kicked off with the basics, learning how to install and use &#8216;htop&#8217; in Linux. We then explored more advanced topics, such as installing &#8216;htop&#8217; from the source code and installing specific versions of &#8216;htop&#8217;. We also addressed common issues you might encounter when using &#8216;htop&#8217;, providing practical solutions to help you overcome these challenges.<\/p>\n<p>Furthermore, we examined alternative methods for system monitoring in Linux, comparing &#8216;htop&#8217; with the &#8216;top&#8217; and &#8216;ps&#8217; commands. Here&#8217;s a quick comparison of these tools:<\/p>\n<table>\n<thead>\n<tr>\n<th>Tool<\/th>\n<th>User-Friendliness<\/th>\n<th>Interactivity<\/th>\n<th>Detail Level<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>&#8216;htop&#8217;<\/td>\n<td>High<\/td>\n<td>High<\/td>\n<td>High<\/td>\n<\/tr>\n<tr>\n<td>&#8216;top&#8217;<\/td>\n<td>Moderate<\/td>\n<td>Low<\/td>\n<td>High<\/td>\n<\/tr>\n<tr>\n<td>&#8216;ps&#8217;<\/td>\n<td>Low<\/td>\n<td>Low<\/td>\n<td>High<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re new to Linux system monitoring or looking to enhance your skills, we hope this guide has deepened your understanding of the &#8216;htop&#8217; command and its alternatives.<\/p>\n<p>By mastering &#8216;htop&#8217; and understanding its alternatives, you&#8217;re well-equipped to monitor and manage system processes effectively in Linux. Happy monitoring!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you finding it hard to monitor system processes in Linux? Well, like a vigilant security guard, the &#8216;htop&#8217; command in Linux can help you keep an eye on your system&#8217;s performance. &#8216;Htop&#8217;, is an incredible tool worth learning to install and use, as it enhances system monitoring and makes it easier to manage tasks [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15479,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6619","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\/6619","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=6619"}],"version-history":[{"count":8,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6619\/revisions"}],"predecessor-version":[{"id":15555,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6619\/revisions\/15555"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/15479"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6619"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6619"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}