{"id":9683,"date":"2023-11-21T08:01:19","date_gmt":"2023-11-21T08:01:19","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=9683"},"modified":"2023-12-25T09:18:32","modified_gmt":"2023-12-25T09:18:32","slug":"how-to-configure-mount-additional-drive","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/","title":{"rendered":"How to configure\/mount additional Drive in Linux"},"content":{"rendered":"<p>Mounting additional hard disks in Linux involves the process of making the operating system recognize and utilize the newly added storage devices. This can include internal hard drives, external drives, or other storage media. Mounting additional hard disks in Linux contributes to improved storage management, performance optimization, data organization, redundancy, and scalability, providing a more robust and flexible system environment.<\/p>\n<p>To configure and mount an additional drive on a Linux system, follow these steps:<\/p>\n<ol>\n<li><strong>Identify the Drive<\/strong>:\n<ul>\n<li>Connect the additional drive physically to your server or system.<\/li>\n<\/ul>\n<\/li>\n<li><strong>List Drives<\/strong>:\n<ul>\n<li>Open a terminal or SSH into your system and run the command <code>lsblk<\/code> or <code>fdisk -l<\/code> to list available drives and their partitions. Identify<br \/>\nthe new drive (e.g., <code>\/dev\/sdb<\/code>).command<\/p>\n<pre><code>lsblk\r\n<\/code><\/pre>\n<p>output<\/p>\n<pre>NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\r\nloop0 7:0 0 1.6G 0 loop \/var\/tmp\r\nsda 8:0 0 38.2G 0 disk\r\n\u251c\u2500sda1 8:1 0 38.1G 0 part \/\r\n\u251c\u2500sda14 8:14 0 64M 0 part \/boot\/efi\r\n\u2514\u2500sda15 8:15 0 1M 0 part\r\nsr0 11:0 1 1024M 0 rom\r\n<\/pre>\n<\/li>\n<\/ul>\n<\/li>\n<li><strong>Partition the Drive<\/strong> (if not already done):\n<ul>\n<li>let&#8217;s use parted\n<pre>parted \/dev\/sdb<\/pre>\n<p>oh no,<\/p>\n<pre>-bash: parted: command not found\r\n\r\n<\/pre>\n<p>let&#8217;s install parted first.<\/p>\n<pre>yum -y install parted\r\n\r\n<\/pre>\n<p>If at the end of the output, you find something like this, parted is installed successfully then.<\/p>\n<div class=\"output-sh\">\n<pre>Installed:\r\nparted.x86_64 0:2.1-21.el6\r\n\r\nComplete!<\/pre>\n<\/div>\n<p>Once again run,<\/p>\n<pre>parted \/dev\/sdb<\/pre>\n<p>out put<\/p>\n<pre>GNU Parted 2.1\r\nUsing \/dev\/sdb\r\nWelcome to GNU Parted! Type 'help' to view a list of commands.<\/pre>\n<p>on parted prompt, make a new partition table, called GPT dislabel<\/p>\n<pre>(parted) mklabel gpt<\/pre>\n<p>&nbsp;<\/p>\n<div class=\"notice-error-sh\">\n<pre class=\"lang:default decode:true \">Warning: The existing disk label on \/dev\/sdb will be destroyed and all data on this disk will be lost. Do you want to continue?\r\nYes\/No? yes\r\n(parted)<\/pre>\n<\/div>\n<p>Next step is to set unit. Enter the unit as GB in following command. If you prefer TB, you may use that.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">\u00a0(parted) unit GB<\/pre>\n<\/div>\n<p>to create a 3000 GB partition,<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">(parted) mkpart primary 0.00GB 3000.00GB<\/pre>\n<\/div>\n<p>To see how partition is created,<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">(parted) print<\/pre>\n<\/div>\n<p>output<\/p>\n<div class=\"output-sh\">\n<pre class=\"lang:default decode:true\">(parted) print\r\nModel: ATA ST33000650NS (scsi)\r\nDisk \/dev\/sdb: 3001GB\r\nSector size (logical\/physical): 512B\/512B\r\nPartition Table: gpt\r\n\r\nNumber Start End Size File system Name Flags\r\n1 0.00GB 3000GB 3000GB primary<\/pre>\n<\/div>\n<p>Thats all, we are done with parted, now quit<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">(parted) quit<\/pre>\n<\/div>\n<p>output<\/p>\n<div class=\"output-sh\">\n<pre class=\"lang:default decode:true \">Information: You may need to update \/etc\/fstab.<\/pre>\n<\/div>\n<\/li>\n<\/ul>\n<\/li>\n<li><strong>Format the Partition<\/strong>:\n<ul>\n<li>Use a file system tool like <code>mkfs<\/code> to format the partition. For example, for ext4: <code>sudo mkfs.ext4 \/dev\/sdb1<\/code>.<br \/>\nWARNING<br \/>\nwarning by formatting the drive your data will be deleted<\/li>\n<\/ul>\n<\/li>\n<li><strong>Create a Mount Point<\/strong>:\n<ul>\n<li>Choose a directory where you want to mount the drive. For example, create a directory named <code>\/mnt\/mydrive<\/code>: <code>sudo mkdir \/mnt\/mydrive<\/code>.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Mount <code>\/etc\/fstab<\/code><\/strong>:\n<ul>\n<li>Open the <code>\/etc\/fstab<\/code> file in a text editor (e.g., <code>sudo nano \/etc\/fstab<\/code>) and add a line to automatically mount the drive at boot. Add a line like this:\n<div>\n<div><code>\/dev\/sdb1   \/mnt\/mydrive   ext4   defaults   0   0<br \/>\n<\/code><\/div>\n<\/div>\n<ul>\n<li><code>\/dev\/sdb1<\/code>: The path to the partition you want to mount.<\/li>\n<li><code>\/mnt\/mydrive<\/code>: The directory where you want to mount the drive.<\/li>\n<li><code>ext4<\/code>: The file system type.<\/li>\n<li><code>defaults<\/code>: Mount options (you can customize this as needed).<\/li>\n<li><code>0 0<\/code>: These are dump and fsck options, which are typically set to 0.<br \/>\nWARNING<br \/>\nPlease update with caution, as any incorrect changes could result in the system becoming unreachable.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li><strong>Mount the Drive<\/strong>:\n<ul>\n<li>Either reboot your system or manually mount the drive using <code>sudo mount -a<\/code>. This will mount all entries listed in <code>\/etc\/fstab<\/code>.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Verify<\/strong>:\n<ul>\n<li>Check if the drive is mounted correctly by running <code>df -h<\/code> or <code>mount<\/code>.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p>Now, the additional drive should be configured and mounted on your system. Any data written to <code>\/mnt\/mydrive<\/code> will be stored on the new drive. Remember to adjust paths and names based on your specific setup.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mounting additional hard disks in Linux involves the process of making the operating system recognize and utilize the newly added storage devices. This can include internal hard drives, external drives, or other storage media. Mounting additional hard disks in Linux contributes to improved storage management, performance optimization, data organization, redundancy, and scalability, providing a more [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":24,"featured_media":9724,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-9683","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cpanel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to configure\/mount additional Drive in Linux - cPanel Plesk<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to configure\/mount additional Drive in Linux - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"Mounting additional hard disks in Linux involves the process of making the operating system recognize and utilize the newly added storage devices. This can include internal hard drives, external drives, or other storage media. Mounting additional hard disks in Linux contributes to improved storage management, performance optimization, data organization, redundancy, and scalability, providing a more [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ali Munir\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/\"},\"author\":{\"name\":\"Ali Munir\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/1e61af015618daffbcedb81f40ebf69f\"},\"headline\":\"How to configure\/mount additional Drive in Linux\",\"datePublished\":\"2023-11-21T08:01:19+00:00\",\"dateModified\":\"2023-12-25T09:18:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/\"},\"wordCount\":417,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png\",\"articleSection\":[\"Cpanel\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/\",\"name\":\"How to configure\/mount additional Drive in Linux - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png\",\"datePublished\":\"2023-11-21T08:01:19+00:00\",\"dateModified\":\"2023-12-25T09:18:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png\",\"width\":2240,\"height\":1260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to configure\/mount additional Drive in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/\",\"name\":\"cPanel Plesk\",\"description\":\"Blog on famous hosting control panels\",\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\",\"name\":\"Farooq Omer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"width\":300,\"height\":44,\"caption\":\"Farooq Omer\"},\"logo\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/1e61af015618daffbcedb81f40ebf69f\",\"name\":\"Ali Munir\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/68fb4a03160a1b0486bd5d9f2c67d83b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/68fb4a03160a1b0486bd5d9f2c67d83b?s=96&d=mm&r=g\",\"caption\":\"Ali Munir\"},\"sameAs\":[\"https:\/\/cpanelplesk.com\/wp62\"],\"url\":\"https:\/\/cpanelplesk.com\/wp62\/author\/ali\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to configure\/mount additional Drive in Linux - cPanel Plesk","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/","twitter_card":"summary_large_image","twitter_title":"How to configure\/mount additional Drive in Linux - cPanel Plesk","twitter_description":"Mounting additional hard disks in Linux involves the process of making the operating system recognize and utilize the newly added storage devices. This can include internal hard drives, external drives, or other storage media. Mounting additional hard disks in Linux contributes to improved storage management, performance optimization, data organization, redundancy, and scalability, providing a more [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png","twitter_misc":{"Written by":"Ali Munir","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/"},"author":{"name":"Ali Munir","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/1e61af015618daffbcedb81f40ebf69f"},"headline":"How to configure\/mount additional Drive in Linux","datePublished":"2023-11-21T08:01:19+00:00","dateModified":"2023-12-25T09:18:32+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/"},"wordCount":417,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png","articleSection":["Cpanel"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/","url":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/","name":"How to configure\/mount additional Drive in Linux - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png","datePublished":"2023-11-21T08:01:19+00:00","dateModified":"2023-12-25T09:18:32+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2023\/11\/1.png","width":2240,"height":1260},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/how-to-configure-mount-additional-drive\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"How to configure\/mount additional Drive in Linux"}]},{"@type":"WebSite","@id":"https:\/\/cpanelplesk.com\/wp62\/#website","url":"https:\/\/cpanelplesk.com\/wp62\/","name":"cPanel Plesk","description":"Blog on famous hosting control panels","publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13","name":"Farooq Omer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","width":300,"height":44,"caption":"Farooq Omer"},"logo":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/"}},{"@type":"Person","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/1e61af015618daffbcedb81f40ebf69f","name":"Ali Munir","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/68fb4a03160a1b0486bd5d9f2c67d83b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/68fb4a03160a1b0486bd5d9f2c67d83b?s=96&d=mm&r=g","caption":"Ali Munir"},"sameAs":["https:\/\/cpanelplesk.com\/wp62"],"url":"https:\/\/cpanelplesk.com\/wp62\/author\/ali\/"}]}},"_links":{"self":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/9683","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/comments?post=9683"}],"version-history":[{"count":11,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/9683\/revisions"}],"predecessor-version":[{"id":9732,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/9683\/revisions\/9732"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media\/9724"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=9683"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=9683"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=9683"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}