{"id":790,"date":"2018-06-15T03:15:57","date_gmt":"2018-06-15T08:15:57","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=790"},"modified":"2018-06-15T03:15:57","modified_gmt":"2018-06-15T08:15:57","slug":"how-to-install-git-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/","title":{"rendered":"How To Install Git on Ubuntu 16.04"},"content":{"rendered":"<p><em>Git<\/em>\u00a0is a free and open source distributed version control system, originally developed in 2005 by Linus Torvalds, the great creator of the Linux operating system kernel.\u00a0In this tutorial, we will show you how to install GIt on Ubuntu 16.04 and discuss how Git can help improve your development workflow.<!--more--><\/p>\n<h3>Prerequisites<\/h3>\n<ul>\n<li>You need to run a server with any Ubuntu 16.04 LTS release.<\/li>\n<li>You should log in to SSH using the root user.<\/li>\n<\/ul>\n<p>The first thing that should be done is to run general OS and package updates. On Ubuntu you can do that by executing the following command:<\/p>\n<pre>apt-get update<\/pre>\n<p>Then, after the general updates on the server have been run, you can start with the installation of Git.<\/p>\n<h2>Install Git<\/h2>\n<pre>apt-get install git<\/pre>\n<p>If you are asked to confirm the download of the installation; Just press Y to confirm. It is simple as that.<\/p>\n<h2>Confirm Git the installation<\/h2>\n<p>Once you are done with the main installation, you need to check and make sure that the executable file is set up and accessible. You can do this by running Git with the version command.<\/p>\n<pre>#git --version\r\ngit version 2.17.0<\/pre>\n<h2>How To Install Git from Source<\/h2>\n<p>Another way to install Git, which is more flexible, is to compile the software from source. This method takes more time and it won`t be maintained through the package manager, but you will get the chance to download the latest version and you will have the control over the options that can be included if you want to customize it.<\/p>\n<p>Update and install the local package index<\/p>\n<pre>sudo apt-get update\r\nsudo apt-get install build-essential libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext unzip<\/pre>\n<p>When all the necessary dependencies are done and installed, you will be able to get the git version you want and you can do that by visiting the git project`s mirror on GitHub.<\/p>\n<p>If you wish to get the latest stable version, all you have to do is to go and change the branch to the latest non-&#8220;rc&#8221; tag via the button along the left side of the project header:<\/p>\n<p>Then, on the right side of the page, right-click the Download ZIP button and you need to copy the link address.<\/p>\n<p>Now go back to the Ubuntu 16.04 server where you need to type wget and then to paste the copied address. Have in mind that the URL which you copied can differ from this example:<\/p>\n<pre>wget https:\/\/github.com\/git\/git\/archive\/v2.17.0.zip -O git.zip<\/pre>\n<p>The next step s to unzip the downloaded file and move it in the result directory by typing:<\/p>\n<pre>unzip git.zip\r\ncd git<\/pre>\n<p>At this point, by typing the following commands, you can create the package and install it:<\/p>\n<pre>make prefix=\/usr\/local all\r\nsudo make prefix=\/usr\/local install<\/pre>\n<p>Since you already installed git, you may want to upgrade it to its latest version, and that is quite simple &#8211; all you need to do is clone the repository (be sure that you have changed it to your home directory) and next build and install. Navigate to the branch in order to find the URL which you need to use for the clone operation or also you can tag the things you want on the project`s GitHub page and simply copy the clone URL on the right:<\/p>\n<pre>git clone URL<\/pre>\n<p>Once again, don`t forget to change to your home directory and use the already copied URL:<\/p>\n<pre>cd ~\r\ngit clone https:\/\/github.com\/git\/git.git<\/pre>\n<p>By taking these steps you will create new directory within the existing one and there you will be able to rebuild the packages and of course to reinstall the latest version. This is how your older version will be overwritten with the new version:<\/p>\n<pre>cd git\r\nmake prefix=\/usr\/local all\r\nsudo make prefix=\/usr\/local install<\/pre>\n<h2>Configure root user<\/h2>\n<p>Configure Git\u2019s settings (for the root user)<\/p>\n<p>Now you should set up your user for git in order to prevent some commit errors later. We\u2019ll set up the user <em>gituser<\/em> with the e-mail address <em>gituser@your_domain.com<\/em>.<\/p>\n<pre>git config --global user.name &quot;gituser&quot;\r\ngit config --global user.email &quot;gituser@your_domain.com&quot;<\/pre>\n<h2>Verify the Config changes<\/h2>\n<p>At this point the configuration changes should be verified and that can be done by viewing the <em>.gitconfig<\/em> file. This can be done in various ways and here you can see the methods.<\/p>\n<p>You can use cat with the following command in order to view the config file:<\/p>\n<pre>cat ~\/.gitconfig<\/pre>\n<p>You can also use the git config command in order to view the same details:<\/p>\n<pre>git config --list<\/pre>\n<p>And that&#8217;s it, now you have Git installed on your Ubuntu 16.04 server and you have also configured it on your root user. You can get rolling with your code changes from here, or you can repeat the steps for other system user accounts.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-792\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/install-git-on-ubuntu-16.04.jpg\" alt=\"install git on ubuntu 16.04\" width=\"150\" height=\"63\" \/>Of course, you don\u2019t need to install Git on your Ubuntu 16.04 machine yourself if you have an <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\"> high-speed Ubuntu VPS hosted with us<\/a> \u2013 in which case, you can contact our team of Linux experts who can install and configure Git for you. They are available 24\/7 and can help with any requests or questions that you may have.<\/p>\n<p>PS. If you liked this post, feel free to share it by using the social media share buttons below, or simply leave a comment. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Git\u00a0is a free and open source distributed version control system, originally developed in 2005 by Linus Torvalds, the great creator of the Linux operating system kernel.\u00a0In this tutorial, we will show you how to install GIt on Ubuntu 16.04 and discuss how Git can help improve your development workflow.<\/p>\n","protected":false},"author":2,"featured_media":791,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[148,57,149],"class_list":["post-790","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-git","tag-ubuntu-16-04","tag-version-control"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Install Git on Ubuntu 16.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Git\u00a0is a free and open source distributed version control system, originally developed in 2005 by Linus Torvalds, the great creator of the Linux operating\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Git on Ubuntu 16.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Git\u00a0is a free and open source distributed version control system, originally developed in 2005 by Linus Torvalds, the great creator of the Linux operating\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-15T08:15:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-git-on-ubuntu-16.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How To Install Git on Ubuntu 16.04\",\"datePublished\":\"2018-06-15T08:15:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/\"},\"wordCount\":806,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/how-to-install-git-on-ubuntu-16.04.jpg\",\"keywords\":[\"git\",\"ubuntu 16.04\",\"version control\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/\",\"name\":\"How To Install Git on Ubuntu 16.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/how-to-install-git-on-ubuntu-16.04.jpg\",\"datePublished\":\"2018-06-15T08:15:57+00:00\",\"description\":\"Git\u00a0is a free and open source distributed version control system, originally developed in 2005 by Linus Torvalds, the great creator of the Linux operating\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/how-to-install-git-on-ubuntu-16.04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/how-to-install-git-on-ubuntu-16.04.jpg\",\"width\":600,\"height\":300,\"caption\":\"how to install git on ubuntu 16.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-git-on-ubuntu-16-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Git on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install Git on Ubuntu 16.04 | LinuxCloudVPS Blog","description":"Git\u00a0is a free and open source distributed version control system, originally developed in 2005 by Linus Torvalds, the great creator of the Linux operating","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:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Git on Ubuntu 16.04 | LinuxCloudVPS Blog","og_description":"Git\u00a0is a free and open source distributed version control system, originally developed in 2005 by Linus Torvalds, the great creator of the Linux operating","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2018-06-15T08:15:57+00:00","og_image":[{"width":600,"height":300,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-git-on-ubuntu-16.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How To Install Git on Ubuntu 16.04","datePublished":"2018-06-15T08:15:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/"},"wordCount":806,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-git-on-ubuntu-16.04.jpg","keywords":["git","ubuntu 16.04","version control"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/","name":"How To Install Git on Ubuntu 16.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-git-on-ubuntu-16.04.jpg","datePublished":"2018-06-15T08:15:57+00:00","description":"Git\u00a0is a free and open source distributed version control system, originally developed in 2005 by Linus Torvalds, the great creator of the Linux operating","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-git-on-ubuntu-16.04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-git-on-ubuntu-16.04.jpg","width":600,"height":300,"caption":"how to install git on ubuntu 16.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-git-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Install Git on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/790","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=790"}],"version-history":[{"count":1,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/790\/revisions"}],"predecessor-version":[{"id":793,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/790\/revisions\/793"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/791"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=790"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=790"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=790"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}