{"id":90826,"date":"2021-11-02T10:21:16","date_gmt":"2021-11-02T14:21:16","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=90826"},"modified":"2021-11-17T11:03:50","modified_gmt":"2021-11-17T16:03:50","slug":"install-emacs-ubuntu-20","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/","title":{"rendered":"How To Install Emacs on Ubuntu 20 Cloud Server"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-1024x538.png\" alt=\"Install Emacs on Ubuntu 20\" class=\"wp-image-90830\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p> Emacs is a powerful text editor you can install on virtually any Linux server.  It\u2019s powerful but also large, so it does not come pre-installed with most Linux distributions.  However, if you are comfortable using Emacs, it offers a lot of features that can help you manage and administer your server.  In this article, you will learn how to install Emacs on your cloud VPS running Ubuntu 20. (Please note, if you are on a <a href=\"https:\/\/www.inmotionhosting.com\/vps-hosting\">managed cPanel VPS<\/a>, Emacs may already be installed.)<\/p>\n\n\n\n<p>\nThere are a few different ways to install Ubuntu.  You can choose whichever one is easiest for you.  The main difference between these two approaches is the version of Emacs you will have when the process completes.  For some users, who don\u2019t need the latest and greatest version of Emacs, the <code>apt<\/code> approach is easiest and quickest.  However, if you want the most up-to-date version of Emacs then you will want to try out the GNU Guix package management system or installing Emacs from source.\n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#apt\">Using The <code>apt<\/code> Package Manager<\/a><\/li><li><a href=\"#guix\">Install Emacs With GNU Guix Package Manager<\/a><\/li><li><a href=\"#source\">Installing Emacs From Source<\/a><\/li><\/ul>\n\n\n<div class=\"jumbotron\">\r\n<p>If you don\u2019t need cPanel, don't pay for it. Only pay for what you need with our scalable <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud VPS Hosting<\/a>.<\/p>\r\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>CentOS, Debian, or Ubuntu    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>No Bloatware    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>SSH and Root Access<\/p>\r\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"apt\">Using The <code>apt<\/code> Package Manager<\/h2>\n\n\n\n<p>\nYour Ubuntu cloud server uses the <code>apt<\/code> package manager by default, so it is already installed and configured.  Your <code>apt<\/code> installation maintains a list of source repositories from which you can grab and install whatever programs you require.  A recent, stable version of Emacs will be listed here.  All you need to do is run this command when logged into your server as the <code>root<\/code> user:\n<\/p>\n\n\n\n<pre id=\"org26b652a\" class=\"wp-block-preformatted example\">apt install emacs\n<\/pre>\n\n\n\n<p> Or, if you are using a sudo user, you can run the same command but prepended with <code>sudo<\/code>: <\/p>\n\n\n\n<pre id=\"orga72338f\" class=\"wp-block-preformatted example\">sudo apt install emacs\n<\/pre>\n\n\n\n<p>\nThis will install Emacs along with all the of necessary dependencies.  Just type <code>emacs<\/code> at the command line and you\u2019ll be in a new Emacs installation.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"guix\">Install Emacs With GNU Guix Package Manager<\/h2>\n\n\n\n<p>\nFor the most recent version of Emacs you can try installing and running the GNU Guix package manager.  First, you will need to install GNU Guix.  While the above installation process can be run as root, I would recommend running this one as your sudo user.\n<\/p>\n\n\n\n<p>\nYou will need to download an installation script from the GNU servers:\n<\/p>\n\n\n\n<pre id=\"orga0963a1\" class=\"wp-block-preformatted example\">wget https:\/\/git.savannah.gnu.org\/cgit\/guix.git\/plain\/etc\/guix-install.sh\n<\/pre>\n\n\n\n<p>\nMake the install script executable with the <code>chmod<\/code> command:\n<\/p>\n\n\n\n<pre id=\"orgc123cd8\" class=\"wp-block-preformatted example\">chmod +x guix-install.sh\n<\/pre>\n\n\n\n<p>\nRun the installation script as your sudo (or root) user:\n<\/p>\n\n\n\n<pre id=\"org1feb38b\" class=\"wp-block-preformatted example\">sudo .\/guix-install.sh\n<\/pre>\n\n\n\n<p>\nOnce the process completes, you should have a working GNU Guix installation.  Before installing Emacs, however, you will want to add the following to your personal Bash profile (<code>.profile<\/code>):\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted src src-bash\"><span style=\"color: #b22222;\"># <\/span><span style=\"color: #b22222;\">guix profile 1<\/span>\n<span style=\"color: #a0522d;\">GUIX_PROFILE<\/span>=<span style=\"color: #8b2252;\">\"$HOME\/.guix-profile\"<\/span>\n<span style=\"color: #483d8b;\">.<\/span> <span style=\"color: #8b2252;\">\"$GUIX_PROFILE\/etc\/profile\"<\/span>\n\n<span style=\"color: #b22222;\">#<\/span><span style=\"color: #b22222;\">guix profile 2<\/span>\n<span style=\"color: #a0522d;\">GUIX_PROFILE<\/span>=<span style=\"color: #8b2252;\">\"$HOME\/.config\/guix\/current\"<\/span>\n<span style=\"color: #483d8b;\">.<\/span> <span style=\"color: #8b2252;\">\"$GUIX_PROFILE\/etc\/profile\"<\/span>\n\n<span style=\"color: #483d8b;\">export<\/span> <span style=\"color: #a0522d;\">GUIX_LOCPATH<\/span>=<span style=\"color: #8b2252;\">\"$HOME\/.guix-profile\/lib\/locale\"<\/span>\n<\/pre>\n\n\n\n<p>\nI would recommend rebooting your server at this time.  When the server comes back online, you can run this command to install Emacs:\n<\/p>\n\n\n\n<pre id=\"orgd865f9d\" class=\"wp-block-preformatted example\">guix install emacs\n<\/pre>\n\n\n\n<p>\nAllow the process several minutes to complete.  Upon completion you should have a copy of the latest version of Emacs available in the Guix repository.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"source\">Installing Emacs From Source<\/h2>\n\n\n\n<p>\nInstalling Emacs from source code is the most advanced way of getting a working copy of Emacs installed, but it provides you with the most control.  Using this method, you can install virtually any version of Emacs you desire, old, current, or bleeding edge.  The process described below will overwrite previous installations, so you can run this process to install or upgrade your Emacs.\n<\/p>\n\n\n\n<p>\nYou will need to first get yourself a recent copy of Emacs source.  This example uses version 27.2, but you can replace that filename with any version you desire:\n<\/p>\n\n\n\n<pre id=\"org6643420\" class=\"wp-block-preformatted example\">wget https:\/\/ftp.gnu.org\/pub\/gnu\/emacs\/emacs-27.2.tar.gz\n<\/pre>\n\n\n\n<p>\nUse the <code>tar<\/code> command to open the archive file:\n<\/p>\n\n\n\n<pre id=\"org6ac7d63\" class=\"wp-block-preformatted example\">tar -zxvf emacs-27.2.tar.gz\n<\/pre>\n\n\n\n<p>\nChange directory (<code>cd<\/code>) into the directory containing the source files:\n<\/p>\n\n\n\n<pre id=\"orgba01357\" class=\"wp-block-preformatted example\">cd emacs-27.2\n<\/pre>\n\n\n\n<p>\nIt would be easiest to run the following as the root user, particularly <code>make install<\/code> at the end.  Or, if not available, you may use the sudo user.\n<\/p>\n\n\n\n<p>\nTo configure your system for Emacs, you may run the \u201cconfigure\u201d script:\n<\/p>\n\n\n\n<pre id=\"orgb44a2c9\" class=\"wp-block-preformatted example\">.\/configure\n<\/pre>\n\n\n\n<p>\nRun <code>make<\/code> to prepare for the installation process:\n<\/p>\n\n\n\n<pre id=\"org2ce3f97\" class=\"wp-block-preformatted example\">make\n<\/pre>\n\n\n\n<p>\nFinally, run this command to complete the installation:\n<\/p>\n\n\n\n<pre id=\"org7a475bc\" class=\"wp-block-preformatted example\">make install\n<\/pre>\n\n\n\n<p> If you come across any errors during this process feel free to share them below, and we will try to help you troubleshoot.  Otherwise, you now have a working installation of Emacs in your Ubuntu cloud server. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Emacs is a powerful text editor you can install on virtually any Linux server. It&#8217;s powerful but also large, so it does not come pre-installed with most Linux distributions. However, if you are comfortable using Emacs, it offers a lot of features that can help you manage and administer your server. In this article, you<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4396],"tags":[],"class_list":["post-90826","post","type-post","status-publish","format-standard","hentry","category-emacs"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Install Emacs on Ubuntu 20 Cloud Server | InMotion Hosting<\/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:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Emacs on Ubuntu 20 Cloud Server | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Emacs is a powerful text editor you can install on virtually any Linux server. It&#8217;s powerful but also large, so it does not come pre-installed with most Linux distributions. However, if you are comfortable using Emacs, it offers a lot of features that can help you manage and administer your server. In this article, you Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-02T14:21:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-17T16:03:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-1024x538.png\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\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.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How To Install Emacs on Ubuntu 20 Cloud Server\",\"datePublished\":\"2021-11-02T14:21:16+00:00\",\"dateModified\":\"2021-11-17T16:03:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/\"},\"wordCount\":667,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-1024x538.png\",\"articleSection\":[\"Emacs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/\",\"name\":\"How To Install Emacs on Ubuntu 20 Cloud Server | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-1024x538.png\",\"datePublished\":\"2021-11-02T14:21:16+00:00\",\"dateModified\":\"2021-11-17T16:03:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20.png\",\"width\":1200,\"height\":630,\"caption\":\"Install Emacs on Ubuntu 20\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Emacs on Ubuntu 20 Cloud Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install Emacs on Ubuntu 20 Cloud Server | InMotion Hosting","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.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Emacs on Ubuntu 20 Cloud Server | InMotion Hosting","og_description":"Emacs is a powerful text editor you can install on virtually any Linux server. It&#8217;s powerful but also large, so it does not come pre-installed with most Linux distributions. However, if you are comfortable using Emacs, it offers a lot of features that can help you manage and administer your server. In this article, you Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-11-02T14:21:16+00:00","article_modified_time":"2021-11-17T16:03:50+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-1024x538.png","type":"","width":"","height":""}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How To Install Emacs on Ubuntu 20 Cloud Server","datePublished":"2021-11-02T14:21:16+00:00","dateModified":"2021-11-17T16:03:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/"},"wordCount":667,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-1024x538.png","articleSection":["Emacs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/","name":"How To Install Emacs on Ubuntu 20 Cloud Server | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20-1024x538.png","datePublished":"2021-11-02T14:21:16+00:00","dateModified":"2021-11-17T16:03:50+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/How-to-Install-Emacs-on-Ubuntu-20.png","width":1200,"height":630,"caption":"Install Emacs on Ubuntu 20"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/install-emacs-ubuntu-20\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Install Emacs on Ubuntu 20 Cloud Server"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/90826","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=90826"}],"version-history":[{"count":5,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/90826\/revisions"}],"predecessor-version":[{"id":91693,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/90826\/revisions\/91693"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=90826"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=90826"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=90826"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}