{"id":6658,"date":"2024-01-07T12:03:38","date_gmt":"2024-01-07T19:03:38","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6658"},"modified":"2024-01-07T12:03:56","modified_gmt":"2024-01-07T19:03:56","slug":"install-neofetch-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-neofetch-command-linux\/","title":{"rendered":"Installing and Using the Neofetch 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-neofetch-command-a-system-information-tool-300x300.jpg\" alt=\"Image of a Linux terminal illustrating the installation of the neofetch command a system information tool\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you looking to display your system information in Linux but unsure how to go about it? The &#8216;neofetch&#8217; command, much like a personal assistant, can simplify this task for you. Neofetch is a command-line utility that displays system information in a visually pleasing manner. It&#8217;s readily available on most package management systems, making the installation process straightforward once you understand the steps.<\/p>\n<p><strong>In this tutorial, we will guide you on how to install and use the &#8216;neofetch&#8217; command on your Linux system.<\/strong> We will cover methods for both APT and YUM-based distributions, delve into compiling &#8216;neofetch&#8217; from source, installing a specific version, and finally, how to use the &#8216;neofetch&#8217; command and ensure it&#8217;s installed correctly.<\/p>\n<p>So, let&#8217;s dive in and start installing &#8216;neofetch&#8217; on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;neofetch&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  To install &#8216;neofetch&#8217; in Debian based distributions like Ubuntu, you can run the command <code>sudo apt-get install neofetch<\/code>. For distributions like CentOS that use RPM package manager yum, you would run the command <code>sudo yum install neofetch<\/code>.\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\"># For Debian based distributions like Ubuntu\nsudo apt-get install neofetch\n\n# For RPM based distributions like CentOS\nsudo yum install neofetch\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#   neofetch\n# 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.\n# Need to get 0 B\/74.6 kB of archives.\n# After this operation, 381 kB of additional disk space will be used.\n# Selecting previously unselected package neofetch.\n# (Reading database ... 160975 files and directories currently installed.)\n# Preparing to unpack ...\/neofetch_7.1.0-1_all.deb ...\n# Unpacking neofetch (7.1.0-1) ...\n# Setting up neofetch (7.1.0-1) ...\n# Processing triggers for man-db (2.8.3-2ubuntu0.1) ...\n<\/code><\/pre>\n<p>This is a basic way to install the &#8216;neofetch&#8217; command in Linux, but there&#8217;s much more to learn about installing and using &#8216;neofetch&#8217;. Continue reading for more detailed information and advanced usage scenarios.<\/p>\n<h2>Understanding and Installing Neofetch in Linux<\/h2>\n<p>Neofetch is a command-line utility that displays information about your operating system, software, and hardware in an aesthetic and visually pleasing way. It&#8217;s like your system&#8217;s business card, showcasing your OS logo with other crucial details. It&#8217;s a handy tool for system administrators or anyone who needs to quickly check system details.<\/p>\n<p>Now, let&#8217;s get to installing Neofetch on your Linux system. We&#8217;ll cover the process for both APT (Debian-based distributions like Ubuntu) and YUM (RPM-based distributions like CentOS).<\/p>\n<h3>Installing Neofetch Using APT<\/h3>\n<p>If you&#8217;re using a Debian-based distribution like Ubuntu, you can install Neofetch using the APT package manager. Here&#8217;s how you do it:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt update\nsudo apt install neofetch\n\n# Output:\n# The following NEW packages will be installed:\n#   neofetch\n# 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.\n# After this operation, 381 kB of additional disk space will be used.\n<\/code><\/pre>\n<p>In the above code block, the first command updates the package lists for upgrades and new package installations. The second command installs Neofetch on your system.<\/p>\n<h3>Installing Neofetch Using YUM<\/h3>\n<p>If you&#8217;re using an RPM-based distribution like CentOS, you can install Neofetch using the YUM package manager. Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum check-update\nsudo yum install neofetch\n\n# Output:\n# Installed:\n#   neofetch.noarch 0:7.1.0-1.el7\n# Complete!\n<\/code><\/pre>\n<p>In the above code block, the first command checks for system and software updates. The second command installs Neofetch on your system.<\/p>\n<p>Remember, you need to have administrative (sudo) privileges to install software on your Linux system. Once you&#8217;ve installed Neofetch, you can display your system information by simply typing <code>neofetch<\/code> into the terminal.<\/p>\n<h2>Installing Neofetch from Source<\/h2>\n<p>While package managers make installation easy, sometimes you may want to install the software from the source. This provides more control over the version and configuration of the software. Here&#8217;s how you can install Neofetch from source:<\/p>\n<pre><code class=\"language-bash line-numbers\">git clone https:\/\/github.com\/dylanaraps\/neofetch.git\n\n# Output:\n# Cloning into 'neofetch'...\n# remote: Enumerating objects: 269, done.\n# remote: Counting objects: 100% (269\/269), done.\n# remote: Compressing objects: 100% (180\/180), done.\n# remote: Total 269 (delta 132), reused 187 (delta 80), pack-reused 0\n# Receiving objects: 100% (269\/269), 2.75 MiB | 3.05 MiB\/s, done.\n# Resolving deltas: 100% (132\/132), done.\n<\/code><\/pre>\n<p>This command clones the Neofetch repository from GitHub to your local system.<\/p>\n<h2>Installing Specific Versions of Neofetch<\/h2>\n<p>There may be situations where you need a specific version of Neofetch. This could be due to compatibility issues, or because a particular feature you need is only available in a certain version. Here&#8217;s how to install a specific version using APT, YUM, and from source.<\/p>\n<h3>Installing Specific Versions with APT<\/h3>\n<pre><code class=\"language-bash line-numbers\">sudo apt install neofetch=7.0.0\n\n# Output:\n# The following packages will be DOWNGRADED:\n#   neofetch\n# 0 upgraded, 0 newly installed, 1 downgraded, 0 to remove and 0 not upgraded.\n# Need to get 74.6 kB of archives.\n# After this operation, 0 B of additional disk space will be used.\n<\/code><\/pre>\n<p>This command installs version 7.0.0 of Neofetch on your system.<\/p>\n<h3>Installing Specific Versions with YUM<\/h3>\n<pre><code class=\"language-bash line-numbers\">sudo yum downgrade neofetch-7.0.0\n\n# Output:\n# Resolving Dependencies\n# --&gt; Running transaction check\n# ---&gt; Package neofetch.noarch 0:7.0.0-1.el7 will be a downgrade\n# ---&gt; Package neofetch.noarch 0:7.1.0-1.el7 will be erased\n# --&gt; Finished Dependency Resolution\n<\/code><\/pre>\n<p>This command downgrades Neofetch to version 7.0.0 on your system.<\/p>\n<h3>Installing Specific Versions from Source<\/h3>\n<pre><code class=\"language-bash line-numbers\">git clone https:\/\/github.com\/dylanaraps\/neofetch.git\ncd neofetch\ngit checkout 7.0.0\n\n# Output:\n# Note: checking out '7.0.0'.\n# HEAD is now at 04f2c5b Bump version to 7.0.0\n<\/code><\/pre>\n<p>This command checks out version 7.0.0 of Neofetch from the source code.<\/p>\n<p>Here&#8217;s a summary of the differences between the versions:<\/p>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Key Features<\/th>\n<th>Compatibility<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>7.1.0<\/td>\n<td>Added support for new distros<\/td>\n<td>Most Linux distributions<\/td>\n<\/tr>\n<tr>\n<td>7.0.0<\/td>\n<td>Improved performance<\/td>\n<td>Most Linux distributions<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Using Neofetch and Verifying Installation<\/h2>\n<p>Once you&#8217;ve installed Neofetch, you can use it to display your system information. Simply type <code>neofetch<\/code> into your terminal:<\/p>\n<pre><code class=\"language-bash line-numbers\">neofetch\n\n# Output:\n# Your system logo and information will be displayed.\n<\/code><\/pre>\n<p>To verify that Neofetch has been installed correctly, you can use the <code>which<\/code> command:<\/p>\n<pre><code class=\"language-bash line-numbers\">which neofetch\n\n# Output:\n# \/usr\/bin\/neofetch\n<\/code><\/pre>\n<p>This command will return the path where Neofetch is installed, confirming that the installation was successful.<\/p>\n<h2>Exploring Alternative Methods for System Information Display<\/h2>\n<p>While &#8216;neofetch&#8217; is a popular tool for displaying system information, there are alternative methods you can use. Let&#8217;s explore some of these alternatives, their advantages, disadvantages, and how to use them.<\/p>\n<h3>Screenfetch: A Neofetch Alternative<\/h3>\n<p>&#8216;Screenfetch&#8217; is another command-line utility that displays system information alongside your operating system&#8217;s logo. It&#8217;s similar to &#8216;neofetch&#8217;, but with fewer customization options. Here&#8217;s how you can install and use &#8216;screenfetch&#8217;:<\/p>\n<pre><code class=\"language-bash line-numbers\"># For Debian based distributions like Ubuntu\nsudo apt-get install screenfetch\n\n# For RPM based distributions like CentOS\nsudo yum install screenfetch\n\n# To display system information\nscreenfetch\n\n# Output:\n# Your system logo and information will be displayed.\n<\/code><\/pre>\n<p>&#8216;Screenfetch&#8217; is a great alternative if you prefer simplicity over customization.<\/p>\n<h3>Manual System Information Display<\/h3>\n<p>If you prefer a more hands-on approach, you can manually display system information using built-in Linux commands. For example, you can use the &#8216;uname&#8217; command to display the system&#8217;s OS or kernel version:<\/p>\n<pre><code class=\"language-bash line-numbers\">uname -a\n\n# Output:\n# Linux myhostname 4.15.0-101-generic #102-Ubuntu SMP Mon May 11 10:07:26 UTC 2020 x86_64 x86_64 x86_64 GNU\/Linux\n<\/code><\/pre>\n<p>This command returns the system&#8217;s kernel name, hostname, kernel release date, kernel version, machine hardware name, processor type, hardware platform, and operating system.<\/p>\n<p>While these methods may not be as visually pleasing as &#8216;neofetch&#8217; or &#8216;screenfetch&#8217;, they provide a deeper understanding of your system&#8217;s inner workings. However, they require a more technical understanding of Linux.<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Neofetch<\/td>\n<td>Visually pleasing, customizable, easy to install and use<\/td>\n<td>May not be available in all repositories<\/td>\n<\/tr>\n<tr>\n<td>Screenfetch<\/td>\n<td>Visually pleasing, easy to install and use<\/td>\n<td>Less customizable than Neofetch<\/td>\n<\/tr>\n<tr>\n<td>Manual<\/td>\n<td>Offers deeper understanding, no installation required<\/td>\n<td>More technical, less visually pleasing<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>While &#8216;neofetch&#8217; is a fantastic tool, it&#8217;s always good to know your alternatives. Depending on your needs, &#8216;screenfetch&#8217; or manual system information display might be more suitable. Experiment with these methods and find the one that works best for you.<\/p>\n<h2>Troubleshooting Common Neofetch Issues<\/h2>\n<p>While &#8216;neofetch&#8217; is generally easy to install and use, you may encounter some issues. Let&#8217;s discuss some common problems and their solutions.<\/p>\n<h3>Neofetch Command Not Found<\/h3>\n<p>If you&#8217;ve installed &#8216;neofetch&#8217; but receive a &#8216;command not found&#8217; error when trying to use it, it&#8217;s likely that your system&#8217;s PATH does not include the directory where &#8216;neofetch&#8217; is installed.<\/p>\n<p>You can use the <code>which<\/code> command to verify if &#8216;neofetch&#8217; is in your PATH:<\/p>\n<pre><code class=\"language-bash line-numbers\">which neofetch\n\n# Output:\n# \/usr\/bin\/neofetch\n<\/code><\/pre>\n<p>If &#8216;neofetch&#8217; is not in your PATH, you can add it using the <code>export<\/code> command. Replace &#8216;\/path\/to\/neofetch&#8217; with the actual path to &#8216;neofetch&#8217;:<\/p>\n<pre><code class=\"language-bash line-numbers\">export PATH=$PATH:\/path\/to\/neofetch\n<\/code><\/pre>\n<h3>Neofetch Not Displaying Correct Information<\/h3>\n<p>If &#8216;neofetch&#8217; isn&#8217;t displaying the correct system information, it&#8217;s possible that your system&#8217;s packages are outdated. Update your system&#8217;s packages and try running &#8216;neofetch&#8217; again:<\/p>\n<pre><code class=\"language-bash line-numbers\"># For Debian based distributions like Ubuntu\nsudo apt-get update\nsudo apt-get upgrade\n\n# For RPM based distributions like CentOS\nsudo yum check-update\nsudo yum update\n<\/code><\/pre>\n<h3>Neofetch Not Displaying Images<\/h3>\n<p>If &#8216;neofetch&#8217; isn&#8217;t displaying images, it might be because your terminal emulator doesn&#8217;t support this feature. You can try installing a different terminal emulator, like &#8216;rxvt-unicode&#8217;, &#8216;xterm&#8217;, or &#8216;gnome-terminal&#8217;.<\/p>\n<p>Remember, while &#8216;neofetch&#8217; is a useful tool, it&#8217;s not the only way to display system information in Linux. If you&#8217;re having trouble with &#8216;neofetch&#8217;, you can always try alternatives like &#8216;screenfetch&#8217; or manual system information display commands.<\/p>\n<h2>Unveiling Linux System Information<\/h2>\n<p>To fully appreciate what &#8216;neofetch&#8217; does, it&#8217;s essential to understand the concept of system information in Linux. System information is a collection of data about your operating system, hardware, and software. It includes details about your OS version, kernel version, hardware specs (like CPU, RAM, and disk space), and installed software.<\/p>\n<h3>Importance of System Information<\/h3>\n<p>System information is crucial for several reasons. It helps users and system administrators understand the system&#8217;s current state, making it easier to troubleshoot issues, plan upgrades, or optimize system performance. For instance, knowing your system&#8217;s RAM usage can help you decide whether you need more memory or if you need to close some applications to free up RAM.<\/p>\n<p>In Linux, there are several ways to access system information. You can use built-in commands like <code>uname<\/code>, <code>df<\/code>, <code>free<\/code>, and <code>lscpu<\/code>. However, these commands each display a specific piece of information, and using them all can be time-consuming and overwhelming, especially for beginners.<\/p>\n<h3>Understanding the Neofetch Command<\/h3>\n<p>This is where &#8216;neofetch&#8217; comes in. Neofetch consolidates various pieces of system information and presents them in a clean, organized, and visually pleasing manner. It displays your OS logo, OS type, kernel version, uptime, package count, shell information, CPU, GPU, memory usage, and more.<\/p>\n<p>Let&#8217;s take a look at a basic &#8216;neofetch&#8217; command and its output:<\/p>\n<pre><code class=\"language-bash line-numbers\">neofetch\n\n# Output:\n# OS: Ubuntu 18.04.5 LTS x86_64\n# Host: 20KHCTO1WW ThinkPad X1 Carbon 6th\n# Kernel: 5.4.0-42-generic\n# Uptime: 2 hours, 42 mins\n# Packages: 1738\n# Shell: bash 4.4.20\n# Resolution: 1920x1080\n# DE: GNOME 3.28.4\n# WM: GNOME Shell\n# WM Theme: Adwaita\n# Theme: Ambiance [GTK2\/3]\n# Icons: Ubuntu-mono-dark [GTK2\/3]\n# Terminal: gnome-terminal\n# CPU: Intel i7-8650U (8) @ 4.200GHz\n# GPU: Intel UHD Graphics 620\n# Memory: 2435MiB \/ 15931MiB\n<\/code><\/pre>\n<p>In the output above, &#8216;neofetch&#8217; displays a wealth of information about the system, all in one place. It&#8217;s a quick and easy way to get a snapshot of your system&#8217;s status.<\/p>\n<p>Understanding system information and how to access it is a fundamental skill for any Linux user or administrator. Tools like &#8216;neofetch&#8217; make this task easier and more accessible, especially for those new to Linux.<\/p>\n<h2>Exploring the Relevance of System Information in Administration and Security<\/h2>\n<p>Understanding your system&#8217;s status is a fundamental aspect of system administration and security. With tools like &#8216;neofetch&#8217;, you can easily access a wealth of information about your system, making it easier to monitor system health, troubleshoot issues, and plan upgrades.<\/p>\n<h3>System Monitoring and Performance Tuning in Linux<\/h3>\n<p>System monitoring is an essential task for any system administrator. It involves keeping track of system resources, such as CPU usage, memory usage, disk space, and network traffic. By monitoring these resources, you can identify potential issues before they become critical.<\/p>\n<p>Performance tuning, on the other hand, involves optimizing your system&#8217;s performance by adjusting various settings and configurations. This could involve tasks like optimizing your system&#8217;s memory usage, adjusting CPU scheduling, or tuning your network settings for better performance.<\/p>\n<p>Here&#8217;s an example of how you can use &#8216;neofetch&#8217; alongside other Linux commands to monitor system resources and identify potential performance bottlenecks:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Display system information with neofetch\nneofetch\n\n# Monitor CPU usage with top\nsudo top\n\n# Output:\n# top - 15:52:01 up 1 day,  3:22,  1 user,  load average: 0.00, 0.01, 0.05\n# Tasks: 224 total,   1 running, 223 sleeping,   0 stopped,   0 zombie\n# %Cpu(s):  3.6 us,  1.4 sy,  0.0 ni, 94.8 id,  0.1 wa,  0.0 hi,  0.1 si,  0.0 st\n# KiB Mem : 16302016 total,  7518036 free,  3897056 used,  4879924 buff\/cache\n# KiB Swap:  2097148 total,  2097148 free,        0 used. 12072292 avail Mem \n<\/code><\/pre>\n<p>In the above example, &#8216;neofetch&#8217; provides a snapshot of system information, while &#8216;top&#8217; provides real-time monitoring of CPU usage. This can help you identify processes that are consuming too much CPU and may need to be optimized or terminated.<\/p>\n<h3>Further Resources for Mastering Linux System Information<\/h3>\n<p>To deepen your understanding of system information in Linux, here are some external resources you may find helpful:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.tldp.org\/\" target=\"_blank\" rel=\"noopener\">The Linux Documentation Project<\/a>: An extensive resource for Linux documentation, including guides on system monitoring and performance tuning.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"http:\/\/www.brendangregg.com\/linuxperf.html\" target=\"_blank\" rel=\"noopener\">Linux Performance<\/a>: A collection of performance tools and techniques for Linux, created by a Netflix performance engineer.<\/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>: A digital magazine dedicated to the Linux community, with many articles and tutorials on system administration and performance tuning.<\/p>\n<\/li>\n<\/ol>\n<p>By understanding system information and how to use it effectively, you can become a more proficient Linux user or administrator. Whether you&#8217;re monitoring system health, troubleshooting issues, planning upgrades, or tuning performance, tools like &#8216;neofetch&#8217; are invaluable for making these tasks easier and more efficient.<\/p>\n<h2>Wrapping Up: Installing Neofetch for Efficient System Information Display<\/h2>\n<p>In this comprehensive guide, we&#8217;ve explored the ins and outs of the &#8216;neofetch&#8217; command in Linux, a powerful tool for displaying system information in a visually appealing way.<\/p>\n<p>We began with the basics, delving into how to install and use &#8216;neofetch&#8217; on different Linux distributions. We then ventured into more advanced territory, exploring how to install &#8216;neofetch&#8217; from source, install specific versions, and use the command in various ways.<\/p>\n<p>Along the way, we tackled common challenges you might face when using &#8216;neofetch&#8217;, such as the &#8216;command not found&#8217; error and incorrect system information, providing you with solutions for each issue.<\/p>\n<p>We also looked at alternative approaches to displaying system information in Linux, comparing &#8216;neofetch&#8217; with &#8216;screenfetch&#8217; and manual system information display commands. Here&#8217;s a quick comparison of these methods:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Features<\/th>\n<th>Complexity<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Neofetch<\/td>\n<td>Visually appealing, customizable, easy to install and use<\/td>\n<td>Moderate<\/td>\n<\/tr>\n<tr>\n<td>Screenfetch<\/td>\n<td>Visually appealing, easy to install and use<\/td>\n<td>Low<\/td>\n<\/tr>\n<tr>\n<td>Manual<\/td>\n<td>Offers deeper understanding, no installation required<\/td>\n<td>High<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re just starting out with &#8216;neofetch&#8217; or you&#8217;re looking to level up your Linux skills, we hope this guide has given you a deeper understanding of &#8216;neofetch&#8217; and its capabilities.<\/p>\n<p>With its balance of visual appeal, customization, and ease of use, &#8216;neofetch&#8217; is a powerful tool for displaying system information in Linux. Happy system exploring!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you looking to display your system information in Linux but unsure how to go about it? The &#8216;neofetch&#8217; command, much like a personal assistant, can simplify this task for you. Neofetch is a command-line utility that displays system information in a visually pleasing manner. It&#8217;s readily available on most package management systems, making the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15301,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6658","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\/6658","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=6658"}],"version-history":[{"count":6,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6658\/revisions"}],"predecessor-version":[{"id":15127,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6658\/revisions\/15127"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/15301"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6658"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6658"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6658"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}