Plink (PuTTY Link) is a command-line interface to the PuTTY back ends, written and maintained primarily by Simon Tatham. It is a connection tool similar to UNIX ssh. It is mostly used for automated operations

learn more… | top users | synonyms

0
votes
1answer
59 views

Windows batch script and plink.exe

I would like to combine Windows batch script and plink.exe tool (http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html) and run as loop but no luck, below is mine. thanks for your help ...
0
votes
1answer
37 views

Plink error - “unix shell commands cannot be executed using this account” [closed]

I'm trying to run plink.exe to execute a command on a remote UNIX machine. When logging in using Putty, my command is executed successfully. My problem is when using the same credentials (same user ...
0
votes
0answers
13 views

How to get large amount of data from plink process

I am not getting the full output from the following set of code. When i run this command it is starting the plink process. Since the output is huge am not able to get the complete output and once ...
0
votes
1answer
45 views

plink on raspberry pi

I am trying to develop a command line program in C++ on windows which uses putty to control a Raspberry Pi. I have used the Putty application and it works 100% fine. However I have tried to use the ...
1
vote
1answer
44 views

Process not redirecting complete output; not showing full response from SSH Server

I'm starting up a process and making use of plink to create a reverse tunnel to an ssh that's in my local network. I can connect fine to the server, but its not displaying the full content on the ...
1
vote
1answer
431 views

plink process doesn't end if calling user isn't logged in

I'm calling plink from C# code which is running as a certain Windows user. I call plink like plink.exe user@hostname -pw password commands Usually the plink process ends immediately after the ...
0
votes
1answer
37 views

cmdkey, mstsc and local tunnel

I have one problem, I am trying to run RDP with username and password set. I am using cmdkey for that. It works properly for normal connections but when I want to connect to tunneled session it ...
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 ...
0
votes
2answers
210 views

password encryption used for plink.exe command

I would like to encrypt a password in powershell I tried this : In CLI : Read-Host -prompt "Password ?" -AsSecureString | ConvertFrom-SecureString | out-file "D:\root.pwd" In my script.ps1 : ...
0
votes
1answer
231 views

plink automated batch script

