To run a python script in all the machines from one server

2006-03-28 Thread muttu2244
Hi Everyone I want to run a python script in all the machines that are connected through local network and collect the information about that machine such as HDD size, RAM capacity(with number of slots) ,processer speed etc. But i want to run a script from just the server, so that it should

Re: To run a python script in all the machines from one server

2006-03-28 Thread Martin P. Hellwig
[EMAIL PROTECTED] wrote: Hi Everyone I want to run a python script in all the machines that are connected through local network and collect the information about that machine such as HDD size, RAM capacity(with number of slots) ,processer speed etc. But i want to run a script from just

Re: To run a python script in all the machines from one server

2006-03-28 Thread Eyal Lotem
[EMAIL PROTECTED] wrote: Hi Everyone I want to run a python script in all the machines that are connected through local network and collect the information about that machine such as HDD size, RAM capacity(with number of slots) ,processer speed etc. But i want to run a script from just

Re: To run a python script in all the machines from one server

2006-03-28 Thread Nick Craig-Wood
[EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I want to run a python script in all the machines that are connected through local network and collect the information about that machine such as HDD size, RAM capacity(with number of slots) ,processer speed etc. But i want to run a script

Re: To run a python script in all the machines from one server

2006-03-28 Thread Sybren Stuvel
Nick Craig-Wood enlightened us with: If these are unix machines then I would use ssh/scp. Use scp to copy the script to /tmp then run it and collect the output with ssh (and os.popen/subprocess) I'd use ssh only. Just give a 'cat /tmp/myscript.sh' command, then output the contents of the

Re: To run a python script in all the machines from one server

2006-03-28 Thread Yu-Xi Lim
Nick Craig-Wood wrote: If these are unix machines then I would use ssh/scp. Even if they are Windows PCs, you could just install cygwin, openssh, and python. -- http://mail.python.org/mailman/listinfo/python-list

Re: To run a python script in all the machines from one server

2006-03-28 Thread skip
Yogi I want to run a python script in all the machines that are Yogi connected through local network and collect the information about Yogi that machine such as HDD size, RAM capacity(with number of slots) Yogi ,processer speed etc. Yogi But i want to run a script from just

Re: To run a python script in all the machines from one server

2006-03-28 Thread jao
Quoting [EMAIL PROTECTED]: Yogi I want to run a python script in all the machines that are Yogi connected through local network and collect the information about Yogi that machine such as HDD size, RAM capacity(with number of slots) Yogi ,processer speed etc. Yogi But i want