Processes/pipes cross platform issue - popen*() hangs using "rsh/rlogin" (not working in Windows vs.

D

David H

Background.

I'm running on WinXP w/ MS Services for Unix installed (to give
rsh/rlogin ability), both Python 2.3 and 2.4 version. In linux, I'm
running RHEE with python2.3 version. The code below works fine for me
in linux, but in WinXP the popen*() command "hangs". More
specifically, I get an apparent python prompt (without the '>>> ', but
whatever I type has no effect, and hitting return does a CR but not
the additional LF, so I just type over what I had just typed). The
only way I can exit is with CTRL-BREAK, and rerun python. I've tried
the various flavors of popen[2|3|4], and the subprocess module in
python2.4, all with the same "bug".

Also, rsh/rlogin from windows DOS prompt work just fine.



Can anyone clue me in as to how to make this work in windows, or an
equivalent solution?

The gist of what I'm doing is this
-------------
import os
p = os.popen3("rsh LINUX_MACHINE.com -l USER")
p[0].writelines(["touch rsh_as_USER.txt\n",])
p[0].close()

In linux, the target machine will then have the .txt file touch'ed.

Thanks.
-Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,011
Latest member
AjaUqq1950

Latest Threads

Top