<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Herman</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Herman"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Herman"/>
	<updated>2026-04-30T13:51:35Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Remote_Desktop_Server&amp;diff=27793</id>
		<title>Remote Desktop Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Remote_Desktop_Server&amp;diff=27793"/>
		<updated>2024-11-11T07:46:34Z</updated>

		<summary type="html">&lt;p&gt;Herman: /* Remote Desktop Server Based on XRDP and xorgxrdp */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Remote Desktop Server Based on XRDP and xorgxrdp ==&lt;br /&gt;
&lt;br /&gt;
This was tested and works for v 3.17.2 with [[Xfce]] as the desktop.&lt;br /&gt;
&lt;br /&gt;
First ensure the desktop is working without remote access (if feasible)&lt;br /&gt;
&lt;br /&gt;
Install XRDP and xorgxrdp&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; apk add xrdp xorgxrdp}}&lt;br /&gt;
&lt;br /&gt;
Start the necessary services:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; rc-service xrdp start&lt;br /&gt;
&amp;amp;#35; rc-service xrdp-sesman start}}&lt;br /&gt;
&lt;br /&gt;
After testing this works you may set the services to start automatically:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; rc-update add xrdp&lt;br /&gt;
&amp;amp;#35; rc-update add xrdp-sesman}}&lt;br /&gt;
&lt;br /&gt;
That should be all that is needed to connect from a Windows client with its default &amp;quot;Remote Desktop&amp;quot; client, the xrdp configuration file though will contain several services that will not work, so to remove them edit /etc/xrdp/xrdp.ini and remove all lines from and including from [Xvnc] to the end. &lt;br /&gt;
&lt;br /&gt;
Note: If you are using KDE, please add the following link so that there is no screen after logging in &lt;br /&gt;
&amp;quot;ln -s /usr/bin/startplasma-x11 ~/.xinitrc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; ln -s /usr/bin/startplasma-x11 ~/.xinitrc}}&lt;br /&gt;
&lt;br /&gt;
== Remote Desktop Server based on Vino and XRDP ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;THIS DOES NOT WORK on 3.17.2 with Xfce Not Yet Deleted Yet in Case it helps others&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
First of all make sure you have a Desktop environment properly installed (See: [[Desktop environments and Window managers]])&lt;br /&gt;
&lt;br /&gt;
Next, install Vino and XRDP with the following command:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; apk add vino@community xrdp}}&lt;br /&gt;
&lt;br /&gt;
Replace the file &amp;lt;code&amp;gt;/etc/xrdp/xrdp.ini&amp;lt;/code&amp;gt; content with:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Cat|/etc/xrdp/xrdp.ini|&amp;lt;nowiki&amp;gt;[globals]&lt;br /&gt;
bitmap_cache=yes&lt;br /&gt;
bitmap_compression=yes&lt;br /&gt;
port=3389&lt;br /&gt;
crypt_level=low&lt;br /&gt;
channel_code=1&lt;br /&gt;
max_bpp=24&lt;br /&gt;
&lt;br /&gt;
[xrdp1]&lt;br /&gt;
name=Vino&lt;br /&gt;
lib=libvnc.so&lt;br /&gt;
ip=127.0.0.1&lt;br /&gt;
port=5900&lt;br /&gt;
username=ask&lt;br /&gt;
password=ask&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
If you want the XRDP service starts automatically, add the services to the default runlevel:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# rc-update add xrdp&lt;br /&gt;
&amp;amp;#35; rc-update add xrdp-sesman&lt;br /&gt;
&amp;amp;#35; rc-update add vino}}&lt;br /&gt;
&lt;br /&gt;
To start:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# rc-service xrdp start&lt;br /&gt;
&amp;amp;#35; rc-service xrdp-sesman start&lt;br /&gt;
&amp;amp;#35; rc-service vino start}}&lt;br /&gt;
&lt;br /&gt;
=== Remmina as client ===&lt;br /&gt;
&lt;br /&gt;
{{Draft}}&lt;br /&gt;
&lt;br /&gt;
=== Misc ===&lt;br /&gt;
&lt;br /&gt;
==== Disabling XRDP Notification and Confirmation ====&lt;br /&gt;
&lt;br /&gt;
If you do not want the client confirmation before the session being accepted:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;export DISPLAY=:0.0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|gsettings set org.gnome.Vino notify-on-connect false&lt;br /&gt;
gsettings set org.gnome.Vino prompt-enabled false&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Desktop]]&lt;br /&gt;
[[Category:Remote Desktop]]&lt;/div&gt;</summary>
		<author><name>Herman</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Remote_Desktop_Server&amp;diff=27792</id>
		<title>Remote Desktop Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Remote_Desktop_Server&amp;diff=27792"/>
		<updated>2024-11-11T07:43:42Z</updated>

		<summary type="html">&lt;p&gt;Herman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Remote Desktop Server Based on XRDP and xorgxrdp ==&lt;br /&gt;
