[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ale] Rsh with Linux



> I need connect from A_MACHINE (solaris) to B_MACHINE (linux), and execute a
> script in B_MACHINE and recive the result.

Secure shell is strongly recommended over rsh.

When you use 'ssh' to do this, it would something like
commandPromptOnA$ ssh jordi at B_MACHINE commandOnB 
for rsh it would be:
commandPromptOnA$ rsh -l jordi B_MACHINE commandOnB

Good luck.

Jerry