Re: Create new processes over telnet in XP

2007-03-26 Thread Tim Golden
Tim Golden wrote: > Laurent Pointal wrote: >> Shane Geiger a écrit : >>> This reminds me of something I once wanted to do: How can I install >>> Python in a totally non-gui way on Windows (without the use of VNC)? I >>> think I was telnetted into a computer (or something like that) and I was >>>

Re: Create new processes over telnet in XP

2007-03-26 Thread Tim Golden
Laurent Pointal wrote: > Shane Geiger a écrit : >> This reminds me of something I once wanted to do: How can I install >> Python in a totally non-gui way on Windows (without the use of VNC)? I >> think I was telnetted into a computer (or something like that) and I was >> unable to run the usual P

Re: Create new processes over telnet in XP

2007-03-26 Thread Laurent Pointal
Shane Geiger a écrit : > This reminds me of something I once wanted to do: How can I install > Python in a totally non-gui way on Windows (without the use of VNC)? I > think I was telnetted into a computer (or something like that) and I was > unable to run the usual Python installer because it us

Re: Create new processes over telnet in XP

2007-03-24 Thread Rob Wolfe
"Godzilla" <[EMAIL PROTECTED]> writes: > Rob, I would be logging into another XP machine to do some software I was afraid of that. :) > installation... the code you provided, correct me if I'm wrong, seems > to work under Unix/Linux. This part of running and killing processes, yes. > Any idea

Re: Create new processes over telnet in XP

2007-03-24 Thread Thomas Heller
Irmen de Jong schrieb: > Shane Geiger wrote: >> This reminds me of something I once wanted to do: How can I install >> Python in a totally non-gui way on Windows (without the use of VNC)? I >> think I was telnetted into a computer (or something like that) and I was >> unable to run the usual P

Re: Create new processes over telnet in XP

2007-03-23 Thread Godzilla
On Mar 24, 12:57 am, "Rob Wolfe" <[EMAIL PROTECTED]> wrote: > Godzilla wrote: > > Hello, > > > How do you create/spawn new processes in XP over telnet using python? > > I.e. I would like to create a new process and have it running in the > > background... when I terminate the telnet connection, I w

Re: Create new processes over telnet in XP

2007-03-23 Thread Godzilla
On Mar 24, 12:57 am, "Rob Wolfe" <[EMAIL PROTECTED]> wrote: > Godzilla wrote: > > Hello, > > > How do you create/spawn new processes in XP over telnet using python? > > I.e. I would like to create a new process and have it running in the > > background... when I terminate the telnet connection, I w

Re: Create new processes over telnet in XP

2007-03-23 Thread Jarek Zgoda
Irmen de Jong napisał(a): > Python uses a MSI (microsoft installer) based installer on windows. > This was introduced in version 2.5 I believe. 2.4? I recall that we installed 2.4.2 this way on >500 machines some day at my previous work. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.pyt

Re: Create new processes over telnet in XP

2007-03-23 Thread Irmen de Jong
Shane Geiger wrote: > This reminds me of something I once wanted to do: How can I install > Python in a totally non-gui way on Windows (without the use of VNC)? I > think I was telnetted into a computer (or something like that) and I was > unable to run the usual Python installer because it us

Re: Create new processes over telnet in XP

2007-03-23 Thread Shane Geiger
This reminds me of something I once wanted to do: How can I install Python in a totally non-gui way on Windows (without the use of VNC)? I think I was telnetted into a computer (or something like that) and I was unable to run the usual Python installer because it uses a GUI. Laurent Poin

Re: Create new processes over telnet in XP

2007-03-23 Thread Laurent Pointal
Jorgen Grahn wrote: > On 23 Mar 2007 03:47:14 -0700, Godzilla <[EMAIL PROTECTED]> wrote: >> Hello, >> >> How do you create/spawn new processes in XP over telnet using python? >> I.e. I would like to create a new process and have it running in the >> background... > > Ssh -- or even rsh -- are bet

Re: Create new processes over telnet in XP

2007-03-23 Thread Jorgen Grahn
On 23 Mar 2007 03:47:14 -0700, Godzilla <[EMAIL PROTECTED]> wrote: > Hello, > > How do you create/spawn new processes in XP over telnet using python? > I.e. I would like to create a new process and have it running in the > background... Ssh -- or even rsh -- are better choices than telnet for thes

Re: Create new processes over telnet in XP

2007-03-23 Thread Rob Wolfe
Godzilla wrote: > Hello, > > How do you create/spawn new processes in XP over telnet using python? > I.e. I would like to create a new process and have it running in the > background... when I terminate the telnet connection, I would what the > spawned processes to keep running until I shut it off

Re: Create new processes over telnet in XP

2007-03-23 Thread rishi pathak
You could use pexpect module. Open a telnet session Then run the script in nohup mode It's assumed that the binary is available over there On 23 Mar 2007 03:47:14 -0700, Godzilla <[EMAIL PROTECTED]> wrote: Hello, How do you create/spawn new processes in XP over telnet using python? I.e. I woul

Create new processes over telnet in XP

2007-03-23 Thread Godzilla
Hello, How do you create/spawn new processes in XP over telnet using python? I.e. I would like to create a new process and have it running in the background... when I terminate the telnet connection, I would what the spawned processes to keep running until I shut it off... I got the os.popen meth