Tagged Questions
1
vote
0answers
96 views
“plink.exe” hangs on Windows Server 2008 R2 , creates process “conhost.exe”
I am new to the whole Windows world. If this is not the place to post this question please point me to the right one. If there is any better place to ask this question, please tell me that too.
Few ...
0
votes
1answer
118 views
Remote plink ssh program ends prematurely
I have a program that can be run via remote plink ssh on a different PC using windows command prompt
plink [username]@[ip address] -pw [password] ./program
or:
plink -ssh -l [username] -pw ...
0
votes
1answer
452 views
Putty (plink) - Execute Python on remote Linux server
I have an Ubuntu server which has a python script that runs a terminal command-based interface. I'm using plink to login and immediately execute the python script:
plink.exe -ssh -l goomuckel -pw ...
3
votes
1answer
197 views
Passing arguments from a command prompt to remote ubuntu machine
I am trying to pass arguements to a local script to be executed on a remote machine.
The script works fine as I have tested it passing variables in manually.
I am trying to use plink for this.
I take ...
0
votes
0answers
436 views
Pass a command via SSH using plink
I'm trying to pass a command via ssh using plink. If I connect with
plink.exe -v -ssh -batch user@ip
Then I can type in the command which would be
reader.check_status()
The will return a list of ...
0
votes
1answer
395 views
Login syntax for plink using ip, username, and password
I'm trying to connect to a VM through the command line using plink with this syntax:
plink -v "123.123.12.100 -l user -pw pass"
But I keep getting this
Looking up host ...
-1
votes
2answers
639 views
plink ssh as root, access denied
I'm trying to connect to a server via plink. However, I'm getting the following error:
C:\>plink -ssh -pw password root@server-name
Using username "root".
Access denied
My sshd_config file ...
1
vote
1answer
169 views
While Using PLink Only First Command Is Executing
I want to connect putty using plink and want to run some specific commands which is present in text file. But I can see only first command getting executed. Do I need to give any command separating ...
0
votes
0answers
85 views
send non-command hex code string in plink
I would like to be able to send a string of hex codes, some of them equal to non-printable ASCII chars on an SSH tunnel using Plink.exe.
The is not connecting to a PC but an embedded device which ...
0
votes
0answers
12 views
TBatch script to throw error if command is not successful [duplicate]
Possible Duplicate:
get return code from plink?
I am executing a batch file to remotely upgrade the embedded system running in Linux fedora 11.
Requirement -> From windows batch file I ...
0
votes
0answers
231 views
plink.exe line-wrapping not working
I am using plink.exe to connect with SSH in a Win7 command console. Everything works great except line-wrapping. After I've connected via SSH, if there's a line that overflows it does not wrap to ...
0
votes
1answer
196 views
send non-command string in plink
I am trying to use plink to send a data string to an embedded SSH server. If I log in using plink on the command line like so
plink test2 -l admin
and wait for the "Using username "admin" line, ...
1
vote
2answers
265 views
How to get Read+Write access to github via plink?
SSH access to github has been blocked in China, I followed this tutorial to setup a ssh tunnel:
$ plink -N myuser@myhomessh.com -pw mypassword -L 9418:github.com:9418
$ git clone ...
0
votes
1answer
1k views
Unix/Windows scripting help: pass command line parameter from Windows to Unix
So I was doing a development project for my work and basically the idea is that we have a Excel VBA macro that needs to do some parsing of files, create a new file and send the file location to a Unix ...
2
votes
0answers
437 views
Configuring msysgit to use putty/plink
Apologies in advance for the basic question - I'm new to git and am sure that I'm missing something super easy that someone could answer very quickly.
During the msysgit installation I specified that ...
0
votes
1answer
2k views
Unable to connect with plink with public/private key's
I am able to connect with Putty with my public/private key without being prompted for the passphrase (or password). I have pageant running in the background.
However, trying to connect with plink ...
3
votes
2answers
3k views
Using Plink (PuTTy) to SSH through Python
I am trying to write a python script that will SSH to a server and execute a command. I am using Python 2.6 on Windows, and have installed plink and paegent (for ssh keys) and added them all to my ...
4
votes
0answers
845 views
Plink does not see Pageant [closed]
Pageant is started. I can login to server using Putty with blank key field.
This command works fine:
Plink -i c:\path\to\key.ppk git@server.name info
But this one says "Server refused our key" ...
0
votes
1answer
490 views
plink truncating commands
I'm using plink.exe on WinXP to run some commands on Z/OS BASH. My commands are interspersed with echo commands so that I can parse the output and work out what is where. The first dozen or so ...
1
vote
0answers
203 views
Pass extra command line parametes to plink in ANT CVS task
I'm trying to make plink use the private key using the commnand line -i instead of relying on pagent in a ANT CVS task. I tried to set the cvsRsh param to "plink.exe -i my_private_key" without ...
2
votes
1answer
1k views
Opening a plink window from VB.NET application without showing the black ugly plink window
I am looking to call plink from a vb.net application in the background (without showing the black plink cmd screen) is it possible?
0
votes
1answer
606 views
getting the list of the saved session in putty using plink
I am trying to write my scripts under windows to control putty.
Say I have a session called mySession. I can send a command to it using:
plink -load mySession -l myUserName -pw myPassowrd ps -ef
...
1
vote
3answers
4k views
problem executing plink(putty) command
I am using Plink to execute remote command:
When using this from cmd prompt in single line it doesnot work:
C:\>c:\plink.exe -l userId -pw psw -m C:\goto\test.bat remote_host
It says unable to ...
1
vote
2answers
710 views
plink asking for login credentials when already argumented?
plink 12.34.567.89 -ssh -pw <hidden pass> -l <hidden username> svn update ~/public_html
The ip addresss above is hidden/modified
When I execute this, it asks: "login as: _"
But I ...
0
votes
1answer
901 views
Run bash script to control JBoss from Windows using PLink.exe?
I created a windows batch file with the following content:
plink -batch PuttySaveSessionName -pw thePassword "bash stop.sh"
stop.sh is located in the home directory of the linux machine I log in ...
0
votes
4answers
5k views
How does PUTTY/PLINK determine a command has returned?
Is it newline? prompt? What exactly?
Trying to run powershell over plink and the command executes but plink doesn't recognise its finished and the session hangs. Most curiously though, the command ...
1
vote
3answers
8k views
Mercurial “hg clone” on Windows via ssh with plink issue
I have a Windows Server 2008 machine (iis7) that has CopSSH set up on it. To connect to it, I have a Windows 7 machine with Mercurial 1.5.1 (and TortoiseHg) installed.
I can connect to the server ...
0
votes
3answers
892 views
Speeding up ssh in batch files
This is my situation:
I have a linux server/media center with a windows client.
My goal is to remote control rhythmbox amongst other things.
I've done this ...
1
vote
1answer
2k views
plink Password Over and Over
I am using plink as part of GIT setup and I have setup my remote keys correctly and can connect via Putty.
However, when I attempt to run msysgit and TortiseGit to clone a git directly - enter the ...
1
vote
2answers
3k views
PLINK change character set translation to UTF-8 (utf8)
Does anyone know how to configure the character set translation on plink (the command line version of Putty) to UTF-8? I'm trying to SSH to a Linux server whose character set configuration is UTF-8.
...