Hi,
I'm trying to run a startup-script for the app rdesktop and having problems. I searched the forum and faq and followed the steps as described:
1. tested rdesktop to my server --> entered following command in terminal console:
rdesktop -u <myusername> -d <mydomain> -p <mypassword> -k de -g 100% <serveripaddress>
--> rdesktop runs ok!
2. created a script file named rdes in folder "/home/tc/.X.d/" with following content:
#!/bin/sh
rdesktop -u <myusername> -d <mydomain> -p <mypassword> -k de -g 100% <serveripaddress>
3. made file rdes executable with entering command in terminal "~/.X.d/":
chmod 755 rdes
4. tested script file rdes in terminal "~/.X.d/":
sh rdes
-->script was executed and rdesktop was started.
So far so good. My problem is that my script rdes is not executed onboot. Means, when I turn on my computer TCL is booted but nothing else happens.
Thanks for any help & recommends.
Peter