{"id":105,"date":"2011-12-23T04:46:00","date_gmt":"2011-12-23T04:46:00","guid":{"rendered":"http:\/\/pheonixsolutions.com\/?p=105"},"modified":"2011-12-23T04:46:00","modified_gmt":"2011-12-23T04:46:00","slug":"partition-a-new-drive-in-a-servervps","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/","title":{"rendered":"Partition a new drive in a server\/VPS"},"content":{"rendered":"<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br \/>How to partition a disk, set its file type &#038; then mount it<br \/>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<\/p>\n<p>1) To know all the disks attached to VPS\/Server type<\/p>\n<p># fdisk -l<\/p>\n<p>It will show you all the disk along with the unpartitioned disk. Let we attached a new disk &#8220;\/dev\/xvdb&#8221; to server. It will show the following message on &#8220;fdisk -l&#8221;:<\/p>\n<p>&#8212;-<br \/>\/dev\/xvdb has no partition table.<br \/>&#8212;-<\/p>\n<p>2) Execute the following:<\/p>\n<p># parted \/dev\/xvdb<\/p>\n<p>3) Type &#8220;mklabel&#8221;<br \/>4) It will ask &#8220;New disk label type?&#8221; type &#8220;msdos&#8221;<br \/>5) Type &#8220;print free&#8221; to know the partition details.<br \/>6) Type &#8220;mkpart primary 0.00kB 53.7GB&#8221;    (let the total size is 53.7GB)<br \/>7) type &#8220;quit&#8221;<\/p>\n<p>Please see the following snippet for reference:<\/p>\n<p>=====================<br \/>root@server [~] parted \/dev\/xvdb<br \/>GNU Parted 1.8.1<br \/>Using \/dev\/xvdb<br \/>Welcome to GNU Parted! Type &#8216;help&#8217; to view a list of commands.<br \/>(parted) print free                                                      <br \/>Error: Unable to open \/dev\/xvdb &#8211; unrecognised disk label.               <br \/>(parted) mklabel                                                         <br \/>New disk label type? msdos                                               <br \/>(parted) print free                                                      <\/p>\n<p>Model: Xen Virtual Block Device (xvd)<br \/>Disk \/dev\/xvdb: 53.7GB<br \/>Sector size (logical\/physical): 512B\/512B<br \/>Partition Table: msdos<\/p>\n<p>Number  Start   End     Size    Type  File system  Flags<br \/>        0.00kB  53.7GB  53.7GB        Free Space       <\/p>\n<p>(parted) mkpart primary 0.00kB 53.7GB                                    <br \/>(parted) print free                                                      <\/p>\n<p>Model: Xen Virtual Block Device (xvd)<br \/>Disk \/dev\/xvdb: 53.7GB<br \/>Sector size (logical\/physical): 512B\/512B<br \/>Partition Table: msdos<\/p>\n<p>Number  Start   End     Size    Type     File system  Flags<br \/> 1      0.51kB  53.7GB  53.7GB  primary                   <\/p>\n<p>(parted) quit                                                            <br \/>Information: Don&#8217;t forget to update \/etc\/fstab, if necessary.            <\/p>\n<p>root@server [~]#<br \/>=====================<\/p>\n<p>8) Execute the following command:<\/p>\n<p># fdisk -l<\/p>\n<p>This time it will show the new disk too. Now we have to set the file system type on the disk and mount it.<\/p>\n<p>====================<br \/>root@server [~]# fdisk -l<\/p>\n<p>Disk \/dev\/xvda: 64.4 GB, 64424509440 bytes<br \/>255 heads, 63 sectors\/track, 7832 cylinders<br \/>Units = cylinders of 16065 * 512 = 8225280 bytes<\/p>\n<p>    Device Boot      Start         End      Blocks   Id  System<br \/>\/dev\/xvda1   *           1        7832    62910508+  83  Linux<\/p>\n<p>Disk \/dev\/xvdb: 53.6 GB, 53687091200 bytes<br \/>255 heads, 63 sectors\/track, 6527 cylinders<br \/>Units = cylinders of 16065 * 512 = 8225280 bytes<\/p>\n<p>    Device Boot      Start         End      Blocks   Id  System<br \/>\/dev\/xvdb1               1        6528    52428799+  83  Linux<br \/>====================<\/p>\n<p>9) Set the filesystem type for the new disk using &#8220;mkfs.ext3 \/dev\/xvdb1&#8221;<\/p>\n<p>====================<br \/>root@server [~]# mkfs.ext3 \/dev\/xvdb1<br \/>mke2fs 1.39 (29-May-2006)<br \/>Filesystem label=<br \/>OS type: Linux<br \/>Block size=4096 (log=2)<br \/>Fragment size=4096 (log=2)<br \/>6553600 inodes, 13107199 blocks<br \/>655359 blocks (5.00%) reserved for the super user<br \/>First data block=0<br \/>Maximum filesystem blocks=4294967296<br \/>400 block groups<br \/>32768 blocks per group, 32768 fragments per group<br \/>16384 inodes per group<br \/>Superblock backups stored on blocks:<br \/>    32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,<br \/>    4096000, 7962624, 11239424<\/p>\n<p>Writing inode tables: done                           <br \/>Creating journal (32768 blocks): done<br \/>Writing superblocks and filesystem accounting information:<br \/>done<\/p>\n<p>This filesystem will be automatically checked every 38 mounts or<br \/>180 days, whichever comes first.  Use tune2fs -c or -i to override.<br \/>====================<\/p>\n<p>10) Take a backup of file &#8220;\/etc\/fstab&#8221; and then open it using &#8220;vi&#8221; editor and mount it<\/p>\n<p>&#8212;&#8212;<br \/>root@server [~]# cp -pv \/etc\/fstab \/etc\/fstab2<br \/>&#8212;&#8212;<\/p>\n<p>We will add the following line in &#8220;\/etc\/fstab&#8221;. Here we are mounting the partition at &#8220;\/backup&#8221;.<\/p>\n<p>&#8212;&#8212;<br \/>\/dev\/xvdb1    \/backup        ext3    defaults        0    0<br \/>&#8212;&#8212;<br \/>11) Use the following command to mount it.<\/p>\n<p>&#8212;&#8212;<br \/>root@server [~]# mount \/backup<br \/>&#8212;&#8212;<\/p>\n<p>Thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;How to partition a disk, set its file type &#038; then mount it&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; 1) To know all the disks attached to VPS\/Server type # fdisk -l It will show you all the disk along with the unpartitioned disk. Let we attached a new disk &#8220;\/dev\/xvdb&#8221; to server. It will show&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Partition a new drive in a server\/VPS<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-105","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;How to partition a disk, set its file type &#038; then mount it&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; 1) To know all the disks attached to VPS\/Server type # fdisk -l It will show you all the disk along with the unpartitioned disk. Let we attached a new disk &#8220;\/dev\/xvdb&#8221; to server. It will show&hellip; Continue Reading Partition a new drive in a server\/VPS\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2011-12-23T04:46:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Partition a new drive in a server\\\/VPS\",\"datePublished\":\"2011-12-23T04:46:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/\"},\"wordCount\":475,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2011-12-23T04:46:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/partition-a-new-drive-in-a-servervps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Partition a new drive in a server\\\/VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;How to partition a disk, set its file type &#038; then mount it&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; 1) To know all the disks attached to VPS\/Server type # fdisk -l It will show you all the disk along with the unpartitioned disk. Let we attached a new disk &#8220;\/dev\/xvdb&#8221; to server. It will show&hellip; Continue Reading Partition a new drive in a server\/VPS","og_url":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2011-12-23T04:46:00+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Partition a new drive in a server\/VPS","datePublished":"2011-12-23T04:46:00+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/"},"wordCount":475,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/","url":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2011-12-23T04:46:00+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/partition-a-new-drive-in-a-servervps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Partition a new drive in a server\/VPS"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1H","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/105","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=105"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/105\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=105"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=105"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=105"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}