{"id":6656,"date":"2024-01-07T11:54:36","date_gmt":"2024-01-07T18:54:36","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6656"},"modified":"2024-01-07T11:55:03","modified_gmt":"2024-01-07T18:55:03","slug":"install-nano-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-nano-command-linux\/","title":{"rendered":"How to Install and Use the Nano Command in Linux"},"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-nano-command-a-simple-text-editor-300x300.jpg\" alt=\"Digital illustration of a Linux terminal depicting the installation of the nano command a simple text editor\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you finding it challenging to edit text files in Linux? This task can seem daunting, however the &#8216;nano&#8217; command in Linux simplifies this process significantly. Nano provides an easy-to-use interface for editing plain text, especially for programmers. It can be installed via most package management systems, making the process straightforward once you know the steps.<\/p>\n<p><strong>In this guide, we will navigate you through the process of installing and using the &#8216;nano&#8217; command in Linux.<\/strong> We will show you methods for both APT and YUM-based distributions, such as Debian, Ubuntu, CentOS, and AlmaLinux. We&#8217;ll delve into more advanced topics like compiling from source and installing a specific version of the command. Finally, we will guide you on how to use the &#8216;nano&#8217; command and verify that the correct version is installed.<\/p>\n<p>So, let&#8217;s dive in and start installing the &#8216;nano&#8217; command on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;nano&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  The <code>'nano'<\/code> command is typically pre-installed on most Linux distributions. However, if it&#8217;s not available on your system, you can install it. For Debian-based distributions like Ubuntu, use the command <code>sudo apt-get install nano<\/code>. For RPM-based distributions like CentOS, use <code>sudo yum install nano<\/code>.\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\"># For Debian-based distributions\nsudo apt-get install nano\n\n# For RPM-based distributions\nsudo yum install nano\n\n# Output:\n# 'nano' is already the newest version (2.9.3-2).\n# 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n<\/code><\/pre>\n<p>This is a basic way to install the &#8216;nano&#8217; command in Linux, but there&#8217;s much more to learn about installing and using &#8216;nano&#8217;. Continue reading for more detailed information and advanced usage scenarios.<\/p>\n<h2>Getting Started with the &#8216;nano&#8217; Command<\/h2>\n<p>The &#8216;nano&#8217; command in Linux is a command-line text editor, which is a simpler alternative to other editors like &#8216;vi&#8217; or &#8217;emacs&#8217;. It&#8217;s user-friendly and intuitive, making it a favorite among beginners and regular users alike. With &#8216;nano&#8217;, you can create, edit, and manage text files directly from your Linux terminal.<\/p>\n<h3>Installing &#8216;nano&#8217; Using APT<\/h3>\n<p>On Debian-based distributions like Ubuntu, we use the Advanced Packaging Tool (APT) to install &#8216;nano&#8217;. Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt update\nsudo apt install nano\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# nano is already the newest version (2.9.3-2).\n# 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n<\/code><\/pre>\n<p>First, we update the package lists for upgrades and new packages from repositories with <code>sudo apt update<\/code>. Then, we install &#8216;nano&#8217; using <code>sudo apt install nano<\/code>. The output informs us that &#8216;nano&#8217; is already installed and is the newest version.<\/p>\n<h3>Installing &#8216;nano&#8217; Using YUM<\/h3>\n<p>On RPM-based distributions like CentOS, we use the Yellowdog Updater, Modified (YUM) to install &#8216;nano&#8217;. Here&#8217;s the process:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum check-update\nsudo yum install nano\n\n# Output:\n# Loaded plugins: fastestmirror, ovl\n# Loading mirror speeds from cached hostfile\n# Package nano-2.9.8-1.el7.x86_64 already installed and latest version\n# Nothing to do\n<\/code><\/pre>\n<p>First, we check for system updates with <code>sudo yum check-update<\/code>. Then, we install &#8216;nano&#8217; using <code>sudo yum install nano<\/code>. The output tells us that &#8216;nano&#8217; is already installed and is the latest version.<\/p>\n<h3>Installing &#8216;nano&#8217; Using DNF<\/h3>\n<p>On newer Fedora distributions, we use the Dandified YUM (DNF) to install &#8216;nano&#8217;. Here&#8217;s how:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo dnf check-update\nsudo dnf install nano\n\n# Output:\n# Last metadata expiration check: 0:15:42 ago on Sat 22 Jan 2022 06:37:32 PM PKT.\n# Package nano-2.9.8-1.el7.x86_64 is already installed.\n# Dependencies resolved.\n# Nothing to do.\n# Complete!\n<\/code><\/pre>\n<p>First, we check for system updates with <code>sudo dnf check-update<\/code>. Then, we install &#8216;nano&#8217; using <code>sudo dnf install nano<\/code>. The output tells us that &#8216;nano&#8217; is already installed.<\/p>\n<p>This is your first step into using the &#8216;nano&#8217; command in Linux. In the next sections, we will delve into more advanced uses and alternative approaches.<\/p>\n<h2>Installing &#8216;nano&#8217; from Source Code<\/h2>\n<p>For those who want more control over the installation process, you can install &#8216;nano&#8217; directly from the source code. This method requires a bit more technical know-how but provides the latest features and updates.<\/p>\n<p>Here&#8217;s how to install &#8216;nano&#8217; from source on a Linux system:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget https:\/\/www.nano-editor.org\/dist\/v2.9\/nano-2.9.8.tar.gz\n\ntar -xvf nano-2.9.8.tar.gz\n\ncd nano-2.9.8\n\n.\/configure\n\nmake\n\nsudo make install\n\n# Output:\n# 'nano' installed successfully from source.\n<\/code><\/pre>\n<p>This sequence of commands first downloads the &#8216;nano&#8217; source code using <code>wget<\/code> and then extracts the tar.gz file with <code>tar -xvf<\/code>. We then navigate into the extracted directory with <code>cd<\/code>. The <code>.\/configure<\/code> command checks your system for the necessary dependencies and prepares the makefile. <code>make<\/code> compiles the source code, and <code>sudo make install<\/code> installs the program.<\/p>\n<h2>Installing Different Versions of &#8216;nano&#8217;<\/h2>\n<p>There are situations where you might need to install a specific version of &#8216;nano&#8217;. This could be due to compatibility issues, or perhaps a certain feature is only available in a specific version.<\/p>\n<h3>Installing Specific Versions from Source<\/h3>\n<p>To install a specific version of &#8216;nano&#8217; from source, you only need to change the URL in the <code>wget<\/code> command to the version you want. For example, to install version 2.9.7, the command would be <code>wget https:\/\/www.nano-editor.org\/dist\/v2.9\/nano-2.9.7.tar.gz<\/code>.<\/p>\n<h3>Installing Specific Versions Using APT or YUM<\/h3>\n<p>To install a specific version using APT or YUM, you can specify the version number in the install command. For example, <code>sudo apt install nano=2.9.3-2<\/code> or <code>sudo yum install nano-2.9.8-1.el7<\/code>.<\/p>\n<h3>Version Comparison<\/h3>\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>2.9.3<\/td>\n<td>Auto-indent, new &#8216;tabgives&#8217; command<\/td>\n<td>Ubuntu 18.04, 20.04<\/td>\n<\/tr>\n<tr>\n<td>2.9.8<\/td>\n<td>Improved UTF-8 handling, new &#8216;wordbounds&#8217; command<\/td>\n<td>CentOS 7, 8<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Basic Usage of &#8216;nano&#8217;<\/h2>\n<p>Once &#8216;nano&#8217; is installed, you can start using it to edit text files. Here&#8217;s how to open a file called &#8216;example.txt&#8217; in &#8216;nano&#8217;:<\/p>\n<pre><code class=\"language-bash line-numbers\">nano example.txt\n\n# Output:\n# Opens 'example.txt' in the 'nano' editor.\n<\/code><\/pre>\n<h2>Verifying the Installation<\/h2>\n<p>To ensure &#8216;nano&#8217; is installed correctly, you can use the <code>nano --version<\/code> command. This will display the version of &#8216;nano&#8217; that is currently installed on your system.<\/p>\n<pre><code class=\"language-bash line-numbers\">nano --version\n\n# Output:\n# GNU nano, version 2.9.3\n<\/code><\/pre>\n<p>This command confirms that &#8216;nano&#8217; is installed and displays the installed version.<\/p>\n<h2>Exploring Alternative Text Editors in Linux<\/h2>\n<p>While &#8216;nano&#8217; is an excellent text editor for beginners, Linux offers a variety of other powerful text editors that you might want to consider as you become more comfortable with the command-line environment. Two of the most popular alternatives are &#8216;vi&#8217; and &#8217;emacs&#8217;.<\/p>\n<h3>Diving into &#8216;vi&#8217;<\/h3>\n<p>&#8216;vi&#8217; is a powerful text editor that comes pre-installed on almost every Unix-like system. It has a steeper learning curve compared to &#8216;nano&#8217;, but once mastered, it offers a wide range of features and commands that can significantly increase your productivity.<\/p>\n<p>Here&#8217;s how to open a file named &#8216;example.txt&#8217; with &#8216;vi&#8217;:<\/p>\n<pre><code class=\"language-bash line-numbers\">vi example.txt\n\n# Output:\n# Opens 'example.txt' in the 'vi' editor.\n<\/code><\/pre>\n<p>To save and exit in &#8216;vi&#8217;, you would press <code>ESC<\/code>, type <code>:wq<\/code>, and then press <code>Enter<\/code>.<\/p>\n<h3>Embracing &#8217;emacs&#8217;<\/h3>\n<p>&#8217;emacs&#8217; is another powerful text editor that is known for its extensive functionality and customizability. Like &#8216;vi&#8217;, it has a steep learning curve but offers a vast array of features that can be customized to fit your specific needs.<\/p>\n<p>Here&#8217;s how to open a file named &#8216;example.txt&#8217; with &#8217;emacs&#8217;:<\/p>\n<pre><code class=\"language-bash line-numbers\">emacs example.txt\n\n# Output:\n# Opens 'example.txt' in the 'emacs' editor.\n<\/code><\/pre>\n<p>To save and exit in &#8217;emacs&#8217;, you would press <code>CTRL+X<\/code>, then <code>CTRL+S<\/code> to save, followed by <code>CTRL+X<\/code> and <code>CTRL+C<\/code> to exit.<\/p>\n<h3>Comparing &#8216;nano&#8217;, &#8216;vi&#8217;, and &#8217;emacs&#8217;<\/h3>\n<table>\n<thead>\n<tr>\n<th>Editor<\/th>\n<th>Ease of Use<\/th>\n<th>Customizability<\/th>\n<th>Pre-installed<\/th>\n<th>Key Features<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>&#8216;nano&#8217;<\/td>\n<td>High<\/td>\n<td>Low<\/td>\n<td>Yes<\/td>\n<td>Intuitive interface, easy to learn<\/td>\n<\/tr>\n<tr>\n<td>&#8216;vi&#8217;<\/td>\n<td>Medium<\/td>\n<td>High<\/td>\n<td>Yes<\/td>\n<td>Powerful commands, widely available<\/td>\n<\/tr>\n<tr>\n<td>&#8217;emacs&#8217;<\/td>\n<td>Low<\/td>\n<td>Very High<\/td>\n<td>No<\/td>\n<td>Highly customizable, extensive functionality<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>While &#8216;nano&#8217; is the easiest to use, &#8216;vi&#8217; and &#8217;emacs&#8217; offer more advanced features and customizability. Depending on your needs and comfort level, you might find one of these alternatives more suitable. Regardless of the text editor you choose, the key is to find the one that best fits your workflow and enhances your productivity.<\/p>\n<h2>Troubleshooting Common &#8216;nano&#8217; Issues<\/h2>\n<p>While &#8216;nano&#8217; is a reliable text editor, you may encounter some issues or errors during its use. Let&#8217;s discuss some common problems and their solutions.<\/p>\n<h3>&#8216;nano&#8217; Command Not Found<\/h3>\n<p>One common issue is the &#8216;nano: command not found&#8217; error. This typically happens when &#8216;nano&#8217; is not installed on your system or the system can&#8217;t locate the &#8216;nano&#8217; binary.<\/p>\n<pre><code class=\"language-bash line-numbers\">nano example.txt\n\n# Output:\n# bash: nano: command not found\n<\/code><\/pre>\n<p>If you encounter this error, you should first check whether &#8216;nano&#8217; is installed on your system using the <code>which nano<\/code> command. If &#8216;nano&#8217; is installed, this command will return the path to the &#8216;nano&#8217; binary.<\/p>\n<pre><code class=\"language-bash line-numbers\">which nano\n\n# Output:\n# \/usr\/bin\/nano\n<\/code><\/pre>\n<p>If &#8216;nano&#8217; is not installed, you should install it using the appropriate commands for your distribution, as discussed in the previous sections.<\/p>\n<h3>Permission Denied Error<\/h3>\n<p>Another common issue is the &#8216;Permission denied&#8217; error. This occurs when you try to open a file with &#8216;nano&#8217; that you do not have read permissions for.<\/p>\n<pre><code class=\"language-bash line-numbers\">nano \/etc\/shadow\n\n# Output:\n# Error reading \/etc\/shadow: Permission denied\n<\/code><\/pre>\n<p>In this case, you can use the <code>sudo<\/code> command to open the file with root permissions. But be careful when editing system files as it can potentially break your system.<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo nano \/etc\/shadow\n\n# Output:\n# Opens \/etc\/shadow in the 'nano' editor with root permissions.\n<\/code><\/pre>\n<p>Remember, while &#8216;nano&#8217; is a powerful tool, it must be used wisely. Always double-check your commands, especially when editing system files or using root permissions.<\/p>\n<h2>Understanding Text Editors in Linux<\/h2>\n<p>In the world of Linux, text editors are an essential tool for every user. They allow you to create, modify, and view text files. This can range from writing a simple note to scripting a complex program.<\/p>\n<h3>Command-line vs. Graphical Text Editors<\/h3>\n<p>There are two main types of text editors in Linux: command-line and graphical.<\/p>\n<h4>Command-line Text Editors<\/h4>\n<p>Command-line text editors, such as &#8216;nano&#8217;, &#8216;vi&#8217;, and &#8217;emacs&#8217;, are run directly in the terminal. They are lightweight and can be used remotely through an SSH connection. They also offer powerful features like syntax highlighting, search and replace, and the ability to handle large files.<\/p>\n<p>Here&#8217;s an example of opening a file with &#8216;nano&#8217; in the terminal:<\/p>\n<pre><code class=\"language-bash line-numbers\">nano my_file.txt\n\n# Output:\n# Opens 'my_file.txt' in the 'nano' editor.\n<\/code><\/pre>\n<p>In this example, we used the &#8216;nano&#8217; command followed by the name of the file to open it in the terminal.<\/p>\n<h4>Graphical Text Editors<\/h4>\n<p>Graphical text editors, such as Gedit or Kate, provide a graphical user interface (GUI) for editing text files. They are easy to use and often come with features like multiple document editing, spell check, and more.<\/p>\n<p>Here&#8217;s an example of opening a file with Gedit:<\/p>\n<pre><code class=\"language-bash line-numbers\">gedit my_file.txt\n\n# Output:\n# Opens 'my_file.txt' in the Gedit editor.\n<\/code><\/pre>\n<p>In this example, we used the &#8216;gedit&#8217; command followed by the name of the file to open it in the Gedit editor.<\/p>\n<h3>The Importance of Text Editing in Linux<\/h3>\n<p>Text editing is a fundamental skill in Linux. It&#8217;s essential for tasks like editing configuration files, writing scripts, taking notes, and programming. Understanding how to use a text editor like &#8216;nano&#8217; can significantly enhance your productivity and efficiency as a Linux user.<\/p>\n<p>In conclusion, whether you prefer a command-line or a graphical text editor depends on your needs and comfort level. However, having a basic understanding of how to use a command-line text editor like &#8216;nano&#8217; is a valuable skill for any Linux user.<\/p>\n<h2>Expanding Your Linux Skills: Scripting and Programming<\/h2>\n<p>Understanding how to install and use the &#8216;nano&#8217; command in Linux is just the beginning. The real power of Linux lies in its ability to automate tasks and execute complex operations through scripting and programming.<\/p>\n<h3>The Power of Scripting in Linux<\/h3>\n<p>Scripting in Linux allows you to automate repetitive tasks, manage files and directories, and even create your own commands. With just a few lines of code, you can automate complex tasks, saving you time and effort.<\/p>\n<p>Here&#8217;s an example of a simple bash script that uses &#8216;nano&#8217; to create a new text file:<\/p>\n<pre><code class=\"language-bash line-numbers\">#!\/bin\/bash\n\necho 'Hello, world!' | nano -t my_file.txt\n\n# Output:\n# Creates a new file named 'my_file.txt' containing the text 'Hello, world!'.\n<\/code><\/pre>\n<p>In this example, we create a bash script that uses the &#8216;echo&#8217; command to output the text &#8216;Hello, world!&#8217;, which we then pipe into &#8216;nano&#8217; to create a new text file named &#8216;my_file.txt&#8217;.<\/p>\n<h3>Understanding File Permissions in Linux<\/h3>\n<p>Another important aspect of Linux is file permissions. Understanding file permissions is crucial for managing access to files and directories in a Linux system.<\/p>\n<p>Here&#8217;s an example of how to change file permissions using the &#8216;chmod&#8217; command:<\/p>\n<pre><code class=\"language-bash line-numbers\">chmod 755 my_file.txt\n\n# Output:\n# Changes the permissions of 'my_file.txt' to 755 (read, write, and execute for the owner, and read and execute for the group and others).\n<\/code><\/pre>\n<p>In this example, we use the &#8216;chmod&#8217; command to change the permissions of &#8216;my_file.txt&#8217; to 755, which allows the owner to read, write, and execute the file, and allows the group and others to read and execute the file.<\/p>\n<h3>Further Resources for Linux Mastery<\/h3>\n<p>If you&#8217;re interested in diving deeper into Linux, here are some resources to help you on your journey:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.amazon.com\/Linux-Command-Line-Complete-Introduction\/dp\/1593273894\" target=\"_blank\" rel=\"noopener\">The Linux Command Line: A Complete Introduction<\/a> &#8211; This book offers a comprehensive introduction to the command line, including text editing with &#8216;nano&#8217;.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.udemy.com\/course\/learn-linux-in-5-days\/\" target=\"_blank\" rel=\"noopener\">Learn Linux in 5 Days<\/a> &#8211; This online course provides a quick introduction to Linux, covering a wide range of topics including text editing, file permissions, and scripting.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/linuxjourney.com\/\" target=\"_blank\" rel=\"noopener\">Linux Journey<\/a> &#8211; This website offers a fun and interactive way to learn Linux, with lessons on a variety of topics including the command line, file permissions, and scripting.<\/p>\n<\/li>\n<\/ol>\n<p>Remember, mastering Linux is a journey. Take it one step at a time, and before you know it, you&#8217;ll be a Linux pro!<\/p>\n<h2>Wrapping Up: Installing the &#8216;nano&#8217; Command in Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve navigated the ins and outs of the &#8216;nano&#8217; command in Linux, a versatile text editor that simplifies file editing right in the terminal.<\/p>\n<p>We began with the basics, learning how to install &#8216;nano&#8217; using different package managers like APT, YUM, and DNF. We also explored how to install &#8216;nano&#8217; directly from the source code, providing you with the latest features and updates. We then delved into more advanced usage, such as installing specific versions of &#8216;nano&#8217; and the basic usage of the command.<\/p>\n<p>Along the way, we tackled common challenges you might face when using &#8216;nano&#8217;, such as the &#8216;command not found&#8217; error and &#8216;permission denied&#8217; error, providing you with solutions for each issue.<\/p>\n<p>We also looked at alternative text editors in Linux, comparing &#8216;nano&#8217; with other popular editors like &#8216;vi&#8217; and &#8217;emacs&#8217;. Here&#8217;s a quick comparison of these editors:<\/p>\n<table>\n<thead>\n<tr>\n<th>Editor<\/th>\n<th>Ease of Use<\/th>\n<th>Customizability<\/th>\n<th>Pre-installed<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>&#8216;nano&#8217;<\/td>\n<td>High<\/td>\n<td>Low<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>&#8216;vi&#8217;<\/td>\n<td>Medium<\/td>\n<td>High<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>&#8217;emacs&#8217;<\/td>\n<td>Low<\/td>\n<td>Very High<\/td>\n<td>No<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re just starting out with the &#8216;nano&#8217; command in Linux or you&#8217;re looking to level up your text editing skills, we hope this guide has given you a deeper understanding of &#8216;nano&#8217; and its capabilities.<\/p>\n<p>With its balance of ease of use, customizability, and widespread availability, &#8216;nano&#8217; is a powerful tool for text editing in Linux. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you finding it challenging to edit text files in Linux? This task can seem daunting, however the &#8216;nano&#8217; command in Linux simplifies this process significantly. Nano provides an easy-to-use interface for editing plain text, especially for programmers. It can be installed via most package management systems, making the process straightforward once you know the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15299,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6656","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\/6656","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=6656"}],"version-history":[{"count":6,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6656\/revisions"}],"predecessor-version":[{"id":15125,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6656\/revisions\/15125"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/15299"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6656"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6656"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6656"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}