documentation and script file changes

This commit is contained in:
jsorg71 2006-02-18 05:42:59 +00:00
parent da4df86fc0
commit 192446c47e
3 changed files with 32 additions and 5 deletions

View File

@ -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

View File

@ -1,4 +1,7 @@
#!/bin/sh #!/bin/sh
startkde #
# not used, the one in sesman directory is used
#
#startkde
#blackbox #blackbox
#fvwm95 #fvwm95

View File

@ -1,5 +1,21 @@
#!/bin/sh #!/bin/sh
if [ "'which startkde'" != "" ]; then
startkde startkde
#blackbox exit 0
#fvwm95 fi
#xterm 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