&lt;br /&gt;
This was tested and works for v 3.17.2 with [[Xfce]] as the desktop.&lt;br /&gt;
&lt;br /&gt;
First ensure the desktop is working without remote access (if feasible)&lt;br /&gt;
&lt;br /&gt;
Install XRDP and xorgxrdp&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; apk add xrdp xorgxrdp}}&lt;br /&gt;
&lt;br /&gt;
Start the necessary services:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; rc-service xrdp start&lt;br /&gt;
&amp;amp;#35; rc-service xrdp-sesman start}}&lt;br /&gt;
&lt;br /&gt;
After testing this works you may set the services to start automatically:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; rc-update add xrdp&lt;br /&gt;
&amp;amp;#35; rc-update add xrdp-sesman}}&lt;br /&gt;
&lt;br /&gt;
That should be all that is needed to connect from a Windows client with its default &amp;quot;Remote Desktop&amp;quot; client, the xrdp configuration file though will contain several services that will not work, so to remove them edit /etc/xrdp/xrdp.ini and remove all lines from and including from [Xvnc] to the end. &lt;br /&gt;
&lt;br /&gt;
Note: If you are using KDE, please add the following link so that there is no screen after logging in &lt;br /&gt;
&amp;quot;ln -s /usr/bin/startplasma-x11 ~/.xinitrc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Remote Desktop Server based on Vino and XRDP ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;THIS DOES NOT WORK on 3.17.2 with Xfce Not Yet Deleted Yet in Case it helps others&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
First of all make sure you have a Desktop environment properly installed (See: [[Desktop environments and Window managers]])&lt;br /&gt;
&lt;br /&gt;
Next, install Vino and XRDP with the following command:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; apk add vino@community xrdp}}&lt;br /&gt;
&lt;br /&gt;
Replace the file &amp;lt;code&amp;gt;/etc/xrdp/xrdp.ini&amp;lt;/code&amp;gt; content with:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Cat|/etc/xrdp/xrdp.ini|&amp;lt;nowiki&amp;gt;[globals]&lt;br /&gt;
bitmap_cache=yes&lt;br /&gt;
bitmap_compression=yes&lt;br /&gt;
port=3389&lt;br /&gt;
crypt_level=low&lt;br /&gt;
channel_code=1&lt;br /&gt;
max_bpp=24&lt;br /&gt;
&lt;br /&gt;
[xrdp1]&lt;br /&gt;
name=Vino&lt;br /&gt;
lib=libvnc.so&lt;br /&gt;
ip=127.0.0.1&lt;br /&gt;
port=5900&lt;br /&gt;
username=ask&lt;br /&gt;
password=ask&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
If you want the XRDP service starts automatically, add the services to the default runlevel:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# rc-update add xrdp&lt;br /&gt;
&amp;amp;#35; rc-update add xrdp-sesman&lt;br /&gt;
&amp;amp;#35; rc-update add vino}}&lt;br /&gt;
&lt;br /&gt;
To start:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# rc-service xrdp start&lt;br /&gt;
&amp;amp;#35; rc-service xrdp-sesman start&lt;br /&gt;
&amp;amp;#35; rc-service vino start}}&lt;br /&gt;
&lt;br /&gt;
=== Remmina as client ===&lt;br /&gt;
&lt;br /&gt;
{{Draft}}&lt;br /&gt;
&lt;br /&gt;
=== Misc ===&lt;br /&gt;
&lt;br /&gt;
==== Disabling XRDP Notification and Confirmation ====&lt;br /&gt;
&lt;br /&gt;
If you do not want the client confirmation before the session being accepted:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;export DISPLAY=:0.0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|gsettings set org.gnome.Vino notify-on-connect false&lt;br /&gt;
gsettings set org.gnome.Vino prompt-enabled false&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Desktop]]&lt;br /&gt;
[[Category:Remote Desktop]]&lt;/div&gt;</summary>
		<author><name>Herman</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Remote_Desktop_Server&amp;diff=27791</id>
		<title>Remote Desktop Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Remote_Desktop_Server&amp;diff=27791"/>
		<updated>2024-11-11T07:40:42Z</updated>

		<summary type="html">&lt;p&gt;Herman: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Remote Desktop Server Based on XRDP and xorgxrdp ==&lt;br /&gt;
