Thread: Startup Script
View Single Post
Posts: 20 | Thanked: 0 times | Joined on Apr 2007
#5
The easiest way to find a binary file is to use the command which
Code:
root@Nokia-N800-26 # which rdesktop
/usr/bin/rdesktop
A quick google search turns up this man page for rdesktop that details the command line options:
http://www.linuxcommand.org/man_pages/rdesktop1.html

Something like the following should work:
Code:
rdesktop -u username -p password windowsServerName
As for writing the script, I will leave it up to you.