<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>remore Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/remore/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Fri, 09 Jul 2021 15:36:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Install Xrdp on Ubuntu 20.04 / Debian 10</title>
		<link>https://www.osradar.com/install-xrdp-ubuntu-debian/</link>
					<comments>https://www.osradar.com/install-xrdp-ubuntu-debian/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 13 Jul 2021 05:35:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[remore]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28373</guid>

					<description><![CDATA[<p>Hello friends. In this simple post, you will learn how to install XRDP on Ubuntu 20.04 / Debian 10. This tool will allow Windows clients to remotely connect to Ubuntu Fundamental for technical support tasks. Xrdp is an open-source implementation of RDP (Remote Desktop Protocol), the protocol used by Windows Terminal Services for native Windows [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-xrdp-ubuntu-debian/">Install Xrdp on Ubuntu 20.04 / Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello friends. In this simple post, you will learn how to install XRDP on Ubuntu 20.04 / Debian 10. This tool will allow Windows clients to remotely connect to Ubuntu Fundamental for technical support tasks.</p>



<p>Xrdp is an open-source implementation of RDP (Remote Desktop Protocol), the protocol used by <a href="https://www.osradar.com/tag/windows" target="_blank" rel="noreferrer noopener">Windows</a> Terminal Services for native Windows desktop connectivity. The xrdp package provides RDP functionality, along with a server capable of accepting connections from rdesktop and Windows Terminal Server clients. One of the main advantages of Xrdp is that all of its communications are encrypted by default,</p>



<p>On the other hand, we live in an age where there is a lot of homework and remote assistance is becoming more and more important. And unfortunately, many people still use Windows, and having Ubuntu 20.04 or Debian 10 compatible with Windows for remote assistance is something that can be useful.</p>



<h2 id="install-xrdp-on-ubuntu-20.04"><a name="install-xrdp-on-ubuntu-20.04" href="#install-xrdp-on-ubuntu-20.04"></a>Install Xrdp on Ubuntu 20.04 / Debian</h2>



<p><strong>For Ubuntu Only:</strong></p>



<p>Fortunately, the package is available from the official Ubuntu repositories but in the multiverse section.</p>



<p>So, open the Ubuntu repository configuration file and make sure it’s enabled</p>



<pre class="wp-block-preformatted">deb http://archive.ubuntu.com/ubuntu focal main restricted universe multiverse</pre>



<p>so that it will be enabled. Save the changes if you made them and <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/" target="_blank" rel="noreferrer noopener">refresh apt.</a></p>



<pre class="wp-block-preformatted">sudo apt update</pre>



<p><strong>Ubuntu / Debian</strong></p>



<p>And after that, you will be able to install Xrdp without any problems.</p>



<pre class="wp-block-preformatted">sudo apt install xrdp</pre>



<p>At the end of the installation, a system service will be added that you can manage with <a href="https://www.osradar.com/the-linux-systemctl-command/" target="_blank" rel="noreferrer noopener">the command <code>systemctl</code>.</a></p>



<p>Check the status of the service by running:</p>



<pre class="wp-block-preformatted">sudo systemctl status xrdp</pre>



<p>And check that everything is OK</p>



<h2 id="configuring-xrdp-on-ubuntu-20.04"><a name="configuring-xrdp-on-ubuntu-20.04" href="#configuring-xrdp-on-ubuntu-20.04"></a>Configuring Xrdp on Ubuntu 20.04 / Debian 10</h2>



<p>To increase security Xrdp requires that we create a new system user dedicated to the program.</p>



<pre class="wp-block-preformatted">sudo useadd xrdpuser -G sudo</pre>



<p>And then assign a password to it:</p>



<pre class="wp-block-preformatted">sudo passwd xrdpuser</pre>



<p>The application runs on port <code>3389</code> which you have to make sure to open in the Firewall.</p>



<p>Now you have to make some configurations in Xrdp for it, edit it.</p>



<pre class="wp-block-preformatted">sudo nano /etc/xrdp/xrdp.ini</pre>



<p>And add these changes</p>



<pre class="wp-block-preformatted">max_bpp=128
crypt_level=low
xserverbpp=128</pre>



<p>At the end add this one:</p>



<pre class="wp-block-preformatted">use_compression=yes</pre>



<p>Save the changes, close the editor and restart the service.</p>



<pre class="wp-block-preformatted">sudo systemctl restart xrdp</pre>



<p>Now any computer can remotely access your computer.</p>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>In this post, you learned how to install Xrdp but not only that but you make it ready to start all the remote assistance process including from the Windows system.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-xrdp-ubuntu-debian/">Install Xrdp on Ubuntu 20.04 / Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-xrdp-ubuntu-debian/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