How would I create a simple batch script(windows) to close then current plink session if it times out and reconnect automatically? something like this: if "plink.exe" == "false" ( "plink ...
0
votes
1answer
148 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 ...
1
vote
0answers
174 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
45 views

why Hardy-Weinberg test is different in GenABEL and Plink?

When I use this Plink command: Plink --file filename --hardy will create a new file filename.hwe with the different p-value for each marker, by contrast with GenABEL : library(GenABEL) ... ...
1
vote
1answer
176 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
1answer
72 views

ped file and map file in r

I have two files: pedigree.ped and pedigree.map. These two file formats can be used by Plink. In my case I want use them with R, and I think I must do a conversion to R format. For eg: missing values ...
0
votes
0answers
13 views

How to import second test's item paramaters with “plink” package in R

I am trying to import item paramaters from PARSCALE output file with using "plink" package in R. While I import "DATA1.PAR"file with using codes below it only imports only first test item paramaters. ...
3
votes
1answer
207 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
1answer
37 views

Running jdbc on top of multiple port forwarding

When I want to access the database, there is an architecture through which I need to tunnel my connection. So, when I have to use a GUI tool like MySQL Workbench, i have to open three Putty sessions. ...
2
votes
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
0answers
137 views

Plink timeout and proxy under linux

I have made a script in bash which create a connection to a list of server. After each connection, if it succeed, i execute a command. Connections are under a loop. For know i use Plink. My script ...
0
votes
1answer
516 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 ...
1
vote
2answers
88 views

Scripting linux commands to modify data in files

I have a series of devices that I need to SSH into, modify some files changing the device name, and network settings. The files contain data such as: NETWORK_ETH1_CLIENTIP_LIST='10.47.19.182' ...
0
votes
2answers
106 views

Plink passing arguments

plink user@10.220.60.xx -t '/home/user/test/testpgm' I'm able to run the below program which resides on a Linux machine from a windows machine using the above plink cmd. #include<stdio.h> int ...
2
votes
1answer
201 views

Using plink and executing from a remote machine(windows)

plink user@10.220.60.xx '/home/user/test/testpgm' On running the below program which resides on a Linux machine from a windows machine using plink, I get only the following messages. Test Pgm Enter ...
0
votes
0answers
525 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 ...
1
vote
1answer
3k views

plink's host key is not cached in the registry when run from perl on IIS/Windows

I'm trying to start a perl script on another server from a web page and I'm having problems with plink: it doesn't seem to remember the host key when run from the IUSR_ user. I managed to reduce the ...
-1
votes
2answers
702 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 ...
0
votes
1answer
414 views

how to remove duplicate snps with plink

i am working with PLINK to analyse genome-wide data. Does any one now how to remove duplicate SNP's ? thanks niki
0
votes
1answer
456 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 ...
0
votes
0answers
230 views

StreamReader.ReadToEnd Hangs

I have been developing an application that connects VB.net platform to Unix Servers and this is done via plink.exe being triggered via command button. Please see below code: Dim p As New Process ...
1
vote
0answers
129 views

How can i change user name for linux machine in batch file [closed]

I have batch file which will start plink.exe to login into remote linux machine: start C:\Users\279293\Desktop\PLINK.EXE -ssh -P 22 prateek@10.205.198.34 -pw password Now i to change ...
1
vote
1answer
195 views

Having Numeric data type and character data type in the same column of a data frame?

I have a large data frame (570 rows by 200000 columns) in R. For those of you that are familiar with PLINK, I am trying to create a PED file for a GWAS analysis. Plink requires that each missing ...
11
votes
3answers
7k views

How do I set GIT to use Plink.exe

I'm trying to configure Git to use Plink, now for some reason this option isn't available to me I tried uninstalling and reinstalling Git a hundred times I can't get to this option
0
votes
0answers
93 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 ...
5
votes
1answer
2k views

get return code from plink?

In a DOS batch script, I'm running a single command on a remote (also windows) computer using plink. Formerly, this command was only run on the local machine, and was relying on the return code to ...
2
votes
1answer
786 views

Running plink in winpexpect

I'm trying to use plink in winpexpect to connect to a remote Linux server. I'm using the following code: child = winpexpect.winspawn('plink root@hostname') child.logfile = sys.stdout i = ...
1
vote
0answers
242 views

Not able to run psservice.exe and plink.exe from servlet deployed in Tomcat 6.0 using runtime exec and processbuilder

I am trying to run psservice.exe and plink.exe from servlet using runtime exec. It will be used for starting or stopping services on remote computer running windows and unix aix. I have set system ...
0
votes
1answer
303 views

PLINK and removing parts of the data

I have a file of SNPs that was processed using plink. Is there an easy method to remove the monomorphic snps from the file using plink? or is this best done using python. I have a list of several ...
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 ...
1
vote
2answers
565 views

plink.exe from windows service cannot find pageant

I have one windows service which will use plink.exe for ssh connection and I found that plink cannot find the running pageant. Here is the steps I have done so far. Install windows service to run ...
2
votes
2answers
1k views

ssh to run shell script on remote machine and then copy the output to local machine

I am using plink to execute the shell script on the remote MachineB. And shell script is there on the MachineA(Windows Box). C:\PLINK>plink uname@MachineB -m test.sh Using keyboard-interactive ...
1
vote
2answers
434 views

Executing the windows batch file

What I am doing currently- Execute the shell script on MachineB from MachineA (Windows Environment). Then wait for the shell script to complete its task, in my case it will write the output to a ...
1
vote
2answers
2k views

sh: …: is not an identifier when trying to invoke shell scripts using plink

Below is my shell script that I am trying to execute using PLINK on MachineB from MachineA(Windows Machine). #!/bin/bash export HIVE_OPTS="$HIVE_OPTS -hiveconf mapred.job.queue.name=hdmi-technology" ...
0
votes
0answers
62 views

Hop Box issue Remote Login Fails

We have a setup whereby we cannot login to ServerB directly by using putty. We have to first login to ServerA by providing username and password and it somehow takes us to serverB and prompts for the ...
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
203 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, ...
0
votes
1answer
373 views

No access to environment variables while remote compiling using Code::Blocks, plink and makefiles

I'm trying to set up Code::Blocks under Windows 7 Professional SP1 to work for remote compilation (using PuTTY link -> plink) on a linux server, but I am not much familiar with that topic. This is the ...
1
vote
2answers
276 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
166 views

Plink and X display location

Using X forwarding with Putty there is an option to specify the X display location, e.g. localhost:100. How can I do the same think using Plink? I wish to have multiple X servers on the same box ...
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. ...

1 2