[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] Rsh with Linux
- Subject: [ale] Rsh with Linux
- From: Zhongbin Yu " <zyu at punch.premtec.com> (Zhongbin Yu " <zyu at punch.premtec.com>)
- Date: Mon, 8 Feb 1999 14:55:07 -0500 (EST)
> 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