using ssh-agent ssh-add has been
running successfully. In addition to the code you wrote to me, I also
refer to man ssh-agent and subprocess: Subprocess management. I now
know the importance of environment variables.
Excellent. I'm glad to hear it.
BTW, this program is for visit youtube
On 31May2019 21:51, Fc Zwtyds wrote:
在 2019-05-30 6:41, Cameron Simpson 写道:
The you could just use os.system() to run the other commands, because
the environment now has the necessary environment settings.
[...]
Under your guidance, the python code using ssh-agent ssh-add has
been running
,
Under your guidance, the python code using ssh-agent ssh-add has been
running successfully. In addition to the code you wrote to me, I also
refer to man ssh-agent and subprocess: Subprocess management. I now know
the importance of environment variables.
This problem has puzzled me for nearly
using ssh-agent ssh-add has been
running successfully. In addition to the code you wrote to me, I also
refer to man ssh-agent and subprocess: Subprocess management. I now know
the importance of environment variables.
This problem has puzzled me for nearly two weeks and solved this
problem
,
Under your guidance, the python code using ssh-agent ssh-add has been
running successfully. In addition to the code you wrote to me, I also
refer to man ssh-agent and subprocess: Subprocess management. I now know
the importance of environment variables.
This problem has puzzled me for nearly
On 5/29/19, Cameron Simpson wrote:
>
> So start with this:
>
> p = subprocess.Popen('ssh-agent -s', stdin = subprocess.PIPE, stdout =
> subprocess.PIPE, stderr = subprocess.PIPE, shell = True, universal_newlines
> = True)
I'm wary of relying on the default
在 2019-05-30 6:41, Cameron Simpson 写道:
On 29May2019 22:37, Fc Zwtyds wrote:
在 2019-05-27 11:19, Cameron Simpson 写道:
The output of "ssh-agent -s" is Bourne shell variable assignment
syntax. You need to parse that [...]
I want to rewrite the shell script to python script so
On 29May2019 22:37, Fc Zwtyds wrote:
在 2019-05-27 11:19, Cameron Simpson 写道:
The output of "ssh-agent -s" is Bourne shell variable assignment
syntax. You need to parse that [...]
I want to rewrite the shell script to python script so I have had
changed the "ssh-agent -s&quo
在 2019-05-27 11:19, Cameron Simpson 写道:
The output of "ssh-agent -s" is Bourne shell variable assignment syntax.
You need to parse that and then install those values in so.environ
before calling the second command. The subprocess module has methods for
collecting the output of a co
在 2019-05-27 18:59, coldpizza 写道:
example code for doing it in pure python:
http://code.activestate.com/recipes/576810-copy-files-over-ssh-using-paramiko/
Thank you very much and the information you recommended, I will take the
time to learn it: paramiko
--
https://mail.python.org/mailman
在 2019-05-27 11:19, Cameron Simpson 写道:
On 27May2019 08:22, Fc Zwtyds wrote:
Thank you very much for your detailed answer.
I will try to learn how to capture and parse the output of "ssh-agent
-s" and learn how to talk to the agent.
The output of "ssh-agent -s" is B
example code for doing it in pure python:
http://code.activestate.com/recipes/576810-copy-files-over-ssh-using-paramiko/
--
https://mail.python.org/mailman/listinfo/python-list
On 27May2019 08:22, Fc Zwtyds wrote:
Thank you very much for your detailed answer.
I will try to learn how to capture and parse the output of "ssh-agent
-s" and learn how to talk to the agent.
The output of "ssh-agent -s" is Bourne shell variable assignment syntax.
Yo
在 2019-05-27 7:13, Cameron Simpson 写道:
On 26May2019 22:55, Fc Zwtyds wrote:
I am using cygwin on Windows 8.1. These two commands work fine in
cygwin:
ssh-agent -s
ssh-add ~/.ssh /id_rsa
No, they run without error (apparently). That is an entirely different
thing.
In particular, &quo
在 2019-05-27 0:27, MRAB 写道:
On 2019-05-26 15:55, Fc Zwtyds wrote:
Hi,
I am using cygwin on Windows 8.1. These two commands work fine in
cygwin:
ssh-agent -s
ssh-add ~/.ssh /id_rsa
I tried to use them on windows cmd and it worked fine. Now I am going
to use python to write code to
On 26May2019 22:55, Fc Zwtyds wrote:
I am using cygwin on Windows 8.1. These two commands work fine in
cygwin:
ssh-agent -s
ssh-add ~/.ssh /id_rsa
No, they run without error (apparently). That is an entirely different
thing.
In particular, "ssh-agent -s" starts an agent but
On 2019-05-26 15:55, Fc Zwtyds wrote:
Hi,
I am using cygwin on Windows 8.1. These two commands work fine in cygwin:
ssh-agent -s
ssh-add ~/.ssh /id_rsa
I tried to use them on windows cmd and it worked fine. Now I am going
to use python to write code to implement the above command
Hi,
I am using cygwin on Windows 8.1. These two commands work fine in cygwin:
ssh-agent -s
ssh-add ~/.ssh /id_rsa
I tried to use them on windows cmd and it worked fine. Now I am going
to use python to write code to implement the above command.
os.system('ssh-agent -s')
os.syste
hey did you find the answer for this
--
https://mail.python.org/mailman/listinfo/python-list
On 6 Oct 2016 04:56, "Michael Torrie" wrote:
>
> On 10/05/2016 11:46 AM, Noah wrote:
> > Hello folk,
> >
> > I would like to use a python script to ssh into a server using a
username
> > and password and perhaps ass port.
> >
> > Any ideas on
On 10/05/2016 11:46 AM, Noah wrote:
> Hello folk,
>
> I would like to use a python script to ssh into a server using a username
> and password and perhaps ass port.
>
> Any ideas on how to script that.
If paramiko doesn't fit your needs, traditionally this sort of work wa
On 5 Oct 2016 22:02, "Ethan Furman" wrote:
>
> On 10/05/2016 10:46 AM, Noah wrote:
>
>> I would like to use a python script to ssh into a server using a username
>> and password [...]
>
>
> I've written a module called scription to help with scripts;
On 10/05/2016 10:46 AM, Noah wrote:
I would like to use a python script to ssh into a server using a username
and password [...]
I've written a module called scription to help with scripts; it supports giving
passwords to programs like ssh.
Here's an example from one of my utili
Hi Rob
Thank you for your email.
I am guessing that is some module. Ok i will pip it and see how it goes.
Noah
On 5 Oct 2016 21:32, "Rob Gaddi" wrote:
> Noah wrote:
>
> > Hello folk,
> >
> > I would like to use a python script to ssh into a server usi
Noah wrote:
> Hello folk,
>
> I would like to use a python script to ssh into a server using a username
> and password and perhaps ass port.
>
> Any ideas on how to script that.
>
> Thanks
>
> Noah
paramiko
--
Rob Gaddi, Highland Technology -- www.highlandtechnolo
Hello folk,
I would like to use a python script to ssh into a server using a username
and password and perhaps ass port.
Any ideas on how to script that.
Thanks
Noah
--
https://mail.python.org/mailman/listinfo/python-list
On Thursday, September 1, 2016 at 3:26:26 PM UTC+12, meInvent bbird wrote:
> how to set paramiko to use ssh version 1?
Be polite, but firm. Tell it “paramiko, this is ssh version 1, use it”. Then,
when it responds “but SSHv1 is an obsolete stinking pile of crap that nobody in
their right m
how to set paramiko to use ssh version 1?
--
https://mail.python.org/mailman/listinfo/python-list
Hey,
its resolved by small tweak :)
do child.sendline('logout') instead of child.logout()
Thanks...
--
https://mail.python.org/mailman/listinfo/python-list
On Tuesday, 8 September 2015 17:07:24 UTC+5:30, hariramm...@gmail.com wrote:
> Some where i am missing simple logic :)
>
> =
> child = pexpect.spawn('ssh hari@hostname')
> child.logfile = sys.stdout
> child.expect('hari\'s Password:
On Tuesday, 8 September 2015 17:07:24 UTC+5:30, hariramm...@gmail.com wrote:
> Some where i am missing simple logic :)
>
> =
> child = pexpect.spawn('ssh hari@hostname')
> child.logfile = sys.stdout
> child.expect('hari\'s Password:
>Hey All,
>
>I am able to achieve this using pxssh.. thank you for help...
Great to hear it. Good luck with the crazies.
Laura
--
https://mail.python.org/mailman/listinfo/python-list
In a message of Wed, 09 Sep 2015 01:58:30 -0700, harirammanohar...@gmail.com wr
ites:
>Thank you for spawnu, now i got stuck with freezing issue similar to it is not
>returing to the shell prompt...its on waiting...i had to press ctrl+c
>
>===
>child.sendline(password)
>child.expect('-bas
On Tuesday, 8 September 2015 17:07:24 UTC+5:30, hariramm...@gmail.com wrote:
> Some where i am missing simple logic :)
>
> =
> child = pexpect.spawn('ssh hari@hostname')
> child.logfile = sys.stdout
> child.expect('hari\'s Password:
On Tuesday, 8 September 2015 17:07:24 UTC+5:30, hariramm...@gmail.com wrote:
> Some where i am missing simple logic :)
>
> =
> child = pexpect.spawn('ssh hari@hostname')
> child.logfile = sys.stdout
> child.expect('hari\'s Password:
In a message of Tue, 08 Sep 2015 23:57:41 +1000, Chris Angelico writes:
>On Tue, Sep 8, 2015 at 9:37 PM, wrote:
>> Some where i am missing simple logic :)
>>
>> =
>> child = pexpect.spawn('ssh hari@hostname')
>> child.logfile = s
On 09/08/2015 03:57 PM, Chris Angelico wrote:
On Tue, Sep 8, 2015 at 9:37 PM, wrote:
Some where i am missing simple logic :)
=
child = pexpect.spawn('ssh hari@hostname')
child.logfile = sys.stdout
child.expect('hari\'s Password: ')
=
On Tue, Sep 8, 2015 at 9:37 PM, wrote:
> Some where i am missing simple logic :)
>
> =
> child = pexpect.spawn('ssh hari@hostname')
> child.logfile = sys.stdout
> child.expect('hari\'s Password: ')
> =
>
> getting error as foll
In a message of Tue, 08 Sep 2015 04:37:09 -0700, harirammanohar...@gmail.com wr
ites:
>Some where i am missing simple logic :)
>
>=
>child = pexpect.spawn('ssh hari@hostname')
>child.logfile = sys.stdout
>child.expect('hari\'s Password:
Some where i am missing simple logic :)
=
child = pexpect.spawn('ssh hari@hostname')
child.logfile = sys.stdout
child.expect('hari\'s Password: ')
=
getting error as follows:
child.expect('hari\'s Password: ')
TypeError: mu
(2003, "Can't connect to MySQL server on 'mcsdev.croft-it.com' (60)")
--
https://mail.python.org/mailman/listinfo/python-list
I am trying to connect to a remote MySQL Database over SSH. I am using paramiko
and SQLAlchemy. I assume that my sqlalchemy engine is not going through the SSH
tunnel. Here is what i have so far. Not sure where to go from here though.
import paramiko
from sqlalchemy import create_engine
ssh
On Wed, Jul 30, 2014 at 1:49 PM, Chirag Dhyani wrote:
> Hi,
>
> Could you suggest me ssh library supporting python 3.1, to a surprise I
> checked pramiko, fabric, etc etc and no one does. even workaround with
> plumbum but not helpful. We have a project entirely on python 3.1 a
Hi,
Could you suggest me ssh library supporting python 3.1, to a surprise I
checked pramiko, fabric, etc etc and no one does. even workaround with
plumbum but not helpful. We have a project entirely on python 3.1 and now
we are stuck with ssh.
Please help
Thank you
~Chi
--
https
;> I am new to programming and python. I am looking for a python script to do
>>> ssh/telnet to a network equipment ? I know tcl/perl does this using
>>> expect/send.
>>
>>
>>> Do we have expect available in python as well or need to use some other
>>&g
Τη Τετάρτη, 19 Φεβρουαρίου 2014 10:45:53 π.μ. UTC+2, ο χρήστης Wojciech Łysiak
έγραψε:
> On 19.02.2014 09:14, Sujith S wrote:
>
> > Hi,
>
> >
>
> > I am new to programming and python. I am looking for a python script to do
> > ssh/telnet to a network e
On Feb 19, 2014, at 3:14 AM, Sujith S wrote:
> Hi,
>
> I am new to programming and python. I am looking for a python script to do
> ssh/telnet to a network equipment ? I know tcl/perl does this using
> expect/send.
>
> Do we have expect available in python as well or n
In article ,
Roy Smith wrote:
> in conjunction with a near command-line driver tool called fab
Typo there: "near" should have been "neat".
[this is why I love wikis]
--
https://mail.python.org/mailman/listinfo/python-list
On Thu, Feb 20, 2014 at 12:35 AM, Roy Smith wrote:
> As far as I know, fabric only works with ssh. If you are forced to use
> telnet to talk to legacy equipment, that's another problem.
If it's telnet, it's likely to be a pretty simple protocol. All you
really need is the
In article ,
Sujith S wrote:
> Hi,
>
> I am new to programming and python. I am looking for a python script to do
> ssh/telnet to a network equipment ? I know tcl/perl does this using
> expect/send.
>
> Do we have expect available in python as well or need to use
On 19.02.2014 09:14, Sujith S wrote:
Hi,
I am new to programming and python. I am looking for a python script to do
ssh/telnet to a network equipment ? I know tcl/perl does this using expect/send.
Do we have expect available in python as well or need to use some other method ?
Regards
Sujith
On 19.02.2014 09:14, Sujith S wrote:
> Hi,
>
> I am new to programming and python. I am looking for a python script to do
> ssh/telnet to a network equipment ? I know tcl/perl does this using
> expect/send.
>
> Do we have expect available in python as well or need to use
On Wed, Feb 19, 2014 at 7:14 PM, Sujith S wrote:
> Hi,
>
> I am new to programming and python. I am looking for a python script to do
> ssh/telnet to a network equipment ? I know tcl/perl does this using
> expect/send.
>
> Do we have expect available in python as well or n
Hi,
I am new to programming and python. I am looking for a python script to do
ssh/telnet to a network equipment ? I know tcl/perl does this using
expect/send.
Do we have expect available in python as well or need to use some other method ?
Regards
Sujith
--
https://mail.python.org/mailman
ot wish to change the database from listening to any other thing than
localhost for security reasons, so i assume the best solution for me would be
to make the program create some ssh tunnels before the saving/loading happens.
But would this policy make my database (or the rest of the databases that i
Im using python 3.3 on win7 64bit and trying to connect to a MySQL database on
a remote server through a putty ssh tunnel.
Running the script below im getting "Physical connection to the database did
not activate!". What im i doing wrong?! I tried to find a working example but
couldn
assume the best solution for me would be
to make the program create some ssh tunnels before the saving/loading happens.
But would this policy make my database (or the rest of the databases that im
running on that machine) unsecure? Is there any workaround this?
How would you do that online
ay from the program so that
> things roll easy. I thought maybe i should find a way how to call and
> run a batch file from inside my python program or a powershell command,
> but i do not know even if that could work for the ssh tunneling.
>
> any ideas?
Both popular frameworks f
On Fri, Aug 9, 2013 at 1:50 AM, D. Xenakis wrote:
>> Alternatively, can you use PostgreSQL instead? :)
>
> Yes there is such an option to be honest.
> Would that be helpfull instead of MySQL?
It would, mainly because it's simply a better database engine.
Everything to do with tunneling is going t
to
> be done in an automatic way from the program so that things roll easy.
> I thought maybe i should find a way how to call and run a batch file from
> inside my python program or a powershell command, but i do not know even if
> that could work for the ssh tunneling.
You shoul
> Alternatively, can you use PostgreSQL instead? :)
Yes there is such an option to be honest.
Would that be helpfull instead of MySQL?
--
http://mail.python.org/mailman/listinfo/python-list
> > HOWTO anyone?
>
> >
>
> > What im trying to succeed here is create one SSH tunnel, so that i can
> > connect from a python script running on my pc, to a remote MySQL database
> > running on my Host and id like to stick with Python 3.3 .
>
> >
On Thu, Aug 8, 2013 at 8:30 PM, D. Xenakis wrote:
> HOWTO anyone?
>
> What im trying to succeed here is create one SSH tunnel, so that i can
> connect from a python script running on my pc, to a remote MySQL database
> running on my Host and id like to stick with Python 3.3 .
>
On Thu, Aug 8, 2013 at 2:30 PM, D. Xenakis wrote:
> HOWTO anyone?
>
> What im trying to succeed here is create one SSH tunnel, so that i can
> connect from a python script running on my pc, to a remote MySQL database
> running on my Host and id like to stick with Python 3.3 .
ht
HOWTO anyone?
What im trying to succeed here is create one SSH tunnel, so that i can connect
from a python script running on my pc, to a remote MySQL database running on my
Host and id like to stick with Python 3.3 .
I contacted my host and he informed me that this is the only way.
I tried
On Sat, Apr 6, 2013 at 5:49 AM, Roy Smith wrote:
> In article ,
> Darren Spruell wrote:
>
>> I'd like to work with user submitted/uploaded SSH public keys from
>> Python. I'm trying to solve what I'd thought might be a simple need:
>> given a user
In article ,
Darren Spruell wrote:
> I'd like to work with user submitted/uploaded SSH public keys from
> Python. I'm trying to solve what I'd thought might be a simple need:
> given a user's OpenSSH formatted _public_ key (RSA, or DSA, or
> whatever), how do
I'd like to work with user submitted/uploaded SSH public keys from
Python. I'm trying to solve what I'd thought might be a simple need:
given a user's OpenSSH formatted _public_ key (RSA, or DSA, or
whatever), how do you obtain information about it such as: key type
(e.g.
In article ,
Gelonida N wrote:
> On 10/29/2012 02:10 PM, Roy Smith wrote:
> > In article ,
> > Gelonida N wrote:
> >
> >> The sh module looks intersting, but it's not supported for Windows
> >> platforms.
> >
> > "The X module looks interesting but it's not supported for Windows" is
> > true
On 10/29/2012 02:10 PM, Roy Smith wrote:
In article ,
Gelonida N wrote:
The sh module looks intersting, but it's not supported for Windows
platforms.
"The X module looks interesting but it's not supported for Windows" is
true for many values of X. It's all part of the TCO of using a
brain
On 10/29/2012 04:18 PM, David Robinow wrote:
On Sun, Oct 28, 2012 at 4:09 PM, Gelonida N wrote:
The only thing I'm concerned about paramiko is, that I don't see any
activity on the paramiko site and that one library it depends on is not
available is windows binary package for newer versions of
On Sun, Oct 28, 2012 at 4:09 PM, Gelonida N wrote:
> The only thing I'm concerned about paramiko is, that I don't see any
> activity on the paramiko site and that one library it depends on is not
> available is windows binary package for newer versions of python.
>
I don't understand why this is
In article ,
Gelonida N wrote:
> The sh module looks intersting, but it's not supported for Windows
> platforms.
"The X module looks interesting but it's not supported for Windows" is
true for many values of X. It's all part of the TCO of using a
brain-dead operating system.
--
http://mail
Am Donnerstag, 25. Oktober 2012 12:31:46 UTC+2 schrieb Schneider:
> Hi Folkz,
>
> how can i create a SSH-Connection with python? I have to send some
>
> commands to the remote host and parse their answers.
>
> greatz Johannes
There is a module in chilkat.
http://www.ex
thank you guys for the huge list of answers,
In my setting I have to access some routers and firewall from a
linux-client.
I think I'll try Fabric.
On 26.10.2012 06:20, Rodrick Brown wrote:
On Oct 25, 2012, at 6:34 AM, Schneider wrote:
Hi Folkz,
how can i create a SSH-Connection
On 10/26/2012 05:22 AM, Jason Friedman wrote:
how can i create a SSH-Connection with python? I have to send some commands
to the remote host and parse their answers.
Consider also the sh module:
http://amoffat.github.com/sh/tutorials/2-interacting_with_processes.html.
Just a minor comment
at farbic
| (at least not as solution on windows python 2.7 without having to try to
| recompile pycrypto myself)
Many years ago we ran an ssh executable on Windows; it was a tiny
standalone kit consisting, IIRC, of the Cygwin libc and ssh. Or you
could just install Cygwin...
That would let you use
ws python 2.7 without having to try to
| recompile pycrypto myself)
Many years ago we ran an ssh executable on Windows; it was a tiny
standalone kit consisting, IIRC, of the Cygwin libc and ssh. Or you
could just install Cygwin...
That would let you use Python's subprocess module to invoke
On 10/27/2012 02:21 AM, Roy Smith wrote:
In article ,
Gelonida N wrote:
Another problem is, that paramiko depends on pycrypto 2.1+
which doesn't exist as binary release for python 2.7
I'm running paramiko-1.7.6 with python 2.7.3 on my Ubunto Precise box.
I'm reasonably sure all I did was "
s fabric capable of performing scp / sftp
Fabric uses ssh to make connections, and it is capable of copying files.
For all intents and purposes, I'd say that means it is capable of
"performing scp / sftp" (both of which are just front-ends to the same
basic ssh protocol.
But, keep
On 10/25/2012 12:47 PM, Kamlesh Mutha wrote:
You can use paramiko module. Very easy to use.
I also use paramiko for a small script.
However I'm a little hesitant to use paramik for new code.
The web page says: "last updated 21-May-2011"
and the github url http://github.com/robey/paramiko/
On Oct 25, 2012, at 6:34 AM, Schneider wrote:
> Hi Folkz,
> how can i create a SSH-Connection with python? I have to send some commands
> to the remote host and parse their answers.
> greatz Johannes
Fabric is the way to go!
> --
> http://mail.python.org/mailman/listinfo/py
> how can i create a SSH-Connection with python? I have to send some commands
> to the remote host and parse their answers.
Consider also the sh module:
http://amoffat.github.com/sh/tutorials/2-interacting_with_processes.html.
--
http://mail.python.org/mailman/listinfo/python-list
On 25 Oct 2012 16:55:46 GMT, Peter Pearson wrote:
> On Thu, 25 Oct 2012 12:16:58 +0200, Schneider wrote:
>> how can i create a SSH-Connection with python? I have to send some
>> commands to the remote host and parse their answers.
>> greatz Johannes
>
&
On Thu, 25 Oct 2012 12:16:58 +0200, Schneider wrote:
> how can i create a SSH-Connection with python? I have to send some
> commands to the remote host and parse their answers.
> greatz Johannes
I've been using Twisted (twistedmatrix.com). It is especially
convenient for the se
On 2012-10-25, at 3:16 AM, Schneider wrote:
> how can i create a SSH-Connection with python? I have to send some commands
> to the remote host and parse their answers.
I have yet to use it, but Fabric (http://docs.fabfile.org/en/1.4.3/) should
have everything you're looking for.
In article ,
Schneider wrote:
> Hi Folkz,
> how can i create a SSH-Connection with python? I have to send some
> commands to the remote host and parse their answers.
> greatz Johannes
At a low level, you want to look at the paramiko library. Built on top
of that, and adding ho
You can use paramiko module. Very easy to use.
On Thu, Oct 25, 2012 at 4:04 PM, Laszlo Nagy wrote:
> On 2012-10-25 12:16, Schneider wrote:
>
>> Hi Folkz,
>> how can i create a SSH-Connection with python? I have to send some
>> commands to the remote host and parse
On 2012-10-25 12:16, Schneider wrote:
Hi Folkz,
how can i create a SSH-Connection with python? I have to send some
commands to the remote host and parse their answers.
greatz Johannes
http://www.lag.net/paramiko/
Another solution would be to use subprocess and/or pexpect
--
http
Hi Folkz,
how can i create a SSH-Connection with python? I have to send some
commands to the remote host and parse their answers.
greatz Johannes
--
http://mail.python.org/mailman/listinfo/python-list
Chris Rebert writes:
> Use the `subprocess` module instead (with shell=False). You then won't
> need to worry about escaping.
> http://docs.python.org/library/subprocess.html
You will still need to worry about escaping because on the remote end
you invoke ssh which is a shell. Th
Ismael Farfán writes:
> How about something like this:
> os.system ( 'ssh remoteuser@remote python remote.py "arg 1" "arg 2" "arg 3"' )
That won't work. You need an additional level of quoting because ssh is
also a shell so it adds an
he remote machine).
> 3. Has anybody been able to do this using os.system ?
>
> I tried this
>>>> import os
>>>> os.system ("ssh remoteuser@remote python remote.py arg1 arg2 arg3")
>
> This worked, but if the arguments i tried to pass, had spaces, i was
On 9/19/2012 12:50 PM ashish said...
Hi c.l.p folks
Here is my situation
1. I have two machines. Lets call them 'local' & 'remote'.
Both run ubuntu & both have python installed
2. I have a python script, local.py, running on 'local' which needs to pass
arguments ( 3/4 string arguments, contai
nts ( 3/4 string arguments, containing whitespaces like spaces, etc )
>to a python script, remote.py running on 'remote' (the remote machine).
You haven't provided very many details, so it's possible ssh is the
low-impact solution, but don't discard the possibility of usi
needs to pass
> arguments ( 3/4 string arguments, containing whitespaces like spaces, etc )
> to a python script, remote.py running on 'remote' (the remote machine).
>
> I have the following questions:
>
> 1. What's the best way to accomplish my task ?
>
ning whitespaces like spaces, etc ) to
a python script, remote.py running on 'remote' (the remote machine).
I have the following questions:
1. What's the best way to accomplish my task ?
I have researched quite a bit & pretty much everybody is using ssh.
After googling a bu
7;)
My console result:
> fab lsfiles
No hosts found. Please specify (single) host string for connection:
localhost
[localhost] run: ls -l ~/
[localhost] Passphrase for private key:
... file listing follows ...
How can I get fabric to use my .ssh/known_hosts file?
system details:
Python 2
On Sat, Apr 7, 2012 at 5:41 PM, Dennis Lee Bieber wrote:
> The WinXP machine would need to have X-client translator (something
> that redirects all the Windows native graphics into X protocol and ships
> it to the specified server machine).
>
> As I recall -- such are not cheap appli
On 4/7/2012 11:59 AM, goldtech wrote:
I thought if I SSH
> even from a Linux to a Windows machine whatever I say on the SSH
> client command line would be the same as me doing a command on the
> "DOS" command-line in Windows. I incorrectly thought SSH is just a
> tunnel fo
1 - 100 of 348 matches
Mail list logo