&lt;br /&gt;
This was tested and works for v 3.17.2 with [[Xfce]] as the desktop.&lt;br /&gt;
&lt;br /&gt;
First ensure the desktop is working without remote access (if feasible)&lt;br /&gt;
&lt;br /&gt;
Install XRDP and xorgxrdp&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; apk add xrdp xorgxrdp}}&lt;br /&gt;
&lt;br /&gt;
Start the necessary services:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; rc-service xrdp start&lt;br /&gt;
&amp;amp;#35; rc-service xrdp-sesman start}}&lt;br /&gt;
&lt;br /&gt;
After testing this works you may set the services to start automatically:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; rc-update add xrdp&lt;br /&gt;
&amp;amp;#35; rc-update add xrdp-sesman}}&lt;br /&gt;
&lt;br /&gt;
That should be all that is needed to connect from a Windows client with its default &amp;quot;Remote Desktop&amp;quot; client, the xrdp configuration file though will contain several services that will not work, so to remove them edit /etc/xrdp/xrdp.ini and remove all lines from and including from [Xvnc] to the end. &lt;br /&gt;
&lt;br /&gt;
== Remote Desktop Server based on Vino and XRDP ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;THIS DOES NOT WORK on 3.17.2 with Xfce Not Yet Deleted Yet in Case it helps others&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
First of all make sure you have a Desktop environment properly installed (See: [[Desktop environments and Window managers]])&lt;br /&gt;
&lt;br /&gt;
Next, install Vino and XRDP with the following command:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|&amp;amp;#35; apk add vino@community xrdp}}&lt;br /&gt;
&lt;br /&gt;
Replace the file &amp;lt;code&amp;gt;/etc/xrdp/xrdp.ini&amp;lt;/code&amp;gt; content with:&lt;br /&gt;
&lt;br /&gt;
Note: If you are using KDE, please add the following link so that there is no screen after logging in &lt;br /&gt;
&amp;quot;ln -s /usr/bin/startplasma-x11 ~/.xinitrc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
{{Cat|/etc/xrdp/xrdp.ini|&amp;lt;nowiki&amp;gt;[globals]&lt;br /&gt;
bitmap_cache=yes&lt;br /&gt;
bitmap_compression=yes&lt;br /&gt;
port=3389&lt;br /&gt;
crypt_level=low&lt;br /&gt;
channel_code=1&lt;br /&gt;
max_bpp=24&lt;br /&gt;
&lt;br /&gt;
[xrdp1]&lt;br /&gt;
name=Vino&lt;br /&gt;
lib=libvnc.so&lt;br /&gt;
ip=127.0.0.1&lt;br /&gt;
port=5900&lt;br /&gt;
username=ask&lt;br /&gt;
password=ask&amp;lt;/nowiki&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
If you want the XRDP service starts automatically, add the services to the default runlevel:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# rc-update add xrdp&lt;br /&gt;
&amp;amp;#35; rc-update add xrdp-sesman&lt;br /&gt;
&amp;amp;#35; rc-update add vino}}&lt;br /&gt;
&lt;br /&gt;
To start:&lt;br /&gt;
&lt;br /&gt;
{{Cmd|# rc-service xrdp start&lt;br /&gt;
&amp;amp;#35; rc-service xrdp-sesman start&lt;br /&gt;
&amp;amp;#35; rc-service vino start}}&lt;br /&gt;
&lt;br /&gt;
=== Remmina as client ===&lt;br /&gt;
&lt;br /&gt;
{{Draft}}&lt;br /&gt;
&lt;br /&gt;
=== Misc ===&lt;br /&gt;
&lt;br /&gt;
==== Disabling XRDP Notification and Confirmation ====&lt;br /&gt;
&lt;br /&gt;
If you do not want the client confirmation before the session being accepted:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;export DISPLAY=:0.0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Cmd|gsettings set org.gnome.Vino notify-on-connect false&lt;br /&gt;
gsettings set org.gnome.Vino prompt-enabled false&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Server]]&lt;br /&gt;
[[Category:Desktop]]&lt;br /&gt;
[[Category:Remote Desktop]]&lt;/div&gt;</summary>
		<author><name>Herman</name></author>
	</entry>
</feed>