documentation and script file changes
This commit is contained in:
parent
da4df86fc0
commit
192446c47e
@ -31,6 +31,7 @@ files.
|
|||||||
|
|
||||||
files and location
|
files and location
|
||||||
/usr/local/xrdp/startwm.sh - script that starts the window manager
|
/usr/local/xrdp/startwm.sh - script that starts the window manager
|
||||||
|
You may need to edit this file to run your window manager.
|
||||||
/etc/sesman.ini - sesman configuration file
|
/etc/sesman.ini - sesman configuration file
|
||||||
/etc/rsakeys.ini - rsa stuff
|
/etc/rsakeys.ini - rsa stuff
|
||||||
/etc/xrdp.ini - xrdp configuration file
|
/etc/xrdp.ini - xrdp configuration file
|
||||||
@ -41,4 +42,11 @@ Sesman and xrdp both have to be running as root.
|
|||||||
You should set them to start when the system starts.
|
You should set them to start when the system starts.
|
||||||
You can use xrdp_control.sh script to start them.
|
You can use xrdp_control.sh script to start them.
|
||||||
|
|
||||||
|
To completely remove xrdp
|
||||||
|
remove directory /usr/local/xrdp
|
||||||
|
remove directory /etc/xrdp
|
||||||
|
remove file /var/run/xrdp.pid
|
||||||
|
remove file /var/run/sesman.pid
|
||||||
|
remove any startup links added to /etc/init.d or /etc/rcX.d
|
||||||
|
|
||||||
jay.sorg@gmail.com
|
jay.sorg@gmail.com
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
startkde
|
#
|
||||||
|
# not used, the one in sesman directory is used
|
||||||
|
#
|
||||||
|
#startkde
|
||||||
#blackbox
|
#blackbox
|
||||||
#fvwm95
|
#fvwm95
|
||||||
|
@ -1,5 +1,21 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
startkde
|
if [ "'which startkde'" != "" ]; then
|
||||||
#blackbox
|
startkde
|
||||||
#fvwm95
|
exit 0
|
||||||
#xterm
|
fi
|
||||||
|
if [ "'which kde'" != "" ]; then
|
||||||
|
kde
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
if [ "'which blackbox'" != "" ]; then
|
||||||
|
blackbox
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
if [ "'which fvwm95'" != "" ]; then
|
||||||
|
fvwm95
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
if [ "'which xterm'" != "" ]; then
|
||||||
|
xterm
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user