{"id":1727,"date":"2022-05-15T12:30:00","date_gmt":"2022-05-15T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1727"},"modified":"2023-08-29T11:39:31","modified_gmt":"2023-08-29T16:39:31","slug":"how-to-install-code-server-ide-platform-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/","title":{"rendered":"How to Install Code-Server IDE platform on Ubuntu 20.04"},"content":{"rendered":"\n<p>In this tutorial, we are going to install the code-server IDE platform on <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\">Ubuntu 20.04 OS<\/a>.<\/p>\n\n\n\n<p>Code-Server IDE is a development platform running remotely on a server that can be accessed via a web browser. The main purpose of this code IDE platform is to be accessible from everywhere for better collaboration between developers. It is an open-source project integrated with Git support that allows developers to run Visual Studio Code.<\/p>\n\n\n\n<p>Installing the code-server IDE platform on Ubuntu 20.04 is a very easy and straightforward process that can take up to 20 minutes. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server with Ubuntu 20.04 as OS<\/li>\n\n\n\n<li>A server with 4GB of RAM (Our NVMe 4GB VPS plan)<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<p>&lt;\/ul<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Update the System<\/h2>\n\n\n\n<p>Update the system packages to the latest versions available before you start with the installation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get update -y &amp;&amp; sudo apt-get upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Apache Web Server<\/h2>\n\n\n\n<p>Install the Apache Web server with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install apache2<\/pre>\n\n\n\n<p>Once, installed start and enable the service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl enable apache2 &amp;&amp; sudo systemctl start apache2<\/pre>\n\n\n\n<p>Check if the service is up and running:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status apache2<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@vps:~# sudo systemctl status apache2\n\u25cf apache2.service - The Apache HTTP Server\n     Loaded: loaded (\/lib\/systemd\/system\/apache2.service; enabled; vendor preset: enabled)\n     Active: active (running) since Sun 2022-04-17 13:30:54 UTC; 2min 14s ago\n       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/\n   Main PID: 44892 (apache2)\n      Tasks: 55 (limit: 4617)\n     Memory: 5.9M\n     CGroup: \/system.slice\/apache2.service\n             \u251c\u250044892 \/usr\/sbin\/apache2 -k start\n             \u251c\u250044894 \/usr\/sbin\/apache2 -k start\n             \u2514\u250044895 \/usr\/sbin\/apache2 -k start\n\nApr 17 13:30:54 test.vps systemd[1]: Starting The Apache HTTP Server...\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install Code-Server IDE<\/h2>\n\n\n\n<p>Download the latest version of code-server IDE in <strong>\/opt<\/strong> directory on your server.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/opt &amp;&amp; wget https:\/\/github.com\/cdr\/code-server\/releases\/download\/v4.3.0\/code-server-4.3.0-linux-amd64.tar.gz\n<\/pre>\n\n\n\n<p>Once, downloaded extract the file with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">tar -xvzf code-server-4.3.0-linux-amd64.tar.gz\n\nmv code-server-4.3.0-linux-amd64\/ code-server\/\n<\/pre>\n\n\n\n<p>Create a code-server directory for storing the user&#8217;s data:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/opt &amp;&amp; mkdir code-server-data\n<\/pre>\n\n\n\n<p>Before we create a systemd service file, we need to create a user and set a password for that user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">useradd -m -s \/bin\/bash code-server<\/pre>\n\n\n\n<p>To set a password for the user, execute the following command and enter the password twice:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">passwd code-server\nNew password:\nRetype new password:\n<\/pre>\n\n\n\n<p>Next is to create a systemd service file, so we can start the code-server IDE with one command only:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch \/etc\/systemd\/system\/code-server.service<\/pre>\n\n\n\n<p>Once, the file is created, open it with your favorite editor and paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[Unit]\nDescription=code-server\nAfter=apache2.service\n\n[Service]\nUser=code\nWorkingDirectory=\/opt\/code-server\/\nEnvironment=PASSWORD=YourStrongPasswordHere\nExecStart=\/opt\/code-server\/bin\/code-server --host 0.0.0.0 --user-data-dir \/opt\/code-server-data --auth password\nRestart=always\n\n[Install]\nWantedBy=multi-user.target\n<\/pre>\n\n\n\n<p>Save the file, close it and restart the daemon<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl daemon-reload<\/pre>\n\n\n\n<p>To start and enable the service on system boot execute the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start code-server &amp;&amp; sudo systemctl enable code-server<\/pre>\n\n\n\n<p>To check if the service is started successfully execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status code-server<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@vps:\/opt\/code-server-data# sudo systemctl status code-server\n\u25cf code-server.service - code-server\n     Loaded: loaded (\/lib\/systemd\/system\/code-server.service; enabled; vendor preset: enabled)\n     Active: active (running) since Sun 2022-04-17 14:04:39 UTC; 4min 43s ago\n   Main PID: 53685 (node)\n      Tasks: 22 (limit: 4617)\n     Memory: 41.6M\n     CGroup: \/system.slice\/code-server.service\n             \u251c\u250053685 \/opt\/code-server\/lib\/node \/opt\/code-server --host 0.0.0.0 --user-data-dir \/opt\/code-server-data --auth password\n             \u2514\u250053715 \/opt\/code-server\/lib\/node \/opt\/code-server --host 0.0.0.0 --user-data-dir \/opt\/code-server-data --auth password\n\nApr 17 14:04:39 test.vps systemd[1]: Started code-server.\nApr 17 14:04:42 test.vps code-server[53685]: [2022-04-17T14:04:42.130Z] info  code-server 4.3.0 09bc30027a7fbba170f907a527eaa9f7219fe739\nApr 17 14:04:42 test.vps code-server[53685]: [2022-04-17T14:04:42.134Z] info  Using user-data-dir \/opt\/code-server-data\nApr 17 14:04:42 test.vps code-server[53685]: [2022-04-17T14:04:42.193Z] info  Using config file ~\/.config\/code-server\/config.yaml\nApr 17 14:04:42 test.vps code-server[53685]: [2022-04-17T14:04:42.193Z] info  HTTP server listening on http:\/\/127.0.0.1:8080\/\nApr 17 14:04:42 test.vps code-server[53685]: [2022-04-17T14:04:42.193Z] info    - Authentication is enabled\nApr 17 14:04:42 test.vps code-server[53685]: [2022-04-17T14:04:42.193Z] info      - Using password from $PASSWORD\nApr 17 14:04:42 test.vps code-server[53685]: [2022-04-17T14:04:42.193Z] info    - Not serving HTTPS\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Create Apache Virtual Host File and Reverse Proxy<\/h2>\n\n\n\n<p>We are going to create Apache virtual host and set up a reverse proxy for the code-server IDE to be accessible via a domain name.<\/p>\n\n\n\n<p>Create a code-server configuration file.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">touch \/etc\/apache2\/sites-available\/code-server.conf<\/pre>\n\n\n\n<p>Open the configuration file and paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> &lt;VirtualHost *:80&gt;\n    ServerName YourDomain.com\n\n    ProxyRequests Off\n    &lt;Proxy *&gt;\n    Order deny,allow\n    Allow from all\n    &lt;\/Proxy&gt;\n\n    ProxyPass \/ http:\/\/YourDomain.com:8080\/\n    ProxyPassReverse \/ http:\/\/YourDomain.com:8080\/\n    &lt;Location \/&gt;\n    Order allow,deny\n    Allow from all\n    &lt;\/Location&gt;\n&lt;\/VirtualHost&gt;\n<\/pre>\n\n\n\n<p>Save the file, close it and check the Apache syntax:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apachectl -t<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@vps:~# apachectl -t\nSyntax OK\n<\/pre>\n\n\n\n<p>Enable Proxy mode and restart the Apache service<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo a2enmod proxy\n\nsudo a2enmod proxy_http\n\nsudo systemctl restart apache2\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Access Code-Server IDE in Browser<\/h2>\n\n\n\n<p>Once, the service is up and running, you can access the code-server IDE GUI via your domain name at <strong>http:\/\/YourDomainName<\/strong><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/install-code-server-ide-platform-on-ubuntu-20-04.jpg\"><img decoding=\"async\" width=\"962\" height=\"462\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/install-code-server-ide-platform-on-ubuntu-20-04.jpg\" alt=\"\" class=\"wp-image-1728\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/install-code-server-ide-platform-on-ubuntu-20-04.jpg 962w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/install-code-server-ide-platform-on-ubuntu-20-04-470x226.jpg 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/install-code-server-ide-platform-on-ubuntu-20-04-768x369.jpg 768w\" sizes=\"(max-width: 962px) 100vw, 962px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>Enter the password you set before for the user in the previous step and hit on the blue &#8220;<strong>Submit<\/strong>&#8221; button.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/installing-code-server-ide-platform-on-ubuntu-20-04.jpg\"><img decoding=\"async\" width=\"861\" height=\"438\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/installing-code-server-ide-platform-on-ubuntu-20-04.jpg\" alt=\"\" class=\"wp-image-1729\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/installing-code-server-ide-platform-on-ubuntu-20-04.jpg 861w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/installing-code-server-ide-platform-on-ubuntu-20-04-470x239.jpg 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/installing-code-server-ide-platform-on-ubuntu-20-04-768x391.jpg 768w\" sizes=\"(max-width: 861px) 100vw, 861px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>You should see the following screen:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><a href=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/code-server-ide-platform-on-ubuntu-20-04.jpg\"><img decoding=\"async\" width=\"970\" height=\"446\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/code-server-ide-platform-on-ubuntu-20-04-970x446.jpg\" alt=\"\" class=\"wp-image-1730\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/code-server-ide-platform-on-ubuntu-20-04-970x446.jpg 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/code-server-ide-platform-on-ubuntu-20-04-470x216.jpg 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/code-server-ide-platform-on-ubuntu-20-04-768x353.jpg 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/code-server-ide-platform-on-ubuntu-20-04.jpg 1024w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/a><\/figure>\n<\/div>\n\n\n<p>We believe our post today has successfully guided you on how to install code-server IDE platform on Ubuntu 20.04 without any hassles. <\/p>\n\n\n\n<p>We&#8217;re now eager to hear your thoughts. Did we skip something you think is important or is there any step that you need more explanation on? Are there any other subjects or tutorials you wish we&#8217;d focus on next? <\/p>\n\n\n\n<p>Whatever your thoughts are, we&#8217;d love to hear from you in the comments below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we are going to install the code-server IDE platform on Ubuntu 20.04 OS. Code-Server IDE is a development platform running remotely on a server that can be accessed via a web browser. The main purpose of this code IDE platform is to be accessible from everywhere for better collaboration between developers. It &#8230; <a title=\"How to Install Code-Server IDE platform on Ubuntu 20.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/\" aria-label=\"More on How to Install Code-Server IDE platform on Ubuntu 20.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1731,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,208],"tags":[168,249,210],"class_list":["post-1727","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-ubuntu","tag-how-to-install","tag-ide","tag-ubuntu-20-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Code-Server IDE platform on Ubuntu 20.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial, we are going to install the code-server IDE platform on Ubuntu 20.04 OS. Code-Server IDE is a development platform running remotely on a\" \/>\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-code-server-ide-platform-on-ubuntu-20-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 Code-Server IDE platform on Ubuntu 20.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we are going to install the code-server IDE platform on Ubuntu 20.04 OS. Code-Server IDE is a development platform running remotely on a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-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=\"2022-05-15T17:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-29T16:39:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\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=\"5 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-code-server-ide-platform-on-ubuntu-20-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Code-Server IDE platform on Ubuntu 20.04\",\"datePublished\":\"2022-05-15T17:30:00+00:00\",\"dateModified\":\"2023-08-29T16:39:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/\"},\"wordCount\":538,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg\",\"keywords\":[\"how to install\",\"IDE\",\"ubuntu 20.04\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/\",\"name\":\"How to Install Code-Server IDE platform on Ubuntu 20.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg\",\"datePublished\":\"2022-05-15T17:30:00+00:00\",\"dateModified\":\"2023-08-29T16:39:31+00:00\",\"description\":\"In this tutorial, we are going to install the code-server IDE platform on Ubuntu 20.04 OS. Code-Server IDE is a development platform running remotely on a\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg\",\"width\":742,\"height\":372,\"caption\":\"how to install code server ide platform on ubuntu 20.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Code-Server IDE platform on Ubuntu 20.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 Code-Server IDE platform on Ubuntu 20.04 | LinuxCloudVPS Blog","description":"In this tutorial, we are going to install the code-server IDE platform on Ubuntu 20.04 OS. Code-Server IDE is a development platform running remotely on a","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-code-server-ide-platform-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Code-Server IDE platform on Ubuntu 20.04 | LinuxCloudVPS Blog","og_description":"In this tutorial, we are going to install the code-server IDE platform on Ubuntu 20.04 OS. Code-Server IDE is a development platform running remotely on a","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2022-05-15T17:30:00+00:00","article_modified_time":"2023-08-29T16:39:31+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-code-server-ide-platform-on-ubuntu-20-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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Code-Server IDE platform on Ubuntu 20.04","datePublished":"2022-05-15T17:30:00+00:00","dateModified":"2023-08-29T16:39:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/"},"wordCount":538,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg","keywords":["how to install","IDE","ubuntu 20.04"],"articleSection":["Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/","name":"How to Install Code-Server IDE platform on Ubuntu 20.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg","datePublished":"2022-05-15T17:30:00+00:00","dateModified":"2023-08-29T16:39:31+00:00","description":"In this tutorial, we are going to install the code-server IDE platform on Ubuntu 20.04 OS. Code-Server IDE is a development platform running remotely on a","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/05\/how-to-install-code-server-ide-platform-on-ubuntu-20-04.jpg","width":742,"height":372,"caption":"how to install code server ide platform on ubuntu 20.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-code-server-ide-platform-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Code-Server IDE platform on Ubuntu 20.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\/1727","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=1727"}],"version-history":[{"count":2,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1727\/revisions"}],"predecessor-version":[{"id":1977,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1727\/revisions\/1977"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1731"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1727"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1727"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1727"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}