{"id":6597,"date":"2024-01-02T14:18:02","date_gmt":"2024-01-02T21:18:02","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6597"},"modified":"2024-01-02T14:18:42","modified_gmt":"2024-01-02T21:18:42","slug":"install-fdisk-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-fdisk-command-linux\/","title":{"rendered":"Mastering Linux: How to Install and Use fdisk"},"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\/Graphic-representation-of-a-Linux-terminal-showing-the-installation-process-of-the-fdisk-command-for-disk-partitioning-300x300.jpg\" alt=\"Graphic representation of a Linux terminal showing the installation process of the fdisk command for disk partitioning\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you struggling with managing disk partitions in Linux? You&#8217;re not alone. Many Linux users, especially beginners, find this task a bit daunting. However, the &#8216;fdisk&#8217; command in Linux is a powerful tool that can help you design and manage disk partitions with ease, much like a skilled architect. Additionally, the &#8216;fdisk&#8217; command is 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;fdisk&#8217; command on your Linux system.<\/strong> We will delve into advanced topics like compiling from source and installing a specific version of the command. Finally, we will wrap up with guidance on how to use the &#8216;fdisk&#8217; command and verify the correct version is installed.<\/p>\n<p>So, let&#8217;s dive in and start installing &#8216;fdisk&#8217; on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;fdisk&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  In most Linux distributions, the <code>'fdisk'<\/code> command comes pre-installed. You can verify by checking the version with, <code>fdisk --version<\/code>. If for some reason it is not installed, you can add it with the syntax, <code>apt-get install fdisk<\/code> or <code>sudo yum install util-linux<\/code>. To use it, you can run the command <code>sudo fdisk \/dev\/sda<\/code> to manage the partitions on the &#8216;sda&#8217; disk.\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\">sudo fdisk \/dev\/sda\n<\/code><\/pre>\n<p>This command will open the fdisk utility for the &#8216;sda&#8217; disk, where you can create, delete, or modify partitions. Remember, you need to have superuser privileges to run this command.<\/p>\n<p>This is just a basic way to use the &#8216;fdisk&#8217; command in Linux, but there&#8217;s much more to learn about managing disk partitions. Continue reading for more detailed information and advanced usage scenarios.<\/p>\n<h2>Understanding and Installing the &#8216;fdisk&#8217; Command<\/h2>\n<p>The &#8216;fdisk&#8217; command is a disk partition manipulation tool available in Linux. It allows you to create, delete, resize, and manage partitions on your hard drive. Understanding how to use the &#8216;fdisk&#8217; command can help you manage your system&#8217;s storage effectively.<\/p>\n<h3>Installing &#8216;fdisk&#8217; with APT<\/h3>\n<p>If you&#8217;re using a Debian-based Linux distribution like Ubuntu, you can install &#8216;fdisk&#8217; using the Advanced Package Tool (APT). The &#8216;fdisk&#8217; command is usually pre-installed, but you can ensure it&#8217;s installed and updated to the latest version with the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get update\nsudo apt-get install fdisk\n\n# Output:\n# 'fdisk is already the newest version (2.36.1-7ubuntu3).'\n<\/code><\/pre>\n<p>This command updates your package lists and installs &#8216;fdisk&#8217;. If &#8216;fdisk&#8217; is already installed, it will be updated to the latest version.<\/p>\n<h3>Installing &#8216;fdisk&#8217; with YUM<\/h3>\n<p>For CentOS, Fedora, or any other Linux distribution that uses the Yellowdog Updater, Modified (YUM), you can install &#8216;fdisk&#8217; with the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install util-linux\n\n# Output:\n# 'Package util-linux-2.23.2-63.el7.x86_64 already installed and latest version'\n<\/code><\/pre>\n<p>The &#8216;fdisk&#8217; command is part of the &#8216;util-linux&#8217; package in these distributions. If it&#8217;s already installed, this command will ensure it&#8217;s updated to the latest version.<\/p>\n<h3>Checking the &#8216;fdisk&#8217; Version<\/h3>\n<p>After installation, you can check the version of &#8216;fdisk&#8217; installed on your system with the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">fdisk --version\n\n# Output:\n# 'fdisk from util-linux 2.36.1'\n<\/code><\/pre>\n<p>This command will display the version of &#8216;fdisk&#8217; installed on your system, helping you ensure that you have the latest version for optimal performance.<\/p>\n<h2>Installing &#8216;fdisk&#8217; from Source Code<\/h2>\n<p>For those who prefer to compile from source, you can download the &#8216;fdisk&#8217; source code from the official repository. Here&#8217;s how to do it:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget https:\/\/mirrors.edge.kernel.org\/pub\/linux\/utils\/util-linux\/v2.36\/util-linux-2.36.tar.gz\ntar -xvf util-linux-2.36.tar.gz\ncd util-linux-2.36\n.\/configure\nmake\nsudo make install\n<\/code><\/pre>\n<p>This series of commands downloads the source code, extracts it, navigates into the extracted directory, compiles the source code, and then installs it.<\/p>\n<h2>Installing Different Versions of &#8216;fdisk&#8217;<\/h2>\n<h3>From Source<\/h3>\n<p>You can install different versions of &#8216;fdisk&#8217; from source by specifying the version in the download URL. For example, to install version 2.35, you would replace &#8216;2.36&#8217; with &#8216;2.35&#8217; in the URL.<\/p>\n<h3>Using Package Managers<\/h3>\n<h4>APT<\/h4>\n<p>On Debian-based systems, you can specify the version of &#8216;fdisk&#8217; to install using the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install fdisk=2.35\n<\/code><\/pre>\n<h4>YUM<\/h4>\n<p>On Red Hat-based systems, you can specify the version of &#8216;fdisk&#8217; to install using the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install util-linux-2.35\n<\/code><\/pre>\n<h3>Version Differences<\/h3>\n<p>Different versions of &#8216;fdisk&#8217; may include bug fixes, new features, or improved compatibility with certain systems. Here&#8217;s a brief comparison of some recent versions:<\/p>\n<table>\n<thead>\n<tr>\n<th>Version<\/th>\n<th>Key Changes<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>2.36<\/td>\n<td>Added support for new partition types<\/td>\n<\/tr>\n<tr>\n<td>2.35<\/td>\n<td>Improved error handling<\/td>\n<\/tr>\n<tr>\n<td>2.34<\/td>\n<td>Fixed bugs related to partition resizing<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Basic Usage and Verification<\/h2>\n<h3>Using &#8216;fdisk&#8217;<\/h3>\n<p>To list all partitions on all drives, use the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo fdisk -l\n\n# Output:\n# Disk \/dev\/sda: 50 GiB, 53687091200 bytes, 104857600 sectors\n# Disk model: VBOX HARDDISK\n# Units: sectors of 1 * 512 = 512 bytes\n# Sector size (logical\/physical): 512 bytes \/ 512 bytes\n# I\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\n# Disklabel type: dos\n# Disk identifier: 0x7c7cb489\n<\/code><\/pre>\n<p>This command lists detailed information about all partitions on your system.<\/p>\n<h3>Verifying Installation<\/h3>\n<p>To verify that &#8216;fdisk&#8217; is installed and working correctly, you can check its version:<\/p>\n<pre><code class=\"language-bash line-numbers\">fdisk --version\n\n# Output:\n# 'fdisk from util-linux 2.36.1'\n<\/code><\/pre>\n<p>This command will display the version of &#8216;fdisk&#8217; installed on your system, confirming that it&#8217;s installed correctly.<\/p>\n<h2>Exploring Alternative Tools for Disk Partitioning<\/h2>\n<p>While &#8216;fdisk&#8217; is a powerful tool for managing disk partitions in Linux, there are other methods and tools you can use. Let&#8217;s explore some alternatives, such as the &#8216;parted&#8217; command and the &#8216;GParted&#8217; graphical tool.<\/p>\n<h3>The &#8216;parted&#8217; Command<\/h3>\n<p>&#8216;parted&#8217; is a command-line utility for managing disk partitions in Linux. It supports multiple partition table formats, including MBR and GPT. Here&#8217;s how you can use it to list all partitions:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo parted -l\n\n# Output:\n# Model: ATA VBOX HARDDISK (scsi)\n# Disk \/dev\/sda: 53.7GB\n# Sector size (logical\/physical): 512B\/512B\n# Partition Table: msdos\n# Disk Flags: \n<\/code><\/pre>\n<p>This command lists all partitions and their details on your system. The &#8216;parted&#8217; command provides more detailed output compared to &#8216;fdisk&#8217;, making it a good alternative for advanced users.<\/p>\n<h3>The &#8216;GParted&#8217; Tool<\/h3>\n<p>&#8216;GParted&#8217; is a graphical partition editor for Linux. It allows you to visually manage your disk partitions. You can install it using the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install gparted\n<\/code><\/pre>\n<p>Once installed, you can start &#8216;GParted&#8217; from the command line by typing &#8216;gparted&#8217;. The tool provides a user-friendly interface to manage disk partitions, making it a great choice for beginners and those who prefer a GUI.<\/p>\n<h3>Comparing &#8216;fdisk&#8217;, &#8216;parted&#8217;, and &#8216;GParted&#8217;<\/h3>\n<table>\n<thead>\n<tr>\n<th>Tool<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>fdisk<\/td>\n<td>Simple to use, widely supported<\/td>\n<td>Limited functionality compared to alternatives<\/td>\n<\/tr>\n<tr>\n<td>parted<\/td>\n<td>Supports multiple partition table formats, provides detailed output<\/td>\n<td>Command-line only, can be complex for beginners<\/td>\n<\/tr>\n<tr>\n<td>GParted<\/td>\n<td>Graphical interface, user-friendly<\/td>\n<td>Requires a desktop environment, not suitable for servers<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>While &#8216;fdisk&#8217; is a great tool for managing disk partitions, &#8216;parted&#8217; and &#8216;GParted&#8217; offer additional features and interfaces. Choose the tool that best suits your needs and comfort level.<\/p>\n<h2>Navigating Common &#8216;fdisk&#8217; Command Issues<\/h2>\n<p>While &#8216;fdisk&#8217; is a robust tool, you might encounter some issues and errors. Here are some common challenges and how to resolve them.<\/p>\n<h3>Issue: &#8216;fdisk&#8217; Command Not Found<\/h3>\n<p>If you try to run &#8216;fdisk&#8217; and receive a &#8216;command not found&#8217; error, it&#8217;s likely that &#8216;fdisk&#8217; is not installed on your system. You can install it using your package manager. For example, on a Debian-based system, you would use:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install fdisk\n\n# Output:\n# 'fdisk is already the newest version (2.36.1-7ubuntu3).'\n<\/code><\/pre>\n<p>This command will install &#8216;fdisk&#8217; if it&#8217;s not already installed. If it is installed, it will ensure it&#8217;s updated to the latest version.<\/p>\n<h3>Issue: Permission Denied<\/h3>\n<p>If you try to run &#8216;fdisk&#8217; and receive a &#8216;Permission denied&#8217; error, it means you don&#8217;t have the necessary permissions. The &#8216;fdisk&#8217; command requires superuser privileges, so you need to run it with &#8216;sudo&#8217;:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo fdisk -l\n\n# Output:\n# Disk \/dev\/sda: 50 GiB, 53687091200 bytes, 104857600 sectors\n# Disk model: VBOX HARDDISK\n# Units: sectors of 1 * 512 = 512 bytes\n# Sector size (logical\/physical): 512 bytes \/ 512 bytes\n# I\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\n# Disklabel type: dos\n# Disk identifier: 0x7c7cb489\n<\/code><\/pre>\n<p>This command will list all partitions on your system with the necessary permissions.<\/p>\n<h3>Issue: Unable to Write Changes<\/h3>\n<p>If you&#8217;re unable to write changes to a disk, it could be because the disk is in use. Make sure no processes are using the disk before running &#8216;fdisk&#8217;. You can use the &#8216;lsof&#8217; command to check for processes using a disk:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo lsof \/dev\/sda\n\n# Output:\n# COMMAND  PID USER   FD   TYPE DEVICE SIZE\/OFF NODE NAME\n# systemd    1 root  cwd    DIR    8,1     4096    2 \/\n<\/code><\/pre>\n<p>This command will list all processes using the &#8216;sda&#8217; disk. You can then stop these processes before running &#8216;fdisk&#8217;.<\/p>\n<p>Remember, always back up your data before making changes to disk partitions. While &#8216;fdisk&#8217; is a powerful tool, misuse can lead to data loss.<\/p>\n<h2>Understanding Disk Partitioning in Linux<\/h2>\n<p>To fully grasp the functionality of the &#8216;fdisk&#8217; command, it&#8217;s essential to understand the concept of disk partitioning in Linux.<\/p>\n<h3>What is Disk Partitioning?<\/h3>\n<p>Disk partitioning involves dividing a hard disk into multiple, independent storage areas known as partitions. Each partition functions as a separate disk, with its own file system. This structure allows you to organize data efficiently, isolate system files from user files, and install multiple operating systems on the same disk.<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo fdisk -l\n\n# Output:\n# Disk \/dev\/sda: 50 GiB, 53687091200 bytes, 104857600 sectors\n# Disk model: VBOX HARDDISK\n# Units: sectors of 1 * 512 = 512 bytes\n# Sector size (logical\/physical): 512 bytes \/ 512 bytes\n# I\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\n# Disklabel type: dos\n# Disk identifier: 0x7c7cb489\n<\/code><\/pre>\n<p>In this example, the &#8216;fdisk -l&#8217; command lists the partitions on the disk. Each entry represents a different partition, each with its own file system.<\/p>\n<h3>Why is Disk Partitioning Important?<\/h3>\n<p>Disk partitioning is crucial for several reasons:<\/p>\n<ul>\n<li><strong>Isolation of System and User Data:<\/strong> By keeping system and user data in separate partitions, you can protect system files from user errors or faulty software.<\/p>\n<\/li>\n<li>\n<p><strong>Multiple Operating Systems:<\/strong> Disk partitioning allows you to install multiple operating systems on the same hard disk. Each OS resides in its own partition and operates independently.<\/p>\n<\/li>\n<li>\n<p><strong>Efficient Data Management:<\/strong> Disk partitions can make it easier to organize and locate files. For instance, you can keep multimedia files in one partition and documents in another.<\/p>\n<\/li>\n<li>\n<p><strong>Improved Performance:<\/strong> Disk partitioning can lead to better system performance. Smaller partitions can be quicker to scan and less prone to fragmentation.<\/p>\n<\/li>\n<\/ul>\n<p>Understanding disk partitioning in Linux is fundamental to using the &#8216;fdisk&#8217; command effectively. It allows you to create, modify, and manage partitions to best suit your data management needs.<\/p>\n<h2>The Bigger Picture: Disk Partitioning in System Administration<\/h2>\n<p>Understanding and effectively using the &#8216;fdisk&#8217; command in Linux is just one aspect of system administration and data management. The principles of disk partitioning extend beyond this single command, influencing how we manage and interact with our data on a daily basis.<\/p>\n<h3>The Role of File Systems in Linux<\/h3>\n<p>A file system is a method of organizing and storing data on a hard disk. It defines how data is stored and retrieved. Each partition you create with &#8216;fdisk&#8217; can have its own file system, such as ext4, NTFS, or FAT32. Understanding file systems can help you make informed decisions when partitioning your disk.<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo fdisk -l \/dev\/sda\n\n# Output:\n# Disk \/dev\/sda: 50 GiB, 53687091200 bytes, 104857600 sectors\n# Disk model: VBOX HARDDISK\n# Units: sectors of 1 * 512 = 512 bytes\n# Sector size (logical\/physical): 512 bytes \/ 512 bytes\n# I\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\n# Disklabel type: dos\n# Disk identifier: 0x7c7cb489\n<\/code><\/pre>\n<p>This command lists the partitions on the &#8216;sda&#8217; disk and their file systems. Understanding the file systems of your partitions can help you manage your data more effectively.<\/p>\n<h3>Disk Quotas in Linux<\/h3>\n<p>Disk quotas are a method of managing storage in a multi-user environment. They allow you to limit the amount of disk space a user or group can use. This can prevent a single user from consuming all available disk space and ensure fair access to storage resources.<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo edquota -u username\n<\/code><\/pre>\n<p>This command opens the disk quota configuration for the specified user. You can then specify the disk space limits for that user.<\/p>\n<h3>Further Resources for Mastering Disk Partitioning<\/h3>\n<ul>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"http:\/\/tldp.org\/HOWTO\/Partition\/index.html\" target=\"_blank\" rel=\"noopener\">The Linux Documentation Project: Disk Partitioning<\/a>: A comprehensive guide to disk partitioning in Linux.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.tecmint.com\/fdisk-commands-to-manage-linux-disk-partitions\/\" target=\"_blank\" rel=\"noopener\">Linux Disk Management with fdisk<\/a>: An in-depth tutorial on managing disk partitions with &#8216;fdisk&#8217;.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.gnu.org\/software\/parted\/manual\/\" target=\"_blank\" rel=\"noopener\">The &#8216;parted&#8217; Command<\/a>: The official documentation for the &#8216;parted&#8217; command, a powerful alternative to &#8216;fdisk&#8217;.<\/p>\n<\/li>\n<\/ul>\n<h2>Wrapping Up: Installing &#8216;fdisk&#8217; for Disk Partitioning in Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved into the &#8216;fdisk&#8217; command in Linux, a powerful tool for managing disk partitions. From installation to advanced usage, we&#8217;ve covered everything you need to get started and become proficient with &#8216;fdisk&#8217;.<\/p>\n<p>We began with the basics, learning how to install &#8216;fdisk&#8217; using different package managers and even from source code. We then explored how to use &#8216;fdisk&#8217; to manage disk partitions, from listing all partitions to creating, deleting, and modifying them.<\/p>\n<p>We&#8217;ve also delved into common issues you might encounter when using &#8216;fdisk&#8217;, such as &#8216;command not found&#8217; errors and permission issues, providing solutions to troubleshoot these challenges. We&#8217;ve even touched on how to install different versions of &#8216;fdisk&#8217;, giving you the flexibility to use the version that best suits your needs.<\/p>\n<p>Beyond &#8216;fdisk&#8217;, we&#8217;ve explored alternative methods for managing disk partitions in Linux, such as the &#8216;parted&#8217; command and the &#8216;GParted&#8217; graphical tool. Here&#8217;s a quick comparison of these tools:<\/p>\n<table>\n<thead>\n<tr>\n<th>Tool<\/th>\n<th>Pros<\/th>\n<th>Cons<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>fdisk<\/td>\n<td>Simple to use, widely supported<\/td>\n<td>Limited functionality compared to alternatives<\/td>\n<\/tr>\n<tr>\n<td>parted<\/td>\n<td>Supports multiple partition table formats, provides detailed output<\/td>\n<td>Command-line only, can be complex for beginners<\/td>\n<\/tr>\n<tr>\n<td>GParted<\/td>\n<td>Graphical interface, user-friendly<\/td>\n<td>Requires a desktop environment, not suitable for servers<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re just starting out with &#8216;fdisk&#8217; or you&#8217;re looking to level up your disk partitioning skills, we hope this guide has given you a deeper understanding of &#8216;fdisk&#8217; and its capabilities.<\/p>\n<p>With its balance of simplicity, flexibility, and power, &#8216;fdisk&#8217; is a crucial tool for managing disk partitions in Linux. Now you&#8217;re well equipped to handle any disk partitioning task that comes your way. Happy partitioning!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you struggling with managing disk partitions in Linux? You&#8217;re not alone. Many Linux users, especially beginners, find this task a bit daunting. However, the &#8216;fdisk&#8217; command in Linux is a powerful tool that can help you design and manage disk partitions with ease, much like a skilled architect. Additionally, the &#8216;fdisk&#8217; command is readily [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":14805,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6597","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\/6597","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=6597"}],"version-history":[{"count":6,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6597\/revisions"}],"predecessor-version":[{"id":14712,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6597\/revisions\/14712"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/14805"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6597"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6597"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6597"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}