{"id":733,"date":"2014-07-14T16:59:41","date_gmt":"2014-07-14T16:59:41","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=733"},"modified":"2021-01-30T07:54:31","modified_gmt":"2021-01-30T07:54:31","slug":"installing-a-new-drive-larger-than-2tb-in-cpanel-server","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/","title":{"rendered":"Installing A new drive (larger than 2TB) in cPanel Server"},"content":{"rendered":"<p>Installing or Mounting a new drive to a cpanel server is some thing that is not possible from within WHM interface right now. <strong>So if you are not familiar with SSH and it is your first time\u00a0Do not do it\u00a0on production server<\/strong>.<!--more--><\/p>\n<p>The server where i am adding this 3TB SATA drive does have CENTOS 6.5 x86_64 standard with WHM 11.44.0 installed on 120GB SSD.<\/p>\n<p>A good idea to have a <strong>full remote back.\u00a0<\/strong>This is some thing i have learnt hard-way in early years with linux. Here i am assuming that you have the harddrive in place in your server (my data center did it in my case) and you have root access.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">df -h<\/pre>\n<\/div>\n<p>the output is some thing like this at my server<\/p>\n<div class=\"output-sh\">\n<pre class=\"toolbar-overlay:false toolbar-hide:false lang:default highlight:0 decode:true \">Filesystem Size Used Avail Use% Mounted on\r\n\/dev\/sda3 102G 12G 85G 13% \/\r\ntmpfs 7.8G 0 7.8G 0% \/dev\/shm\r\n\/dev\/sda2 504M 59M 420M 13% \/boot<\/pre>\n<\/div>\n<p>This shows only one drive sda (two partitions sda2 and sda3). Now do a fdisk<\/p>\n<div class=\"command-sh\">\n<pre>fdisk -l<\/pre>\n<\/div>\n<p>The output will likely be some thing like this.<\/p>\n<div class=\"output-sh\">\n<pre>Disk \/dev\/sdc: 3000.6 GB, 3000592982016 bytes\r\n255 heads, 63 sectors\/track, 364801 cylinders\r\nUnits = cylinders of 16065 * 512 = 8225280 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\r\nDisk identifier: 0x00000000 \r\n\r\nDisk \/dev\/sda: 120.0 GB, 120034123776 bytes\r\n255 heads, 63 sectors\/track, 14593 cylinders\r\nUnits = cylinders of 16065 * 512 = 8225280 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\r\nDisk identifier: 0x000eeac1\r\n\r\nDevice Boot Start End Blocks Id System\r\n\/dev\/sda1 1 1045 8388608+ 82 Linux swap \/ Solaris\r\n\/dev\/sda2 1045 1110 524288+ 83 Linux\r\n\/dev\/sda3 1110 14594 108303832+ 83 Linux\r\nDisk \/dev\/sdb: 3000.6 GB, 3000592982016 bytes\r\n255 heads, 63 sectors\/track, 364801 cylinders\r\nUnits = cylinders of 16065 * 512 = 8225280 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\r\nDisk identifier: 0x00000000\r\n<\/pre>\n<\/div>\n<p>For a shorter version with no detail, you can use<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">fdisk -l | grep '^Disk'<\/pre>\n<\/div>\n<p>the short outpout<\/p>\n<div class=\"output-sh\">\n<pre class=\"lang:default decode:true \">Disk \/dev\/sdc: 3000.6 GB, 3000592982016 bytes\r\nDisk identifier: 0x00000000\r\nDisk \/dev\/sda: 120.0 GB, 120034123776 bytes\r\nDisk identifier: 0x000eeac1\r\nDisk \/dev\/sdb: 3000.6 GB, 3000592982016 bytes\r\nDisk identifier: 0x00000000<\/pre>\n<\/div>\n<p>As we can see the ssd, sda 120 GB, and two 3000 GB drives sdb and sdc. For this post, i will format sdb. As you noticed in longer version, the sdb and sdc have no partitions. This is how you know which drive is existing and have already partitions on it.<\/p>\n<p>To format and mount a new drive the first step is to create paritions. Again we use fdisk like we always do<\/p>\n<p>oops, here is the output. <strong>fdisk refused to partition drives is larger than 2TB and it recommends parted.<\/strong><\/p>\n<div class=\"output-sh\">\n<pre class=\"lang:default decode:true\">Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel\r\nBuilding a new DOS disklabel with disk identifier 0x42c17c82.\r\nChanges will remain in memory only, until you decide to write them.\r\nAfter that, of course, the previous content won't be recoverable.\r\n\r\nWarning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)\r\n\r\nWARNING: The size of this disk is 3.0 TB (3000592982016 bytes).\r\nDOS partition table format can not be used on drives for volumes\r\nlarger than (2199023255040 bytes) for 512-byte sectors. Use parted(1) and GUID\r\npartition table format (GPT).\r\n\r\n\r\nWARNING: DOS-compatible mode is deprecated. It's strongly recommended to\r\nswitch off the mode (command 'c') and change display units to\r\nsectors (command 'u').<\/pre>\n<\/div>\n<p>lets use parted<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">parted \/dev\/sdb<\/pre>\n<\/div>\n<p>oh no,<\/p>\n<div class=\"error-sh\">\n<pre>-bash: parted: command not found<\/pre>\n<\/div>\n<p>lets install parted first.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">yum -y install parted<\/pre>\n<\/div>\n<p>If in the end of output you find some thing like this, parted is installed successfully then.<\/p>\n<div class=\"output-sh\">\n<pre class=\"lang:default decode:true \">Installed:\r\nparted.x86_64 0:2.1-21.el6\r\n\r\nComplete!<\/pre>\n<\/div>\n<p>Once again run,<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">parted \/dev\/sdb<\/pre>\n<\/div>\n<p>out put<\/p>\n<div class=\"output-sh\">\n<pre class=\"lang:default decode:true \">GNU Parted 2.1\r\nUsing \/dev\/sdb\r\nWelcome to GNU Parted! Type 'help' to view a list of commands.<\/pre>\n<\/div>\n<p>on parted prompt, make a new partition table, called GPT dislabel<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">(parted) mklabel gpt<\/pre>\n<\/div>\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<p>Now, use the mkfs.ext4 command to format the partition,<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">mkfs.ext4 \/dev\/sdb1<\/pre>\n<\/div>\n<p>output<\/p>\n<div class=\"output-sh\">\n<pre class=\"lang:default decode:true \">mke2fs 1.41.12 (17-May-2010)\r\nFilesystem label=\r\nOS type: Linux\r\nBlock size=4096 (log=2)\r\nFragment size=4096 (log=2)\r\nStride=0 blocks, Stripe width=0 blocks\r\n183107584 inodes, 732421632 blocks\r\n36621081 blocks (5.00%) reserved for the super user\r\nFirst data block=0\r\nMaximum filesystem blocks=4294967296\r\n22352 block groups\r\n32768 blocks per group, 32768 fragments per group\r\n8192 inodes per group\r\nSuperblock backups stored on blocks:\r\n32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,\r\n4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,\r\n102400000, 214990848, 512000000, 550731776, 644972544\r\n\r\nWriting inode tables: done\r\nCreating journal (32768 blocks): done\r\nWriting superblocks and filesystem accounting information: done\r\n\r\nThis filesystem will be automatically checked every 28 mounts or\r\n180 days, whichever comes first. Use tune2fs -c or -i to override.<\/pre>\n<\/div>\n<p>I want to mount this drive as data1,<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default highlight:0 decode:true \">root@server4 [~]# cd \/\r\nroot@server4 [\/]# mkdir data1\r\nroot@server4 [\/]# mount \/dev\/sdb1 \/data1<\/pre>\n<\/div>\n<p>Lets do a df -h and see what have changed since we started the post.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default highlight:0 decode:true \">root@server4 [\/]# df -lh\r\nFilesystem Size Used Avail Use% Mounted on\r\n\/dev\/sda3 102G 12G 85G 13% \/\r\ntmpfs 7.8G 0 7.8G 0% \/dev\/shm\r\n\/dev\/sda2 504M 59M 420M 13% \/boot\r\n\/dev\/sdb1 2.7T 201M 2.6T 1% \/data1<\/pre>\n<\/div>\n<p>This is how it looks in cPanel<a href=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png\"><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone size-full wp-image-738\" src=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png\" alt=\"install-new-drive-cpanel\" width=\"704\" height=\"340\" srcset=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png 704w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel-300x145.png 300w\" sizes=\"(max-width: 704px) 100vw, 704px\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Installing or Mounting a new drive to a cpanel server is some thing that is not possible from within WHM interface right now. So if you are not familiar with SSH and it is your first time\u00a0Do not do it\u00a0on production server. [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,14],"tags":[],"class_list":["post-733","post","type-post","status-publish","format-standard","hentry","category-cpanel","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Installing A new drive (larger than 2TB) in cPanel Server - 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\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Installing A new drive (larger than 2TB) in cPanel Server - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"Installing or Mounting a new drive to a cpanel server is some thing that is not possible from within WHM interface right now. So if you are not familiar with SSH and it is your first time\u00a0Do not do it\u00a0on production server. [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Farooq Omer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/\"},\"author\":{\"name\":\"Farooq Omer\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"headline\":\"Installing A new drive (larger than 2TB) in cPanel Server\",\"datePublished\":\"2014-07-14T16:59:41+00:00\",\"dateModified\":\"2021-01-30T07:54:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/\"},\"wordCount\":389,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png\",\"articleSection\":[\"Cpanel\",\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/\",\"name\":\"Installing A new drive (larger than 2TB) in cPanel Server - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png\",\"datePublished\":\"2014-07-14T16:59:41+00:00\",\"dateModified\":\"2021-01-30T07:54:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png\",\"width\":704,\"height\":340},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing A new drive (larger than 2TB) in cPanel Server\"}]},{\"@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\/\"},\"url\":\"https:\/\/cpanelplesk.com\/wp62\/author\/fokado\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing A new drive (larger than 2TB) in cPanel Server - 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\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/","twitter_card":"summary_large_image","twitter_title":"Installing A new drive (larger than 2TB) in cPanel Server - cPanel Plesk","twitter_description":"Installing or Mounting a new drive to a cpanel server is some thing that is not possible from within WHM interface right now. So if you are not familiar with SSH and it is your first time\u00a0Do not do it\u00a0on production server. [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png","twitter_misc":{"Written by":"Farooq Omer","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/"},"author":{"name":"Farooq Omer","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"headline":"Installing A new drive (larger than 2TB) in cPanel Server","datePublished":"2014-07-14T16:59:41+00:00","dateModified":"2021-01-30T07:54:31+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/"},"wordCount":389,"commentCount":0,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png","articleSection":["Cpanel","Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/","url":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/","name":"Installing A new drive (larger than 2TB) in cPanel Server - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png","datePublished":"2014-07-14T16:59:41+00:00","dateModified":"2021-01-30T07:54:31+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2014\/07\/install-new-drive-cpanel.png","width":704,"height":340},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/installing-a-new-drive-larger-than-2tb-in-cpanel-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"Installing A new drive (larger than 2TB) in cPanel Server"}]},{"@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\/"},"url":"https:\/\/cpanelplesk.com\/wp62\/author\/fokado\/"}]}},"_links":{"self":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/733","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/comments?post=733"}],"version-history":[{"count":0,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/733\/revisions"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=733"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=733"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=733"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}