[K12OSN] Scripting for Linux - RDesktop straight to an app

Roger roger.in.eugene at gmail.com
Tue Apr 24 20:15:26 UTC 2007


On 4/24/07, Kemp, Levi <lnkemp at bolivar.k12.mo.us> wrote:
> Here's is my current situation, we want to use rdesktop to a terminal server for a couple legacy apps. I've seen you can pass the user name and password with -u and -p command line or enter them in using the TSClient. In the TSClient you can also specify an app to open right away, how would you do this on the command line? And if I were to script this, which I'm familiar with only in windows right now, how might I go about using the current users username and password to fill the arguments? We are authenticating to the windows AD so the username and password for the terminal server would be the same. This way I can create links on the students desktops to the program and it would log them into the terminal server and open the app, creating the illusion they are running it local if it is done full screen. Any thoughts on this, it is my first time scripting in Linux. I created what I thought was a script, but it always asks me if I want to Run, View, or Run in Terminal, and I can't have it do that. It works like I want it, except I had to put in the username/password manually, and still open the app. Thanks for the help once again!


Do you have the script so that you can run it from the command line?
After that, you may need to create a launcher to be able to just
double click on an icon.

Normally, if it's a shell script, you can access the current name with $USER.
So, with a bash script, you would put:
rdesktop -u $USER  'server-name'

To start an app, for instance Firefox, you'd have to specify the full
path to the executable on the command line:
rdesktop -u $USER -s "c:\program files\mozilla firefox\firefox.exe"
server-name

Not sure if you can take the password they've entered and add it to
the command line.  I think the command line would want the plain text
password.



-- 
Roger
~~~~///~~~~
Low cost web-hosting:
http://www.dreamhost.com/r.cgi?91357




More information about the K12OSN mailing list