{"id":8759,"date":"2020-07-11T02:51:31","date_gmt":"2020-07-11T06:51:31","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=8759"},"modified":"2021-12-04T08:00:07","modified_gmt":"2021-12-04T08:00:07","slug":"upgrade-ubuntu-20-04-lts","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/","title":{"rendered":"Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)"},"content":{"rendered":"\n

Ubuntu 20.04 LTS (Focal Fossa) was released on Apr 23, 2020. This LTS (Long Term Support) flavor will be supported until 2025. As usual, the Standard release will be supported for just one year. The Ubuntu<\/a> Desktop users can upgrade to the latest version immediately, however, it is advised that the Ubuntu server production users wait for a few months before upgrading to Ubuntu 20.04 LTS.<\/p>\n\n\n\n

For those who are ready to go ahead and upgrade then this tutorial will show you how to upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS via the command line. So let’s get started.<\/p>\n\n\n\n

Step 1: Backup Your Data<\/h2>\n\n\n\n

It is strongly recommended to backup all your data from Ubuntu Desktop or Server to a remote location or external disk before attempting any upgrades. If you are on a cloud service or running off a VM you may also take a complete system snapshot if possible.<\/p>\n\n\n\n

Note: Remember that it’s safest to perform major operating system upgrades only when you have direct physical access to the machine. If using SSH, for virtual machines or managed servers you should keep in mind that losing SSH connectivity is a risk. Ensure you have another means of accessing the server such as a web-based console feature, for example.<\/em><\/p>\n\n\n\n

Step 2: Update Currently Installed Packages<\/h2>\n\n\n\n

We need to make sure all the installed packages are updated. Begin by updating the package list:<\/p>\n\n\n\n

$ sudo apt update<\/code><\/pre>\n\n\n\n

Now we can upgrade installed packages to their latest available versions:<\/p>\n\n\n\n

$ sudo apt upgrade<\/code><\/pre>\n\n\n\n

You will be shown a list of upgrades and prompted to continue. Agree to the prompts to begin the upgrades.<\/p>\n\n\n\n

Once it is finished use the dist-upgrade<\/strong> command which will perform any additional upgrades such as changing dependencies, adding or removing new packages as necessary.<\/p>\n\n\n\n

$ sudo apt dist-upgrade<\/code><\/pre>\n\n\n\n

Again, answer y when prompted to continue, and let the process run its course. You are now ready to begin the upgrade from Ubuntu 18.04 LTS to Ubuntu 20.04 LTS.<\/p>\n\n\n\n

Step 3: Upgrade to Ubuntu 20.04 LTS<\/h2>\n\n\n\n

Here we will use the tool called do-release-upgrade to make the upgrade safer and easier. do-release-upgrade<\/em> is the officially recommended upgrade path for server upgrades which must be performed over a remote connection. The tool handles checking for a new release, updating sources.list,<\/em> and a range of other tasks. proceed by running the following command:<\/p>\n\n\n\n

$ sudo do-release-upgrade<\/code><\/pre>\n\n\n\n

If you get the following output, it means the new Ubuntu version has not been officially released yet.<\/p>\n\n\n\n

Checking for a new Ubuntu release\nNo new release found<\/code><\/pre>\n\n\n\n

On Ubuntu Server, the new LTS release isn’t made available to do-release-upgrade until its first point release, which is Ubuntu 20.04.1. This usually comes a few months after the initial release date.<\/p>\n\n\n\n

If you still want to upgrade without waiting you can install a development release by adding the -d<\/strong> option:<\/p>\n\n\n\n

$ sudo do-release-upgrade -d<\/code><\/pre>\n\n\n\n

If you’re connected to your system over SSH, you will be asked whether you wish to continue. At the prompt, type y<\/strong> and press Enter<\/strong> to continue:<\/p>\n\n\n\n

Reading cache\n\nChecking package manager\n\nContinue running under SSH?\n\nThis session appears to be running under ssh. It is not recommended\nto perform a upgrade over ssh currently because in case of failure it\nis harder to recover.\n\nIf you continue, an additional ssh daemon will be started at port\n'1022'.\nDo you want to continue?\n\nContinue [yN]<\/code><\/pre>\n\n\n\n

Next, you will be informed that do-release-upgrade is starting a new instance of ssh on port 1022:<\/p>\n\n\n\n

Starting additional sshd\n\nTo make recovery in case of failure easier, an additional sshd will\nbe started on port '1022'. If anything goes wrong with the running\nssh you can still connect to the additional one.\nIf you run a firewall, you may need to temporarily open this port. As\nthis is potentially dangerous it's not done automatically. You can\nopen the port with e.g.:\n'iptables -I INPUT -p tcp --dport 1022 -j ACCEPT'\n\nTo continue please press [ENTER]<\/code><\/pre>\n\n\n\n

Once the new package lists have been downloaded and processed, you’ll be asked if you want to start the upgrade. Enter y<\/strong> to continue:<\/p>\n\n\n\n

Do you want to start the upgrade?\n\n\n18 installed packages are no longer supported by Canonical. You can\nstill get support from the community.\n\n3 packages are going to be removed. 142 new packages are going to be\ninstalled. 452 packages are going to be upgraded.\n\nYou have to download a total of 338 M. This download will take about\n42 minutes with a 1Mbit DSL connection and about 13 hours with a 56k\nmodem.\n\nFetching and installing the upgrade can take several hours. Once the\ndownload has finished, the process cannot be canceled.\n\n Continue [yN]  Details [d]<\/code><\/pre>\n\n\n\n

The upgrade will now proceed and this process will take a while. keep an eye on the process during the installation as you may be presented with interactive dialogs that will require your action to process and make choices. <\/p>\n\n\n\n

You will have to make the right calls based on your current preferences in each case. In most cases, you will answer ‘yes<\/strong>‘, or you will opt to keep the current configuration.<\/p>\n\n\n\n

Once new packages have finished installing, you will be asked whether you are ready to remove obsolete packages. On a stock system with no custom configuration, it should be safe to enter y here. On a system you have modified heavily, you may wish to enter d<\/strong> and inspect the list of packages to be removed, in case it includes anything you will need to reinstall later.<\/p>\n\n\n\n

Remove obsolete packages?\n\n53 packages are going to be removed.\n\n Continue [yN]  Details [d]<\/code><\/pre>\n\n\n\n

Finally, assuming all has gone well, you will be asked to restart the system. Enter y<\/strong> to continue:<\/p>\n\n\n\n

System upgrade is complete.\n\nRestart required\n\nTo finish the upgrade, a restart is required.\nIf you select 'y' the system will be restarted.\n\nContinue [yN]<\/code><\/pre>\n\n\n\n

Give your server a moment to reboot, then reconnect.<\/p>\n\n\n\n

Conclusion<\/h2>\n\n\n\n

You should now have a working Ubuntu 20.04 installation. It is also good practice to investigate necessary configuration changes to services and deployed applications to ensure everything is still working as expected.<\/p>\n","protected":false},"excerpt":{"rendered":"

Ubuntu 20.04 LTS (Focal Fossa) was released on Apr 23, 2020. This LTS (Long Term Support) flavor will be supported until 2025. As usual, the Standard release will be supported…<\/p>\n","protected":false},"author":1,"featured_media":8760,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23,9,16],"tags":[142,193,354,431,433,531,543,573,591,598,604],"yoast_head":"\nHow to Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)<\/title>\n<meta name=\"description\" content=\"This tutorial will guide you on how you can upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa) server on your current system\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)\" \/>\n<meta property=\"og:description\" content=\"This tutorial will guide you on how you can upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa) server on your current system\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-11T06:51:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-04T08:00:07+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)\",\"datePublished\":\"2020-07-11T06:51:31+00:00\",\"dateModified\":\"2021-12-04T08:00:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/\"},\"wordCount\":715,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg\",\"keywords\":[\"Community\",\"DevOps\",\"Linux\",\"Operating Systems\",\"Optimization\",\"Server\",\"Software Design\",\"Systems Administration\",\"Tools\",\"Ubuntu\",\"Unix\"],\"articleSection\":[\"Guides\",\"How To\",\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/\",\"url\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/\",\"name\":\"How to Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg\",\"datePublished\":\"2020-07-11T06:51:31+00:00\",\"dateModified\":\"2021-12-04T08:00:07+00:00\",\"description\":\"This tutorial will guide you on how you can upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa) server on your current system\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg\",\"width\":1200,\"height\":630,\"caption\":\"Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/x.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)","description":"This tutorial will guide you on how you can upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa) server on your current system","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":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/","og_locale":"en_US","og_type":"article","og_title":"How to Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)","og_description":"This tutorial will guide you on how you can upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa) server on your current system","og_url":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2020-07-11T06:51:31+00:00","article_modified_time":"2021-12-04T08:00:07+00:00","og_image":[{"width":1200,"height":630,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)","datePublished":"2020-07-11T06:51:31+00:00","dateModified":"2021-12-04T08:00:07+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/"},"wordCount":715,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg","keywords":["Community","DevOps","Linux","Operating Systems","Optimization","Server","Software Design","Systems Administration","Tools","Ubuntu","Unix"],"articleSection":["Guides","How To","Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/","url":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/","name":"How to Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg","datePublished":"2020-07-11T06:51:31+00:00","dateModified":"2021-12-04T08:00:07+00:00","description":"This tutorial will guide you on how you can upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa) server on your current system","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2020\/07\/upgrade-ubuntu-20-04-lts.jpg","width":1200,"height":630,"caption":"Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/upgrade-ubuntu-20-04-lts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"Upgrade Ubuntu 18.04 LTS to Ubuntu 20.04 LTS (Focal Fossa)"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/x.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/8759"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=8759"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/8759\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/8760"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=8759"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=8759"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=8759"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}