{"id":5854,"date":"2017-07-11T05:05:23","date_gmt":"2017-07-11T05:05:23","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=5854"},"modified":"2021-02-01T05:37:41","modified_gmt":"2021-02-01T05:37:41","slug":"resize-root-ebs-volume-aws-linux-instance","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/","title":{"rendered":"How to Resize root EBS Volume on AWS Linux Instance"},"content":{"rendered":"<p><span style=\"color: #000000;\">I have created a new CentOS Linux machine. I have selected 50GB of root volume during creation of instance but when system came online it was displaying only 8GB of disk is usable.<\/span><!--more--><\/p>\n<p><span style=\"color: #000000;\">When i tried to resize root disk using resize2fs command, I got the following message:<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>resize2fs \/dev\/xvda1<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">The filesystem is already 16775167 blocks long. Nothing to do!<\/span><\/p>\n<p><span style=\"color: #000000;\">So, By following below steps you will be able to successfully resize volume to its full size which you have selected during instance creation.<\/span><\/p>\n<h3><span style=\"color: #000000;\">Step 1. Keep Backups<\/span><\/h3>\n<p><span style=\"color: #000000;\">We strongly recommended to take full backup (AMI) of your instance before implementing any changes. You can also create a snapshot of root disk.<\/span><\/p>\n<h3><span style=\"color: #000000;\">Step 2. Check Current Partitioning<\/span><\/h3>\n<p><span style=\"color: #000000;\">Now check the disk partitions using below command. You can see that \/dev\/xvda is 53GB in size but<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>df -h<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>Filesystem Size Used Avail Use% Mounted on\r\n\/dev\/xvda1 8G 3.7G 4.2G 45% \/\r\ntmpfs 1.8G 0 1.8G 0% \/dev\/shm\r\n\/usr\/tmpDSK 485M 111M 349M 25% \/tmp\r\n\r\nfdisk -l\r\n\r\nDisk \/dev\/xvda: 53.7 GB, 53687091200 bytes\r\nDevice Boot Start End Blocks Id System\r\n\/dev\/xvda1 * 1 1045 8387584 83 Linux<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<h3><span style=\"color: #000000;\">Step 3. Increase Size of Volume<\/span><\/h3>\n<p><span style=\"color: #000000;\">Now start with the disk re partitioning using set of following commands. Be carefull while executing the commands.<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>fdisk \/dev\/xvda<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">WARNING: DOS-compatible mode is deprecated. It&#8217;s strongly recommended to<\/span><br \/>\n<span style=\"color: #000000;\"> switch off the mode (command &#8216;c&#8217;) and change display units to<\/span><br \/>\n<span style=\"color: #000000;\"> sectors (command &#8216;u&#8217;).<\/span><\/p>\n<p><span style=\"color: #000000;\">Now change the display units to sectors using u switch.<\/span><\/p>\n<p><span style=\"color: #000000;\">Command (m for help): u<\/span><br \/>\n<span style=\"color: #000000;\"> Changing display\/entry units to sectors<\/span><\/p>\n<p><span style=\"color: #000000;\">Now print the partition table to check for disk details<\/span><\/p>\n<p><span style=\"color: #000000;\">Command (m for help): p<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>Disk \/dev\/xvda: 53.7 GB, 53687091200 bytes\r\n255 heads, 63 sectors\/track, 6527 cylinders, total 104857600 sectors\r\nUnits = sectors of 1 * 512 = 512 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\r\nDisk identifier: 0x00098461\r\n\r\nDevice Boot Start End Blocks Id System\r\n\/dev\/xvda1 * 2048 16777215 8387584 83 Linux<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Now delete the first partition using following command.<\/span><\/p>\n<p><strong><span style=\"color: #000000;\">Command (m for help): d<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> Selected partition 1<\/span><\/strong><\/p>\n<p><span style=\"color: #000000;\">Now create a new partition using below commands. For the first sector enter 2048 (as shows in above command output) and for last second just press enter to select all partition.<\/span><\/p>\n<p><strong><span style=\"color: #000000;\">Command (m for help): n<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> Command action<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> e extended<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> p primary partition (1-4)<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> p<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> Partition number (1-4): 1<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> First sector (63-104857599, default 63): 2048<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> Last sector, +sectors or +size{K,M,G} (2048-104857599, default 104857599): [PRESS ENTER]<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> Using default value 104857599<\/span><\/strong><\/p>\n<p><span style=\"color: #000000;\">Print the partition table again. You will see that new partition has occupied all disk space.<\/span><\/p>\n<p><span style=\"color: #000000;\">Command (m for help): p<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>Disk \/dev\/xvda: 53.7 GB, 53687091200 bytes\r\n255 heads, 63 sectors\/track, 6527 cylinders, total 104857600 sectors\r\nUnits = sectors of 1 * 512 = 512 bytes\r\nSector size (logical\/physical): 512 bytes \/ 512 bytes\r\nI\/O size (minimum\/optimal): 512 bytes \/ 512 bytes\r\nDisk identifier: 0x00098461\r\n\r\nDevice Boot Start End Blocks Id System\r\n\/dev\/xvda1 2048 104857599 52427776 83 Linux<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Now set the bootable flag on partition 1.<\/span><\/p>\n<p><strong><span style=\"color: #000000;\">Command (m for help): a<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> Partition number (1-4): 1<\/span><\/strong><\/p>\n<p><strong><span style=\"color: #000000;\">Write disk partition permanently and exit.<\/span><\/strong><\/p>\n<p><strong><span style=\"color: #000000;\">Command (m for help): w<\/span><\/strong><br \/>\n<strong> <span style=\"color: #000000;\"> The partition table has been altered!<\/span><\/strong><\/p>\n<p><strong><span style=\"color: #000000;\">Calling ioctl() to re-read partition table.<\/span><\/strong><\/p>\n<p><span style=\"color: #000000;\"><strong>WARNING:<\/strong> Re-reading the partition table failed with error 16: Device or resource busy.<\/span><br \/>\n<span style=\"color: #000000;\"> The kernel still uses the old table. The new table will be used at<\/span><br \/>\n<span style=\"color: #000000;\"> the next reboot or after you run partprobe(8) or kpartx(8)<\/span><br \/>\n<span style=\"color: #000000;\"> Syncing disks.<\/span><\/p>\n<p><span style=\"color: #000000;\">Now reboot your system after making all above changes.<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>reboot<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Now let&#8217;s resize file system using resize2fs command. Remember that you are resizing filesystem not formatting.<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>resize2fs \/dev\/xvda1<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>resize2fs 1.41.12 (17-May-2010)\r\nFilesystem at \/dev\/xvda1 is mounted on \/; on-line resizing required\r\nold desc_blocks = 1, new_desc_blocks = 4\r\nPerforming an on-line resize of \/dev\/xvda1 to 13106944 (4k) blocks.\r\nThe filesystem on \/dev\/xvda1 is now 13106944 blocks long.<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<h3><span style=\"color: #000000;\">Step 4. Verify Upgraded Disk<\/span><\/h3>\n<p><span style=\"color: #000000;\">At this point your root volume has been resized successfully. Just verify your disk has been resizes properly<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>df -h\r\n\r\nFilesystem Size Used Avail Use% Mounted on\r\n\/dev\/xvda1 50G 6.7G 40G 15% \/\r\ntmpfs 1.8G 0 1.8G 0% \/dev\/shm\r\n\/usr\/tmpDSK 485M 111M 349M 25% \/tmp<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>I have created a new CentOS Linux machine. I have selected 50GB of root volume during creation of instance but when system came online it was displaying only 8GB of disk is usable. [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":2,"featured_media":5857,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-5854","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Resize root EBS Volume on AWS Linux Instance - 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\/resize-root-ebs-volume-aws-linux-instance\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Resize root EBS Volume on AWS Linux Instance - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"I have created a new CentOS Linux machine. I have selected 50GB of root volume during creation of instance but when system came online it was displaying only 8GB of disk is usable. [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Seemab Saleem\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/\"},\"author\":{\"name\":\"Seemab Saleem\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\"},\"headline\":\"How to Resize root EBS Volume on AWS Linux Instance\",\"datePublished\":\"2017-07-11T05:05:23+00:00\",\"dateModified\":\"2021-02-01T05:37:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/\"},\"wordCount\":452,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/\",\"name\":\"How to Resize root EBS Volume on AWS Linux Instance - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg\",\"datePublished\":\"2017-07-11T05:05:23+00:00\",\"dateModified\":\"2021-02-01T05:37:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg\",\"width\":236,\"height\":136},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Resize root EBS Volume on AWS Linux Instance\"}]},{\"@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\/73d573cc7eaaf6625cf0dbd72191a648\",\"name\":\"Seemab Saleem\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"caption\":\"Seemab Saleem\"},\"description\":\"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!\",\"sameAs\":[\"https:\/\/cpanelplesk.com\/wp62\"],\"url\":\"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Resize root EBS Volume on AWS Linux Instance - 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\/resize-root-ebs-volume-aws-linux-instance\/","twitter_card":"summary_large_image","twitter_title":"How to Resize root EBS Volume on AWS Linux Instance - cPanel Plesk","twitter_description":"I have created a new CentOS Linux machine. I have selected 50GB of root volume during creation of instance but when system came online it was displaying only 8GB of disk is usable. [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg","twitter_misc":{"Written by":"Seemab Saleem","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/"},"author":{"name":"Seemab Saleem","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648"},"headline":"How to Resize root EBS Volume on AWS Linux Instance","datePublished":"2017-07-11T05:05:23+00:00","dateModified":"2021-02-01T05:37:41+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/"},"wordCount":452,"commentCount":0,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg","articleSection":["Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/","url":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/","name":"How to Resize root EBS Volume on AWS Linux Instance - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg","datePublished":"2017-07-11T05:05:23+00:00","dateModified":"2021-02-01T05:37:41+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2017\/07\/How-to-Resize-root-EBS-Volume-on-AWS-Linux-Instance.jpg","width":236,"height":136},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/resize-root-ebs-volume-aws-linux-instance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"How to Resize root EBS Volume on AWS Linux Instance"}]},{"@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\/73d573cc7eaaf6625cf0dbd72191a648","name":"Seemab Saleem","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","caption":"Seemab Saleem"},"description":"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!","sameAs":["https:\/\/cpanelplesk.com\/wp62"],"url":"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/"}]}},"_links":{"self":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/5854","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/comments?post=5854"}],"version-history":[{"count":0,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/5854\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media\/5857"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=5854"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=5854"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=5854"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}