{"id":6685,"date":"2024-01-14T14:37:36","date_gmt":"2024-01-14T21:37:36","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6685"},"modified":"2024-01-14T14:38:12","modified_gmt":"2024-01-14T21:38:12","slug":"install-scp-command-linux","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/install-scp-command-linux\/","title":{"rendered":"Mastering &#8216;SCP&#8217; | Install and Use &#8216;SCP&#8217; 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\/Linux-terminal-displaying-the-setup-of-scp-a-command-for-secure-file-copying-300x300.jpg\" alt=\"Linux terminal displaying the setup of scp a command for secure file copying\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you looking to install the <code>scp<\/code> command on your Linux system but aren&#8217;t sure where to start? Many Linux users might find the task daunting, yet, <code>scp<\/code>, a powerful tool for secure file transfer between Linux systems, is a utility worth mastering. Installing <code>scp<\/code> will make it easy to transfer files securely between your Linux systems. <code>SCP<\/code> is also readily available on most package management systems, making it a straightforward process once you know-how.<\/p>\n<p><strong>In this tutorial, we will guide you on how to install the <code>scp<\/code> command on your Linux system.<\/strong> We will show you methods for both APT and YUM-based distributions, delve into compiling <code>scp<\/code> from source, installing a specific version, and finally, how to use the <code>scp<\/code> command and ensure it&#8217;s installed correctly.<\/p>\n<p>So, let&#8217;s dive in and begin installing <code>scp<\/code> on your Linux system!<\/p>\n<h2>TL;DR: How Do I Install and Use the &#8216;scp&#8217; Command in Linux?<\/h2>\n<blockquote><p>\n  In most Linux distributions, the <code>'scp'<\/code> command comes pre-installed. You can verify this with, <code>which scp<\/code>. However, if it isn&#8217;t installed to your system, you can add it with <code>sudo yum install openssh-clients<\/code> or <code>sudo apt-get install openssh-client<\/code>. To use it, you can run the command <code>scp source_file user@destination_host:destination_folder<\/code>.\n<\/p><\/blockquote>\n<pre><code class=\"language-bash line-numbers\"># Example of using scp command\nscp myfile.txt user@192.168.0.2:\/home\/user\/\n\n# Output:\n# myfile.txt 100% 0     0.0KB\/s   00:00\n<\/code><\/pre>\n<p>This is a basic way to use the &#8216;scp&#8217; command in Linux, but there&#8217;s much more to learn about installing and using &#8216;scp&#8217;. Continue reading for more detailed information and advanced usage scenarios.<\/p>\n<h2>Understanding and Installing the &#8216;scp&#8217; Command<\/h2>\n<p>The <code>scp<\/code> command, short for &#8216;secure copy&#8217;, is a Linux command used for securely transferring files and directories between two locations. It uses the SSH (Secure Shell) protocol for data transfer and provides the same authentication and security as SSH.<\/p>\n<p>Whether you&#8217;re a system administrator needing to move sensitive data between servers or a casual Linux user wanting to transfer files between your local machine and a remote server, <code>scp<\/code> can be an invaluable tool. It&#8217;s simple, secure, and widely supported across different Linux distributions.<\/p>\n<h3>Installing &#8216;scp&#8217; with apt<\/h3>\n<p>On Debian-based distributions like Ubuntu, you can install <code>scp<\/code> using the <code>apt<\/code> package manager. The <code>scp<\/code> command is part of the &#8216;openssh-client&#8217; package, which is pre-installed on most systems. However, if for some reason it&#8217;s not installed, you can install it using the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get update\nsudo apt-get install openssh-client\n\n# Output:\n# Reading package lists... Done\n# Building dependency tree\n# Reading state information... Done\n# openssh-client is already the newest version (1:7.6p1-4ubuntu0.3).\n# 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.\n<\/code><\/pre>\n<p>This command first updates your package lists and then installs the &#8216;openssh-client&#8217; package, which contains the <code>scp<\/code> command.<\/p>\n<h3>Installing &#8216;scp&#8217; with yum<\/h3>\n<p>If you&#8217;re using a Red Hat-based distribution like CentOS, you can use the <code>yum<\/code> package manager to install <code>scp<\/code>. Similar to <code>apt<\/code>, <code>scp<\/code> is part of the &#8216;openssh-clients&#8217; package and can be installed with the following command:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum update\nsudo yum install openssh-clients\n\n# Output:\n# Loaded plugins: fastestmirror, ovl\n# Loading mirror speeds from cached hostfile\n# Package openssh-clients-7.4p1-21.el7.x86_64 already installed and latest version\n# Nothing to do\n<\/code><\/pre>\n<p>This command updates your package repository and installs the &#8216;openssh-clients&#8217; package, which includes the <code>scp<\/code> command.<\/p>\n<p>With <code>scp<\/code> installed, you&#8217;re now ready to start transferring files securely between your Linux systems. In the next section, we&#8217;ll dive into more advanced installation methods of the <code>scp<\/code> command, as well as basic usage.<\/p>\n<h2>Installing &#8216;scp&#8217; from Source Code<\/h2>\n<p>While package managers like <code>apt<\/code> and <code>yum<\/code> are convenient for installing software, they may not always provide the latest version. For the most up-to-date version of <code>scp<\/code>, you can compile it from source. Here&#8217;s how you can do it:<\/p>\n<pre><code class=\"language-bash line-numbers\"># Download the source code\nwget https:\/\/openbsd.org\/openssh-portable.tar.gz\n\n# Extract the tarball\n tar xzf openssh-portable.tar.gz\n\n# Navigate into the directory\n cd openssh-portable\/\n\n# Configure the makefile\n.\/configure\n\n# Compile the source code\nmake\n\n# Install the compiled program\nsudo make install\n\n# Output:\n# 'openssh-portable' is now installed.\n<\/code><\/pre>\n<h2>Installing Different &#8216;scp&#8217; Versions<\/h2>\n<p>Different versions of <code>scp<\/code> come with their own set of features and bug fixes. Depending on your needs, you might want to install a specific version of <code>scp<\/code>.<\/p>\n<h3>Installing from Source<\/h3>\n<p>To install a specific version from source, you would download the tarball for that version instead of the latest one. For instance, to install version 7.9p1, you would replace the <code>wget<\/code> command in the previous section with the following:<\/p>\n<pre><code class=\"language-bash line-numbers\">wget https:\/\/openbsd.org\/openssh-7.9p1.tar.gz\n<\/code><\/pre>\n<h3>Using <code>apt<\/code> or <code>yum<\/code><\/h3>\n<p>To install a specific version with <code>apt<\/code> or <code>yum<\/code>, you would specify the version number when running the install command. For instance, to install version 7.9p1 with <code>apt<\/code>, you would run:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo apt-get install openssh-client=7.9p1*\n<\/code><\/pre>\n<p>And with <code>yum<\/code>, you would run:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo yum install openssh-clients-7.9p1\n<\/code><\/pre>\n<h2>Version Comparison<\/h2>\n<p>Different versions of <code>scp<\/code> come with different features and bug fixes. Here&#8217;s a brief comparison of the key features in recent 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>8.2p1<\/td>\n<td>Added support for FIDO\/U2F hardware authenticators<\/td>\n<\/tr>\n<tr>\n<td>8.1p1<\/td>\n<td>Added an experimental quantum-computing resistant key exchange method<\/td>\n<\/tr>\n<tr>\n<td>8.0p1<\/td>\n<td>Added a new &#8216;UpdateHostKeys&#8217; option for ssh and sshd<\/td>\n<\/tr>\n<tr>\n<td>7.9p1<\/td>\n<td>Added new signature algorithms<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Basic &#8216;scp&#8217; Usage and Verification<\/h2>\n<h3>Using &#8216;scp&#8217;<\/h3>\n<p>The most basic use of <code>scp<\/code> is to copy a file from your local machine to a remote server. Here&#8217;s how you can do it:<\/p>\n<pre><code class=\"language-bash line-numbers\">scp myfile.txt user@192.168.0.2:\/home\/user\/\n\n# Output:\n# myfile.txt 100% 0     0.0KB\/s   00:00\n<\/code><\/pre>\n<h3>Verifying &#8216;scp&#8217; Installation<\/h3>\n<p>To verify that <code>scp<\/code> is installed correctly, you can use the <code>which<\/code> command:<\/p>\n<pre><code class=\"language-bash line-numbers\">which scp\n\n# Output:\n# \/usr\/bin\/scp\n<\/code><\/pre>\n<p>This command will print the path to the <code>scp<\/code> executable if it&#8217;s installed, or nothing if it&#8217;s not.<\/p>\n<h2>Exploring Alternative Methods for Secure File Transfer in Linux<\/h2>\n<p>While <code>scp<\/code> is a powerful tool for secure file transfer, it&#8217;s not the only one available in Linux. There are other methods like &#8216;rsync&#8217; and &#8216;sftp&#8217; that you can also use depending on your needs.<\/p>\n<h3>The &#8216;rsync&#8217; Command<\/h3>\n<p><code>rsync<\/code>, short for &#8216;remote sync&#8217;, is a command used for synchronizing files and directories between two locations. It&#8217;s known for its efficiency, as it only transfers the changes made to files instead of transferring entire files.<\/p>\n<p>Here&#8217;s how you can use <code>rsync<\/code> to copy a directory from your local machine to a remote server:<\/p>\n<pre><code class=\"language-bash line-numbers\">rsync -avz \/local\/directory\/ user@192.168.0.2:\/remote\/directory\/\n\n# Output:\n# sending incremental file list\n# directory\/\n# directory\/file1.txt\n# directory\/file2.txt\n#\n# sent 123 bytes  received 38 bytes  322.00 bytes\/sec\n# total size is 75  speedup is 0.50\n<\/code><\/pre>\n<p>In this command, the <code>-a<\/code> option preserves the files&#8217; attributes, the <code>-v<\/code> option increases verbosity, and the <code>-z<\/code> option compresses the data during transfer.<\/p>\n<h3>The &#8216;sftp&#8217; Command<\/h3>\n<p><code>sftp<\/code>, short for &#8216;SSH File Transfer Protocol&#8217;, is another command used for secure file transfer. Unlike <code>scp<\/code>, <code>sftp<\/code> provides an interactive interface, making it easier to navigate and manipulate files on the remote server.<\/p>\n<p>Here&#8217;s how you can use <code>sftp<\/code> to connect to a remote server and list the files in a directory:<\/p>\n<pre><code class=\"language-bash line-numbers\">sftp user@192.168.0.2\nls \/remote\/directory\/\n\n# Output:\n# Connected to 192.168.0.2.\n# sftp&gt; ls \/remote\/directory\/\n# file1.txt\n# file2.txt\n<\/code><\/pre>\n<p>In this command, the <code>ls<\/code> command is run after connecting to the remote server with <code>sftp<\/code>. It lists the files in the specified directory on the remote server.<\/p>\n<h3>Comparing &#8216;scp&#8217;, &#8216;rsync&#8217;, and &#8216;sftp&#8217;<\/h3>\n<p>While all three commands can be used for secure file transfer, they each have their own advantages and disadvantages. Here&#8217;s a brief comparison:<\/p>\n<table>\n<thead>\n<tr>\n<th>Command<\/th>\n<th>Advantages<\/th>\n<th>Disadvantages<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>scp<\/td>\n<td>Simple, secure, widely supported<\/td>\n<td>Transfers entire files, no interactive interface<\/td>\n<\/tr>\n<tr>\n<td>rsync<\/td>\n<td>Efficient, preserves file attributes<\/td>\n<td>More complex command syntax<\/td>\n<\/tr>\n<tr>\n<td>sftp<\/td>\n<td>Interactive interface, easy to navigate<\/td>\n<td>Slower than scp and rsync<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Depending on your needs, you might prefer one method over the others. For simple file transfers, <code>scp<\/code> is often sufficient. For syncing large directories, <code>rsync<\/code> is usually the best choice. And for navigating and manipulating files on the remote server, <code>sftp<\/code> can be very convenient.<\/p>\n<h2>Troubleshooting Common &#8216;scp&#8217; Issues<\/h2>\n<p>While <code>scp<\/code> is a robust and reliable tool, you may occasionally encounter issues when using it. Let&#8217;s go over some common problems and their solutions.<\/p>\n<h3>Permission Denied Error<\/h3>\n<p>One of the most common issues is the &#8216;Permission denied&#8217; error. This usually happens when the user doesn&#8217;t have the necessary permissions to read the source file or write to the destination directory.<\/p>\n<pre><code class=\"language-bash line-numbers\">scp myfile.txt user@192.168.0.2:\/root\/\n\n# Output:\n# scp: \/root\/myfile.txt: Permission denied\n<\/code><\/pre>\n<p>In this example, the user doesn&#8217;t have permission to write to the <code>\/root\/<\/code> directory on the remote server. To solve this issue, you could change the destination directory to one that the user has write access to, such as <code>\/home\/user\/<\/code>.<\/p>\n<h3>No Such File or Directory Error<\/h3>\n<p>Another common issue is the &#8216;No such file or directory&#8217; error. This happens when the source file doesn&#8217;t exist or the destination directory isn&#8217;t found.<\/p>\n<pre><code class=\"language-bash line-numbers\">scp mynonexistentfile.txt user@192.168.0.2:\/home\/user\/\n\n# Output:\n# scp: mynonexistentfile.txt: No such file or directory\n<\/code><\/pre>\n<p>In this example, the file <code>mynonexistentfile.txt<\/code> doesn&#8217;t exist. To solve this issue, you should check that the source file exists and that you&#8217;ve typed its name correctly.<\/p>\n<h3>Connection Timed Out Error<\/h3>\n<p>Sometimes, you might encounter a &#8216;Connection timed out&#8217; error. This can happen due to network issues, such as a slow or unstable internet connection, or the remote server being down.<\/p>\n<pre><code class=\"language-bash line-numbers\">scp myfile.txt user@192.168.0.2:\/home\/user\/\n\n# Output:\n# ssh: connect to host 192.168.0.2 port 22: Connection timed out\n# lost connection\n<\/code><\/pre>\n<p>In this example, the <code>scp<\/code> command can&#8217;t connect to the remote server at <code>192.168.0.2<\/code>. To solve this issue, you should check your internet connection, ensure that the remote server is up and running, and that you&#8217;ve typed the correct IP address.<\/p>\n<p>Remember, troubleshooting is a key part of working with Linux commands like <code>scp<\/code>. By understanding common issues and their solutions, you&#8217;ll be better equipped to use <code>scp<\/code> effectively and efficiently.<\/p>\n<h2>Understanding Secure File Transfer in Linux<\/h2>\n<p>Linux, being a multi-user operating system, often requires the transfer of files between different systems. This could be between different user accounts on the same system, between different systems on a network, or even between a local machine and a remote server over the internet.<\/p>\n<h3>Importance of Secure File Transfer<\/h3>\n<p>File transfers can contain sensitive information. This could be confidential business data, personal information, or even data that, if altered, could disrupt system operations. Therefore, it&#8217;s crucial that this data is protected from unauthorized access and alteration during transfer. This is where secure file transfer comes in.<\/p>\n<p>Secure file transfer protocols like <code>scp<\/code> provide this security. They use encryption to protect the data during transfer, ensuring that even if the data is intercepted, it can&#8217;t be read. Additionally, they use authentication to verify the identity of the sender and receiver, preventing unauthorized access.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Example of a secure file transfer using scp\nscp -P 2222 myfile.txt user@192.168.0.2:\/home\/user\/\n\n# Output:\n# myfile.txt 100% 0     0.0KB\/s   00:00\n<\/code><\/pre>\n<p>In this example, the <code>-P<\/code> option specifies the port number for the SSH connection. This can be used when the SSH server is listening on a non-default port. The <code>scp<\/code> command then securely transfers <code>myfile.txt<\/code> from the local machine to the <code>\/home\/user\/<\/code> directory on the remote server at <code>192.168.0.2<\/code>.<\/p>\n<h3>The &#8216;scp&#8217; Command and Secure File Transfer<\/h3>\n<p>The <code>scp<\/code> command, which stands for &#8216;secure copy&#8217;, is a commonly used command in Linux for secure file transfer. <code>scp<\/code> uses the SSH (Secure Shell) protocol for data transfer, providing the same level of security and authentication as SSH.<\/p>\n<p>Whether you&#8217;re a system administrator handling sensitive data or a casual Linux user transferring personal files, understanding and using secure file transfer commands like <code>scp<\/code> is an essential skill. In the next section, we&#8217;ll explore more about the relevance of secure file transfer in system administration and security.<\/p>\n<h2>The Relevance of Secure File Transfer in System Administration and Security<\/h2>\n<p>Secure file transfer is not just a feature, but a necessity in today&#8217;s digital world. As a system administrator, the ability to securely transfer files between servers is a daily requirement. Whether you&#8217;re deploying a new application, backing up data, or simply moving files around, secure file transfer protocols like <code>scp<\/code> are indispensable.<\/p>\n<h3>Exploring Related Concepts: SSH Keys and Encryption<\/h3>\n<p>If you&#8217;re interested in secure file transfer, you might also want to explore related concepts like SSH keys and encryption. SSH keys are a pair of cryptographic keys that can be used for authentication, while encryption is the process of encoding data so that only authorized parties can access it.<\/p>\n<pre><code class=\"language-bash line-numbers\"># Generating a new SSH key pair\nssh-keygen -t rsa -b 4096 -C \"your_email@example.com\"\n\n# Output:\n# Generating public\/private rsa key pair.\n# Enter file in which to save the key (\/home\/yourusername\/.ssh\/id_rsa):\n<\/code><\/pre>\n<p>In this example, the <code>ssh-keygen<\/code> command is used to generate a new SSH key pair. The <code>-t<\/code> option specifies the type of key to create, the <code>-b<\/code> option specifies the key length, and the <code>-C<\/code> option adds a comment.<\/p>\n<p>Understanding these concepts will not only enhance your skills as a system administrator but also give you a deeper understanding of how secure file transfer works.<\/p>\n<h3>Further Resources for Mastering Secure File Transfer<\/h3>\n<p>To further your understanding of secure file transfer and related concepts, here are a few resources that might help:<\/p>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.openssh.com\/manual.html\" target=\"_blank\" rel=\"noopener\">OpenSSH Cookbook<\/a>: A comprehensive guide to OpenSSH, including <code>scp<\/code> and SSH keys.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/linux.die.net\/man\/1\/scp\" target=\"_blank\" rel=\"noopener\">Linux Command Library<\/a>: Detailed <code>scp<\/code> command usage and examples.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/gnupg.org\/gph\/en\/manual.html\" target=\"_blank\" rel=\"noopener\">The GNU Privacy Handbook<\/a>: A manual on GnuPG, a free implementation of the OpenPGP standard, which can be used for secure file encryption.<\/p>\n<\/li>\n<\/ol>\n<p>By exploring these resources and practicing secure file transfer, you can become a proficient system administrator and contribute to the security of your systems.<\/p>\n<h2>Wrapping Up: Installing the &#8216;scp&#8217; Command in Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved into the world of the &#8216;scp&#8217; command, a powerful tool for secure file transfer in Linux. We&#8217;ve covered the basics of installing and using &#8216;scp&#8217;, and we&#8217;ve also ventured into more advanced topics, such as compiling &#8216;scp&#8217; from source and installing specific versions.<\/p>\n<p>We began with the basics, explaining how to install &#8216;scp&#8217; using package managers like <code>apt<\/code> and <code>yum<\/code>. We then explored how to use &#8216;scp&#8217; for basic file transfers and how to verify its installation. We also covered more advanced topics, such as installing &#8216;scp&#8217; from source, installing specific versions, and comparing different versions.<\/p>\n<p>Along the way, we tackled common issues you might encounter when using &#8216;scp&#8217;, such as &#8216;Permission denied&#8217;, &#8216;No such file or directory&#8217;, and &#8216;Connection timed out&#8217; errors. We provided solutions for each of these issues, helping you to use &#8216;scp&#8217; effectively and efficiently.<\/p>\n<p>We also looked at alternative methods for secure file transfer in Linux, such as &#8216;rsync&#8217; and &#8216;sftp&#8217;. Here&#8217;s a quick comparison of these methods:<\/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>scp<\/td>\n<td>Simple, secure, widely supported<\/td>\n<td>No interactive interface<\/td>\n<\/tr>\n<tr>\n<td>rsync<\/td>\n<td>Efficient, preserves file attributes<\/td>\n<td>More complex command syntax<\/td>\n<\/tr>\n<tr>\n<td>sftp<\/td>\n<td>Interactive interface, easy to navigate<\/td>\n<td>Slower than scp and rsync<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Whether you&#8217;re a system administrator handling sensitive data or a casual Linux user transferring files, understanding and using secure file transfer commands like &#8216;scp&#8217; is an essential skill. With this guide, you&#8217;re now well-equipped to use &#8216;scp&#8217; and its alternatives effectively and efficiently.<\/p>\n<p>Secure file transfer is a crucial aspect of system administration and security. With the &#8216;scp&#8217; command and its alternatives, you can ensure that your data is protected during transfer. Happy file transferring!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you looking to install the scp command on your Linux system but aren&#8217;t sure where to start? Many Linux users might find the task daunting, yet, scp, a powerful tool for secure file transfer between Linux systems, is a utility worth mastering. Installing scp will make it easy to transfer files securely between your [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15761,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6685","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\/6685","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=6685"}],"version-history":[{"count":7,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6685\/revisions"}],"predecessor-version":[{"id":15723,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6685\/revisions\/15723"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/15761"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}