{"id":1245,"date":"2019-01-03T21:36:23","date_gmt":"2019-01-03T21:36:23","guid":{"rendered":"https:\/\/draculaservers.com\/tutorials\/?p=1245"},"modified":"2021-11-14T20:57:20","modified_gmt":"2021-11-14T20:57:20","slug":"install-x2go-debian-remote-desktop","status":"publish","type":"post","link":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/","title":{"rendered":"How to Set Up a Remote Desktop with X2Go on Debian 9"},"content":{"rendered":"<p>Nowadays, Windows Servers are the norm when talking about Remote Desktop Connection. The great thing is that you don&#8217;t have to be locked into just using Windows when wanting to control a server via Remote Desktop.<\/p>\n<p>You can easily get a Linux server, running Ubuntu\/Debian\/Centos, and install a desktop environment on it and a remote desktop package, and a way you go. On top of that, <strong>Linux servers are a lot more lightweight and a lot cheaper too<\/strong>!<\/p>\n<p>Some of the most popular remote desktop solutions for Linux are <strong>VNC<\/strong>, <strong>xRDP<\/strong> or <strong>NoMachine<\/strong>. Although these are great solutions, I find them lacking. I&#8217;m not saying they&#8217;re not good, it&#8217;s just that in my experience they&#8217;ve been either sluggish or buggy &#8211; maybe I&#8217;m wrong.<\/p>\n<blockquote class=\"note\"><p><small>If you&#8217;d prefer to use Ubuntu 18.04 instead of Debian 9, you can check out our tutorial on how to <a href=\"https:\/\/draculaservers.com\/tutorials\/install-x2go-ubuntu-remote-desktop\/\">Install X2Go on Ubuntu 18.04<\/a><\/small><\/p><\/blockquote>\n\n<h2 id=\"introduction\">Introduction<\/h2>\n<p>What I have found, however, to be a great solution for Remote Desktop Connection on Linux (in our current case, Debian 9) is X2Go.<\/p>\n<p>As I&#8217;ve mentioned in our other tutorial on how to install and use X2Go on Ubuntu 18.04, I don&#8217;t know why X2Go isn&#8217;t more popular.<\/p>\n<p>It&#8217;s easy to set up and it provides an super smooth experience. I admit, sometimes, depending on the OS, it&#8217;ll give me some trouble installing it. But I&#8217;ve been using it for years and haven&#8217;t found a better alternative.<\/p>\n<p>Right, let&#8217;s get to installing X2Go on Debian 9.<\/p>\n<h2 id=\"requirements\">Requirements<\/h2>\n<ul>\n<li>While not required, it is recommended that you&#8217;re acting as a <code>non-root sudo user<\/code>.<\/li>\n<li>A server running Debian 9. We recommend a minimum of 2GB RAM, but it would be even better with 4GB+ RAM.<\/li>\n<\/ul>\n<blockquote class=\"note\"><p><small><strong>NOTE:<\/strong> The following steps in this tutorial will assume that you have a <code>sudo user<\/code> set up on Debian 9, as such, the commands will contain <code>sudo<\/code> at the beginning. If you insist on acting as <code>root<\/code>, then simply run the commands without <code>sudo<\/code> at the beginning of the commands.<\/small><\/p><\/blockquote>\n<h2 id=\"step-1-install-x2go-on-debian-9\">Step 1 \u2013 Install X2Go on Debian 9<\/h2>\n<p>First of all we&#8217;d have to add the X2Go Repository GPG Keys, but we&#8217;d most likely encounter an error from Debian 9. Although it provides a fully operational <code>gnugpg<\/code> command in the minimal installation, it still requires <code>dirmngr<\/code> to perform network operations for <em>managing and downloading certificates<\/em>. As such, we&#8217;ll first have to install <code>dirmngr<\/code>:<\/p>\n<pre><code>$ sudo apt install dirmngr <\/code><\/pre>\n<p>Now we can add the X2Go Repository GPG Keys to our system:<\/p>\n<pre><code>$ sudo apt-key adv --recv-keys --keyserver keys.gnupg.net E1F958385BFE2B6E<\/code><\/pre>\n<p>Next, we&#8217;ll add the X2Go repositories. To do this, we&#8217;ll open the file <code>\/etc\/apt\/sources.list.d\/x2go.list<\/code> using our favorite text editor, and we&#8217;ll add the X2Go Repository.<\/p>\n<p>I&#8217;ll use <strong>nano<\/strong> to open the file:<\/p>\n<pre><code>$ nano \/etc\/apt\/sources.list.d\/x2go.list<\/code><\/pre>\n<p>And add the following lines in the file:<\/p>\n<pre><code>deb http:\/\/packages.x2go.org\/debian stretch extras main\ndeb-src http:\/\/packages.x2go.org\/debian stretch extras main<\/code><\/pre>\n<p>Save and close the file when you&#8217;re done.<\/p>\n<p>Finally, run the following command to install X2Go on your server:<\/p>\n<pre><code>$ sudo apt-get install x2goserver x2goserver-xsession<\/code><\/pre>\n<h2 id=\"step-2-install-your-preferred-desktop-environment\">Step 2 \u2013 Install Your Preferred Desktop Environment<\/h2>\n<p>You can use multiple desktop environments. All you have to do is have them installed, and you&#8217;ll be able to select which one you want to use, when connecting to the server via X2Go.<\/p>\n<p>In this tutorial we&#8217;ll be installing and using 3 of them, which are among the most popular &#8211; <strong>XFCE<\/strong>, <strong>LXDE<\/strong> and <strong>MATE<\/strong>. There are quite a few more options, but some are resource intensive and some may not work with your current OS or the current X2Go version. What I&#8217;ve found is that XFCE, LXDE and MATE have always worked for me over the years.<\/p>\n<p>It&#8217;s worth noting that <strong>XFCE<\/strong> and <strong>LXDE<\/strong> are among the most lightweight desktop environments, so they&#8217;re great for when you want a more resource-friendly solution.<\/p>\n<p>We&#8217;ll also be installing <strong>Minimum Desktop Environment<\/strong>, which means that we&#8217;ll just install the core features, and you can install additional packages only if you need them.<\/p>\n<p>Run one of the following commands to install your preferred desktop environment. You can also run all 3 if you want to have all of the desktop environments installed.<\/p>\n<p><strong># Installing XFCE<\/strong><\/p>\n<pre><code>$ sudo apt-get install xfce4<\/code><\/pre>\n<p><strong># Installing LXDE<\/strong><\/p>\n<pre><code>$ sudo apt-get install lxde<\/code><\/pre>\n<p><strong># Installing MATE<\/strong><\/p>\n<pre><code>$ sudo apt-get install mate-core mate-desktop-environment mate-notification-daemon<\/code><\/pre>\n<h2 id=\"step-3-install-x2go-on-your-computer\">Step 3 \u2013 Install X2Go on your Computer<\/h2>\n<p>Now that we\u2019ve got our desktop environment installed, go ahead and download the X2Go client from their page at <a class=\"url\" href=\"https:\/\/wiki.x2go.org\/doku.php\" target=\"_blank\" rel=\"noopener\">https:\/\/wiki.x2go.org\/doku.php<\/a><\/p>\n<ul>\n<li>For Windows look for the link to <strong>Windows installer<\/strong><\/li>\n<li>For OS X, depending on your version, look for <strong>OS X 10.xx and higher DMG<\/strong><\/li>\n<\/ul>\n<p><em>(The reason I\u2019m not linking you directly is because there will be new releases, most likely, and this way you\u2019ll get the latest versions when you\u2019re working \u2013 through this tutorial)<\/em><\/p>\n<ul>\n<li>If you\u2019re on Debian or Ubuntu you can install X2Go Client by running the following command:<\/li>\n<\/ul>\n<pre><code>$ sudo apt-get install x2goclient<\/code><\/pre>\n<h2 id=\"step-4-connecting-to-the-remote-desktop\">Step 4 \u2013 Connecting to the Remote Desktop<\/h2>\n<p>You can now run the X2Go client, that you&#8217;ve installed on your computer. The first time you run it, you should greeted with the following window, where you&#8217;re prompted to create your first session. If you don&#8217;t see this window, then you can create a new session by going in the top menu, in the upper left corner, and clicking on <strong>Session -&gt; New Session<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1524\" height=\"925\" class=\"aligncenter size-full wp-image-1246\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Create-New-X2Go-Session-Debian-9.png\" alt=\"create_new_x2go_session_debian_9\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Create-New-X2Go-Session-Debian-9.png 1524w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Create-New-X2Go-Session-Debian-9-300x182.png 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Create-New-X2Go-Session-Debian-9-1024x622.png 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Create-New-X2Go-Session-Debian-9-768x466.png 768w\" sizes=\"auto, (max-width: 1524px) 100vw, 1524px\" \/><\/p>\n<p>In the <strong>Session name<\/strong> field you can name your session for ease of access. As you can see on the right, I\u2019ve created multiple sessions to connect to the same VPS, and named them according to what desktop environment I\u2019m using. It is not a vital thing for connecting to your VPS, it is just for your convenience.<\/p>\n<p>In the <strong>Host<\/strong> field enter your server\u2019s hostname or IP address.<\/p>\n<p>In the <strong>Login<\/strong> field enter the user you used for your SSH connection.<\/p>\n<p>In the <strong>Session type<\/strong> dropdown select the option that matches the desktop environment you installed. If you&#8217;ve followed our tutorial so far, you can select <strong>XFCE<\/strong>, <strong>LXDE<\/strong> or <strong>MATE<\/strong>, depending on which you chose to install on your server.<\/p>\n<p>You can also change the <strong>session icon<\/strong>, by clicking on the baby seal image, where it says <code>&lt;&lt; change icon<\/code> and then browsing to the image you want assigned.<\/p>\n<p>Click OK to save the session.<\/p>\n<p>With your session saved, you should now be able to click it, on the right of the X2Go window. A small prompt will appear where you&#8217;ll already have your user filled in. You&#8217;ll just have to enter your SSH password and confirm to connect.<\/p>\n<p>It&#8217;ll take a few seconds to connect, and when it&#8217;s done you should see a window to your remote desktop, with the GUI of your selected desktop environment.<\/p>\n<p>Here&#8217;s how each of the 3 desktop environments, that we&#8217;re testing out, look like:<\/p>\n<h3 id=\"xfce\"><strong>XFCE<\/strong><\/h3>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1440\" height=\"927\" class=\"aligncenter size-full wp-image-1247\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-XFCE.jpg\" alt=\"x2go_xfce\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-XFCE.jpg 1440w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-XFCE-300x193.jpg 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-XFCE-1024x659.jpg 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-XFCE-768x494.jpg 768w\" sizes=\"auto, (max-width: 1440px) 100vw, 1440px\" \/><\/p>\n<h3 id=\"lxde\"><strong>LXDE<\/strong><\/h3>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1436\" height=\"927\" class=\"aligncenter size-full wp-image-1248\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-LXDE.jpg\" alt=\"x2go_lxde\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-LXDE.jpg 1436w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-LXDE-300x194.jpg 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-LXDE-1024x661.jpg 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-LXDE-768x496.jpg 768w\" sizes=\"auto, (max-width: 1436px) 100vw, 1436px\" \/><\/p>\n<h3 id=\"mate\"><strong>MATE<\/strong><\/h3>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1440\" height=\"928\" class=\"aligncenter size-full wp-image-1249\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-MATE.jpg\" alt=\"x2go_mate\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-MATE.jpg 1440w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-MATE-300x193.jpg 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-MATE-1024x660.jpg 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-MATE-768x495.jpg 768w\" sizes=\"auto, (max-width: 1440px) 100vw, 1440px\" \/><\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>Well done. You now should have a lightweight Debian Remote Desktop using X2Go, that&#8217;s always online, that&#8217;ll provide a smooth experience to get your work done.<\/p>\n<p>Should you want more info on using X2Go, then do check out <a href=\"https:\/\/wiki.x2go.org\/doku.php\" target=\"_blank\" rel=\"noopener\">X2Go&#8217;s Official Documentation<\/a>.<\/p>\n<p>If you&#8217;ve had any issues at all, when following this tutorial, then don&#8217;t hesitate to let us know in the comments or by contacting us, and we&#8217;ll get back to you as soon as possible\/<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nowadays, Windows Servers are the norm when talking about Remote Desktop Connection. The great thing is that you don&#8217;t have to be locked into just using Windows when wanting to control a server via Remote Desktop. You can easily get a Linux server, running Ubuntu\/Debian\/Centos, and install a desktop environment on it and a remote [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1250,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[67,64],"tags":[68,33,32],"class_list":["post-1245","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-open-source","tag-debian","tag-remote-desktop","tag-x2go"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"featured_image_urls_v2":{"full":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png",1024,512,false],"thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-150x150.png",150,150,true],"medium":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-300x150.png",300,150,true],"medium_large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-768x384.png",768,384,true],"large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png",1024,512,false],"1536x1536":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png",1024,512,false],"2048x2048":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png",1024,512,false],"pk-small":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-80x80.png",80,80,true],"pk-thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9-300x225.png",300,225,true]},"post_excerpt_stackable_v2":"<p>Nowadays, Windows Servers are the norm when talking about Remote Desktop Connection. The great thing is that you don&#8217;t have to be locked into just using Windows when wanting to control a server via Remote Desktop. You can easily get a Linux server, running Ubuntu\/Debian\/Centos, and install a desktop environment on it and a remote desktop package, and a way you go. On top of that, Linux servers are a lot more lightweight and a lot cheaper too! Some of the most popular remote desktop solutions for Linux are VNC, xRDP or NoMachine. Although these are great solutions, I find&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/draculaservers.com\/tutorials\/category\/debian\/\" rel=\"category tag\">Debian<\/a>, <a href=\"https:\/\/draculaservers.com\/tutorials\/category\/open-source\/\" rel=\"category tag\">Open-source<\/a>","author_info_v2":{"name":"Vlad","url":"https:\/\/draculaservers.com\/tutorials\/author\/vlad\/"},"comments_num_v2":"1 comment","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Connect to Debian 9 Remote Desktop using X2Go - Dracula Servers<\/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:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Connect to Debian 9 Remote Desktop using X2Go - Dracula Servers\" \/>\n<meta property=\"og:description\" content=\"Nowadays, Windows Servers are the norm when talking about Remote Desktop Connection. The great thing is that you don&#8217;t have to be locked into just using Windows when wanting to control a server via Remote Desktop. You can easily get a Linux server, running Ubuntu\/Debian\/Centos, and install a desktop environment on it and a remote [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/\" \/>\n<meta property=\"og:site_name\" content=\"Dracula Servers Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-03T21:36:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-14T20:57:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vlad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vlad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/\"},\"author\":{\"name\":\"Vlad\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\"},\"headline\":\"How to Set Up a Remote Desktop with X2Go on Debian 9\",\"datePublished\":\"2019-01-03T21:36:23+00:00\",\"dateModified\":\"2021-11-14T20:57:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/\"},\"wordCount\":1182,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png\",\"keywords\":[\"Debian\",\"Remote Desktop\",\"X2Go\"],\"articleSection\":[\"Debian\",\"Open-source\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/\",\"name\":\"Connect to Debian 9 Remote Desktop using X2Go - Dracula Servers\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png\",\"datePublished\":\"2019-01-03T21:36:23+00:00\",\"dateModified\":\"2021-11-14T20:57:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/#primaryimage\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png\",\"width\":1024,\"height\":512,\"caption\":\"install_x2go_remote_desktop_debian_9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-x2go-debian-remote-desktop\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set Up a Remote Desktop with X2Go on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"name\":\"Dracula Servers Tutorials\",\"description\":\"Dedicated Servers\",\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\",\"name\":\"Dracula Servers\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"width\":1625,\"height\":200,\"caption\":\"Dracula Servers\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\",\"name\":\"Vlad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"caption\":\"Vlad\"},\"description\":\"Tech Support\",\"sameAs\":[\"https:\\\/\\\/draculaservers.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Connect to Debian 9 Remote Desktop using X2Go - Dracula Servers","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:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/","og_locale":"en_US","og_type":"article","og_title":"Connect to Debian 9 Remote Desktop using X2Go - Dracula Servers","og_description":"Nowadays, Windows Servers are the norm when talking about Remote Desktop Connection. The great thing is that you don&#8217;t have to be locked into just using Windows when wanting to control a server via Remote Desktop. You can easily get a Linux server, running Ubuntu\/Debian\/Centos, and install a desktop environment on it and a remote [&hellip;]","og_url":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/","og_site_name":"Dracula Servers Tutorials","article_published_time":"2019-01-03T21:36:23+00:00","article_modified_time":"2021-11-14T20:57:20+00:00","og_image":[{"width":1024,"height":512,"url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png","type":"image\/png"}],"author":"Vlad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Vlad","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/#article","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/"},"author":{"name":"Vlad","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e"},"headline":"How to Set Up a Remote Desktop with X2Go on Debian 9","datePublished":"2019-01-03T21:36:23+00:00","dateModified":"2021-11-14T20:57:20+00:00","mainEntityOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/"},"wordCount":1182,"commentCount":1,"publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png","keywords":["Debian","Remote Desktop","X2Go"],"articleSection":["Debian","Open-source"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/","url":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/","name":"Connect to Debian 9 Remote Desktop using X2Go - Dracula Servers","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/#primaryimage"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png","datePublished":"2019-01-03T21:36:23+00:00","dateModified":"2021-11-14T20:57:20+00:00","breadcrumb":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/#primaryimage","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/How-to-Set-Up-a-Remote-Desktop-with-X2Go-on-Debian-9.png","width":1024,"height":512,"caption":"install_x2go_remote_desktop_debian_9"},{"@type":"BreadcrumbList","@id":"https:\/\/draculaservers.com\/tutorials\/install-x2go-debian-remote-desktop\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/draculaservers.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"How to Set Up a Remote Desktop with X2Go on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/draculaservers.com\/tutorials\/#website","url":"https:\/\/draculaservers.com\/tutorials\/","name":"Dracula Servers Tutorials","description":"Dedicated Servers","publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/draculaservers.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/draculaservers.com\/tutorials\/#organization","name":"Dracula Servers","url":"https:\/\/draculaservers.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","width":1625,"height":200,"caption":"Dracula Servers"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e","name":"Vlad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","caption":"Vlad"},"description":"Tech Support","sameAs":["https:\/\/draculaservers.com"]}]}},"_links":{"self":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1245","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/comments?post=1245"}],"version-history":[{"count":2,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1245\/revisions"}],"predecessor-version":[{"id":2170,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1245\/revisions\/2170"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media\/1250"}],"wp:attachment":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media?parent=1245"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/categories?post=1245"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/tags?post=1245"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}