{"id":609,"date":"2021-09-22T19:06:47","date_gmt":"2021-09-22T17:06:47","guid":{"rendered":"https:\/\/irg-net.com\/?p=609"},"modified":"2021-10-26T14:26:56","modified_gmt":"2021-10-26T12:26:56","slug":"how-to-install-xrdp-server-remote-desktop-on-centos-8","status":"publish","type":"post","link":"https:\/\/irg-net.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/","title":{"rendered":"How to Install Xrdp Server (Remote Desktop) on CentOS 8"},"content":{"rendered":"\n<p>Xrdp is an open-source implementation of the Microsoft Remote Desktop Protocol (RDP) that allows you to graphically control a remote system. With RDP, you can log in to the remote machine and create a real desktop session the same as if you had logged in to a local machine.<\/p>\n\n\n\n<p>This tutorial explains how to install and configure Xrdp server on CentOS 8.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Desktop Environment<\/h2>\n\n\n\n<p>Generally, Linux servers don\u2019t have a desktop environment installed. If the machine you want to connect to doesn\u2019t have GUI, the first step is to install it. Otherwise, skip this step.<\/p>\n\n\n\n<p>Gnome is the default desktop environment in CentOS 8. To install Gnome on your remote machine, run the following command<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo dnf groupinstall \"Server with GUI\"<\/code><\/pre>\n\n\n\n<p>Depending on your system, downloading and installing the Gnome packages and dependencies may take some time.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Xrdp<\/h2>\n\n\n\n<p>Xrdp is available in the EPEL software repository. If EPEL is not enabled on your system, enable it by typing:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo dnf install epel-release<\/code><\/pre>\n\n\n\n<p>Install the Xrdp package:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo dnf install xrdp <\/code><\/pre>\n\n\n\n<p>When the installation process is complete, start the Xrdp service and enable it at boot:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo systemctl enable xrdp --now<\/code><\/pre>\n\n\n\n<p>You can verify that Xrdp is running by typing:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo systemctl status xrdp<\/code><\/pre>\n\n\n\n<p>The output will look something like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:12px\"><code lang=\"python\" class=\"language-python\">\u25cf xrdp.service - xrdp daemon\n   Loaded: loaded (\/usr\/lib\/systemd\/system\/xrdp.service; enabled; vendor preset: disabled)\n   Active: active (running) since Sun 2021-09-02 18:30:43 UTC; 18s ago\n  ...<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Configuring Xrdp<\/h2>\n\n\n\n<p>The configuration files are located in the <strong>\/etc\/xrdp<\/strong> directory. For basic Xrdp connections, you do not need to make any changes to the configuration files. Xrdp uses the default X Window desktop, which in this case, is Gnome.<\/p>\n\n\n\n<p>The main configuration file is named <strong>xrdp.ini<\/strong> . This file is divided into sections and allows you to set global configuration settings such as security and listening addresses and create different xrdp login sessions.<\/p>\n\n\n\n<p>Whenever you make any changes to the configuration file you need to restart the Xrdp service:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo systemctl restart xrdp<\/code><\/pre>\n\n\n\n<p>Xrdp uses <strong>startwm.sh<\/strong> file to launch the X session. If you want to use another X Window desktop, edit this file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configuring Firewall<\/h2>\n\n\n\n<p>By default, Xrdp listens on port <strong>3389<\/strong> on all interfaces. If you run a firewall on your CentOS machine (which you should always do), you\u2019ll need to add a rule to allow traffic on the Xrdp port.<\/p>\n\n\n\n<p>Typically you would want to allow access to the Xrdp server only from a specific IP address or IP range. For example, to allow connections only from the <strong>192.186.1.0\/24<\/strong> range, enter the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo firewall-cmd --new-zone=xrdp --permanent\nsudo firewall-cmd --zone=xrdp --add-port=3389\/tcp --permanent\nsudo firewall-cmd --zone=xrdp --add-source=192.168.1.0\/24 --permanent\nsudo firewall-cmd --reload<\/code><\/pre>\n\n\n\n<p>To allow traffic to port <strong>3389 <\/strong>from anywhere use the commands below. Allowing access from anywhere is highly discouraged for security reasons.<\/p>\n\n\n\n<pre class=\"wp-block-code\" style=\"font-size:14px\"><code lang=\"python\" class=\"language-python\">sudo firewall-cmd --add-port=3389\/tcp --permanent\nsudo firewall-cmd --reload<\/code><\/pre>\n\n\n\n<p>For increased security, you may consider setting up Xrdp to listen only on localhost and creating an <strong>SSH tunnel<\/strong> that securely forwards traffic from your local machine on port <strong>3389<\/strong> to the server on the same port.<\/p>\n\n\n\n<p>Another secure option is to install OpenVPN and connect to the Xrdp server trough the private network.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Connecting to the Xrdp Server <a href=\"https:\/\/linuxize.com\/post\/how-to-install-xrdp-on-centos-8\/#connecting-to-the-xrdp-server\"><\/a><\/h2>\n\n\n\n<p>Now that the Xrdp server is configured, it is time to open your local Xrdp client and connect to the remote CentOS 8 system.<\/p>\n\n\n\n<p>Windows users can use the default RDP client. Type \u201cremote\u201d in the Windows search bar and click on \u201cRemote Desktop Connection\u201d. This will open up the RDP client. In the \u201cComputer\u201d field, type the remote server IP address and click \u201cConnect\u201d.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"887\" height=\"454\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg?resize=887%2C454&#038;ssl=1\" alt=\"\" class=\"wp-image-615\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg?w=887&amp;ssl=1 887w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg?resize=300%2C154&amp;ssl=1 300w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg?resize=768%2C393&amp;ssl=1 768w\" sizes=\"auto, (max-width: 887px) 100vw, 887px\" \/><\/figure>\n\n\n\n<p>On the login screen, enter your username and password and click \u201cOK\u201d.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185102.jpg?resize=314%2C373&#038;ssl=1\" alt=\"\" class=\"wp-image-617\" width=\"314\" height=\"373\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185102.jpg?w=292&amp;ssl=1 292w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185102.jpg?resize=252%2C300&amp;ssl=1 252w\" sizes=\"auto, (max-width: 314px) 100vw, 314px\" \/><\/figure>\n\n\n\n<p>Once logged in, you should see the default Gnome desktop. It should look something like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185305-1.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-618\" srcset=\"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185305-1.jpg?resize=1024%2C576&amp;ssl=1 1024w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185305-1.jpg?resize=300%2C169&amp;ssl=1 300w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185305-1.jpg?resize=768%2C432&amp;ssl=1 768w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185305-1.jpg?resize=1536%2C864&amp;ssl=1 1536w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185305-1.jpg?resize=2048%2C1152&amp;ssl=1 2048w, https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_185305-1.jpg?w=2280&amp;ssl=1 2280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>You can now start interacting with the remote desktop from your local machine using your keyboard and mouse.<\/p>\n\n\n\n<div style=\"height:34px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If you have questions, feel free to leave a comment below. \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Xrdp is an open-source implementation of the Microsoft Remote Desktop Protocol (RDP) that allows you to graphically control a remote system. With RDP, you can log in to the remote machine and create a real desktop session the same as if you had logged in to a local machine. This tutorial explains how to install [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1,20,21],"tags":[],"class_list":["post-609","post","type-post","status-publish","format-standard","hentry","category-blog","category-linux","category-rocky"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Xrdp Server (Remote Desktop) on CentOS 8 - irgNET<\/title>\n<meta name=\"description\" content=\"In this basic tutorial I show you how to install xrdp server for remote desktop on centos8\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Xrdp Server (Remote Desktop) on CentOS 8 - irgNET\" \/>\n<meta property=\"og:description\" content=\"In this basic tutorial I show you how to install xrdp server for remote desktop on centos8\" \/>\n<meta property=\"og:url\" content=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/\" \/>\n<meta property=\"og:site_name\" content=\"irgNET\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-22T17:06:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-26T12:26:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg\" \/>\n<meta name=\"author\" content=\"H. Cemre G\u00fcnay\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@irg_net\" \/>\n<meta name=\"twitter:site\" content=\"@irg_net\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"H. Cemre G\u00fcnay\" \/>\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:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/\"},\"author\":{\"name\":\"H. Cemre G\u00fcnay\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/person\\\/71b46e79e8c12bdc8e610214a6621a66\"},\"headline\":\"How to Install Xrdp Server (Remote Desktop) on CentOS 8\",\"datePublished\":\"2021-09-22T17:06:47+00:00\",\"dateModified\":\"2021-10-26T12:26:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/\"},\"wordCount\":583,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/2021-09-22_184448.jpg\",\"articleSection\":[\"Blog\",\"Linux\",\"Rocky Linux\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/\",\"name\":\"How to Install Xrdp Server (Remote Desktop) on CentOS 8 - irgNET\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/2021-09-22_184448.jpg\",\"datePublished\":\"2021-09-22T17:06:47+00:00\",\"dateModified\":\"2021-10-26T12:26:56+00:00\",\"description\":\"In this basic tutorial I show you how to install xrdp server for remote desktop on centos8\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/2021-09-22_184448.jpg?fit=887%2C454&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/2021-09-22_184448.jpg?fit=887%2C454&ssl=1\",\"width\":887,\"height\":454},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/index.php\\\/how-to-install-xrdp-server-remote-desktop-on-centos-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Xrdp Server (Remote Desktop) on CentOS 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#website\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\",\"name\":\"irgNET\",\"description\":\"a virtual Knowledge Base\",\"publisher\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#organization\",\"name\":\"irg-NET\",\"url\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i2.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i2.wp.com\\\/irg-net.com\\\/wp-content\\\/uploads\\\/2021\\\/06\\\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1\",\"width\":2048,\"height\":2048,\"caption\":\"irg-NET\"},\"image\":{\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/irg_net\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/h-cemre-g\u00fcnay-2b61601b4\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC8GknhO5YMAkAoVxppu6aaQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/irgnet-ga3w6nfbvw.live-website.com\\\/#\\\/schema\\\/person\\\/71b46e79e8c12bdc8e610214a6621a66\",\"name\":\"H. Cemre G\u00fcnay\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g\",\"caption\":\"H. Cemre G\u00fcnay\"},\"sameAs\":[\"http:\\\/\\\/192.168.34.155\\\/wordpress\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Xrdp Server (Remote Desktop) on CentOS 8 - irgNET","description":"In this basic tutorial I show you how to install xrdp server for remote desktop on centos8","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:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Xrdp Server (Remote Desktop) on CentOS 8 - irgNET","og_description":"In this basic tutorial I show you how to install xrdp server for remote desktop on centos8","og_url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/","og_site_name":"irgNET","article_published_time":"2021-09-22T17:06:47+00:00","article_modified_time":"2021-10-26T12:26:56+00:00","og_image":[{"url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg","type":"","width":"","height":""}],"author":"H. Cemre G\u00fcnay","twitter_card":"summary_large_image","twitter_creator":"@irg_net","twitter_site":"@irg_net","twitter_misc":{"Written by":"H. Cemre G\u00fcnay","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/#article","isPartOf":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/"},"author":{"name":"H. Cemre G\u00fcnay","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/person\/71b46e79e8c12bdc8e610214a6621a66"},"headline":"How to Install Xrdp Server (Remote Desktop) on CentOS 8","datePublished":"2021-09-22T17:06:47+00:00","dateModified":"2021-10-26T12:26:56+00:00","mainEntityOfPage":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/"},"wordCount":583,"commentCount":0,"publisher":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg","articleSection":["Blog","Linux","Rocky Linux"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/","name":"How to Install Xrdp Server (Remote Desktop) on CentOS 8 - irgNET","isPartOf":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/#primaryimage"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg","datePublished":"2021-09-22T17:06:47+00:00","dateModified":"2021-10-26T12:26:56+00:00","description":"In this basic tutorial I show you how to install xrdp server for remote desktop on centos8","breadcrumb":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/#primaryimage","url":"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg?fit=887%2C454&ssl=1","contentUrl":"https:\/\/i0.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/09\/2021-09-22_184448.jpg?fit=887%2C454&ssl=1","width":887,"height":454},{"@type":"BreadcrumbList","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/index.php\/how-to-install-xrdp-server-remote-desktop-on-centos-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/"},{"@type":"ListItem","position":2,"name":"How to Install Xrdp Server (Remote Desktop) on CentOS 8"}]},{"@type":"WebSite","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#website","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/","name":"irgNET","description":"a virtual Knowledge Base","publisher":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#organization","name":"irg-NET","url":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/logo\/image\/","url":"https:\/\/i2.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/06\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1","contentUrl":"https:\/\/i2.wp.com\/irg-net.com\/wp-content\/uploads\/2021\/06\/cropped-FINAL-Removed-Alpha.png?fit=2048%2C2048&ssl=1","width":2048,"height":2048,"caption":"irg-NET"},"image":{"@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/irg_net","https:\/\/www.linkedin.com\/in\/h-cemre-g\u00fcnay-2b61601b4\/","https:\/\/www.youtube.com\/channel\/UC8GknhO5YMAkAoVxppu6aaQ"]},{"@type":"Person","@id":"https:\/\/irgnet-ga3w6nfbvw.live-website.com\/#\/schema\/person\/71b46e79e8c12bdc8e610214a6621a66","name":"H. Cemre G\u00fcnay","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/15f5d90a0ec651cb5003605e56e8ba104f93bc11230562284db56c845df9d54d?s=96&r=g","caption":"H. Cemre G\u00fcnay"},"sameAs":["http:\/\/192.168.34.155\/wordpress"]}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/609","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/comments?post=609"}],"version-history":[{"count":18,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/609\/revisions"}],"predecessor-version":[{"id":729,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/posts\/609\/revisions\/729"}],"wp:attachment":[{"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/media?parent=609"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/categories?post=609"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/irg-net.com\/index.php\/wp-json\/wp\/v2\/tags?post=609"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}