{"id":27117,"date":"2018-06-12T02:31:04","date_gmt":"2018-06-12T07:31:04","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27117"},"modified":"2022-12-09T03:15:22","modified_gmt":"2022-12-09T09:15:22","slug":"how-to-install-java-10-on-debian-9","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/","title":{"rendered":"How to Install Java 10 on Debian 9"},"content":{"rendered":"
<\/div>

\"how<\/p>\n

\"installIn this tutorial, we are going to discuss the process of installing Java on Debian 9.<\/strong> Java is a general-purpose programming language developed by Sun Microsystems before being bought by Oracle, who maintain and develop Java to this day. Distinguished as a fast, secure, and reliable language available on all platforms, Java can be established on anything from laptops to game consoles, to computers and cell phones. Since Java code is compiled as bytecode before being executed in a Java Virtual Machine (also known as a JVM), this allows Java programs to be run on any computer architecture with no compatibility barriers.<\/p>\n

\"installThanks\u00a0to its object-oriented nature, ease-of-use, and wide cross-platform compatibility, all of these factors make Java a very appealing choice of programming language for most developers. Another great pro when using Java is the community: hundreds of thousands of developers have used Java, and countless Java libraries have been created to perform specific tasks, allowing you to create your programs with ease. Oracle also often updates their programming language, further optimizing its speed, while also adding features to further improve the Java experience. To put the cherry on top, it\u2019s free to download. An open-source version of Java also exists and is run by Oracle as well. Known as OpenJDK, it is also completely free and has its source code open for the entire world to see.<\/p>\n

\"installingInstalling Java on Debian<\/strong> server is easy – however, it’s important to know which ‘type’ of Java you need. First, there\u00a0is the JRE (the Java Runtime Environment), which is just the Java Virtual Machine, used to run Java programs on the machine. The other type of Java is the JDK (the Java Developer Kit). This includes the JRE, plus the necessary tools that will allow you to develop and compile Java programs that can then be run on any platform with the JRE. It is also important to know which variant of Java you need. The OpenJDK is an open-source variant of Java that is developed and maintained by Oracle. The classic Oracle JDK is the closed-source in-house version of Java developed entirely by Oracle. Oracle Java is more oriented towards the enterprise market, with longer version support lifespans than OpenJDK. We will cover the installation process for all types and variants, allowing you to choose exactly which flavor of Java you wish to have installed.<\/p>\n

Installing the OpenJDK version of Java.<\/h2>\n

Method 1: Install using apt-get.<\/h3>\n

Note:<\/strong> Installing using this method may not lead to Java 10 being installed<\/strong>. Since the version is dependent on what version is available from the repositories, it is possible that you will end up installing Java 8 or 9 instead of 10.<\/p>\n

Installing the JRE:<\/h3>\n

The Java Runtime Environment normally comes preinstalled on a default installation of Debian 9. However, if you do not have it pre-installed, you can easily install it through apt-get and the pre-loaded repositories.<\/p>\n

You may need to use apt-get as a root user in order to install the JRE. To log in as the root user, enter the command found below:<\/p>\n

su -<\/pre>\n

To install the Java Runtime Environment, just execute the following command:<\/p>\n

apt-get install default-jre<\/pre>\n

Installing the JDK\u00a0 10 on Debian 9:<\/h3>\n

The JDK 10 is not pre-installed on Debian 9 by default.<\/p>\n

To install the Java Developer Kit (JDK),\u00a0 execute this command:<\/p>\n

apt-get install default-jdk<\/pre>\n

Method 2: Manual installation of OpenJDK 10 on Debian 9<\/h3>\n

By manually installing the OpenJDK yourself, you ensure that Java 10 will be the version that is installed.<\/p>\n

Step 1: Download and extract the OpenJDK tarball.<\/h3>\n

Go to the download page<\/a> for the OpenJDK software package, and right click on the tar.gz link found to the right of the “Linux” option. Click on “Copy link address” or “Copy link”. Now, open a terminal if you are on a desktop Debian machine, or log into your Debian server using SSH. Download the tarball by entering the following command:<\/p>\n

wget <paste the download link here><\/pre>\n

Create a directory where you wish to install your OpenJDK environment:<\/p>\n

mkdir <enter the path and directory name here><\/pre>\n

Then, extract the tarball to your new directory by entering the following command:<\/p>\n

tar xvzf openjdk-10.0.1_linux-x64_bin.tar.gz -C <the path to your new directory><\/pre>\n

Once this is done, you can now add the extracted folder to your path variable. This allows you to run java commands from anywhere in the system.<\/p>\n

Step 2: Add the new directory to your path variable.<\/h3>\n

Create a new file in \/etc\/profile.d\/ named “jdk10.sh”. The full path should be “\/etc\/profile.d\/jdk10.sh”. Then, enter these next two lines in the file:<\/p>\n

export JAVA_HOME=<\/span>\"<insert install directory here>\/jdk-10.0.1\"<\/span>\r\nexport PATH=<\/span>\"$PATH:${JAVA_HOME}\/bin\"\r\n<\/span><\/pre>\n

Save the file, and then restart your desktop\/server for the changes to take effect. Now, check whether your java environment has been successfully set up by trying the following command:<\/p>\n

javac -version<\/pre>\n

The output should read: “javac 10.0.1”. You have now successfully installed OpenJDK on your Debian 9 system.<\/p>\n

Installing the Oracle version of Java 10 on Debian 9<\/h2>\n

Step 1: Download and extract the Oracle JDK tarball.<\/h3>\n

Go to the download page for the Oracle JDK software packages. First, click on “Accept License Agreement” in order to unlock the downloads. After that, right click on the file ending with “…linux-x64_bin.tar.gz”, and click on “Copy link address” or “Copy link”. Then, open a terminal if on a desktop, or SSH into your Debian server, and enter the following command:<\/p>\n

wget --header \"Cookie: oraclelicense=accept-securebackup-cookie\" <paste the download link here><\/pre>\n

Then, create a new directory where you would like your Java environment to be installed. Now, we can extract the Oracle JDK tarball to the new directory by entering the following command:<\/p>\n

tar xvzf\u00a0jdk-10.0.1_linux-x64_bin.tar.gz -C <the path to your new directory><\/pre>\n

Once this is done, you can now add a shortcut to the extracted folder in your path variable. This allows you to run java commands as if you installed them using apt-get.<\/p>\n

Step 2: Add the new directory to your path variable.<\/h3>\n

Create a new file in \/etc\/profile.d\/ named “jdk10.sh”. The full path should be “\/etc\/profile.d\/jdk10.sh”. Then, enter these next two lines in the file:<\/p>\n

export JAVA_HOME=<\/span>\"<insert install directory here>\/jdk-10.0.1\"<\/span>\r\nexport PATH=<\/span>\"$PATH:${JAVA_HOME}\/bin\"\r\n<\/span><\/pre>\n

Save the file, and then restart your desktop\/server for the changes to take effect. Now, check whether your java environment has been successfully set up by trying the following command:<\/p>\n

javac -version<\/pre>\n

The output should read: “javac 10.0.1”. You have now successfully installed OpenJDK on your Debian 9 system.<\/p>\n


\n

\"installOf course, you don’t need to install Java 10 on your Debian 9 machine yourself if you have a high-speed Debian VPS hosted with us<\/a> – in which case, you can contact our team of Linux experts who can install and configure either version of Java for you. They are available 24\/7 and can help with any requests or questions that you may have.<\/p>\n

PS.<\/span> 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":"

In this tutorial, we are going to discuss the process of installing Java on Debian 9. Java is a general-purpose … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":27136,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1700,13,1712],"tags":[1577,77,1719],"yoast_head":"\nHow to Install Java 10 on Debian 9 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Java 10 on Debian 9 - RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Java 10 on Debian 9 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Install Java 10 on Debian 9 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-12T07:31:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-09T09:15:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"371\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Java 10 on Debian 9\",\"datePublished\":\"2018-06-12T07:31:04+00:00\",\"dateModified\":\"2022-12-09T09:15:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/\"},\"wordCount\":1092,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg\",\"keywords\":[\"debian 9\",\"java\",\"OpenJDK\"],\"articleSection\":[\"Debian\",\"Tutorials\",\"Web Frameworks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/\",\"name\":\"How to Install Java 10 on Debian 9 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg\",\"datePublished\":\"2018-06-12T07:31:04+00:00\",\"dateModified\":\"2022-12-09T09:15:22+00:00\",\"description\":\"How to Install Java 10 on Debian 9 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg\",\"width\":742,\"height\":371,\"caption\":\"how to install java 10 on debian 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Java 10 on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Java 10 on Debian 9 - RoseHosting","description":"How to Install Java 10 on Debian 9 - RoseHosting","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.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Java 10 on Debian 9 - RoseHosting","og_description":"How to Install Java 10 on Debian 9 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-06-12T07:31:04+00:00","article_modified_time":"2022-12-09T09:15:22+00:00","og_image":[{"width":742,"height":371,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Java 10 on Debian 9","datePublished":"2018-06-12T07:31:04+00:00","dateModified":"2022-12-09T09:15:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/"},"wordCount":1092,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg","keywords":["debian 9","java","OpenJDK"],"articleSection":["Debian","Tutorials","Web Frameworks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/","name":"How to Install Java 10 on Debian 9 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg","datePublished":"2018-06-12T07:31:04+00:00","dateModified":"2022-12-09T09:15:22+00:00","description":"How to Install Java 10 on Debian 9 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/06\/how-to-install-java-10-on-debian-9.jpg","width":742,"height":371,"caption":"how to install java 10 on debian 9"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-java-10-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Java 10 on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27117"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=27117"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27117\/revisions"}],"predecessor-version":[{"id":43901,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27117\/revisions\/43901"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/27136"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27117"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27117"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27117"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}