I am trying to SSH using plink.exe in Emacs Tramp. I've downloaded the plink.exe which works in a normal terminal but when I use
C-x C-f
/[email protected]:/afs/cad/u/g/g/gg88/public_html/index.html
In the minibuffer,
Tramp: Waiting for prompts from remote shell also appears.
c:/Users/name/emacs-24.3/bin where plink.exe is located is in exec-path. My .emacs contains only these lines. But after checking exec-path does contain the directory plink.exe is in.
(require 'tramp)
(setq tramp-default-method "plink")
There is also no problem using M-x eshell, going to c:/Users/name/emacs-24.3/bin, and running
plink.exe [email protected]
What can I do next to get this working?
Edit Got plink to be recognized by adding the path to plink directly to the PATH variable but still have the
Tramp: Waiting for prompts from remote shell also appears.
problem
Edit2 Messages buffer
Tramp: Opening connection for [email protected] using plink...
Tramp: Sending command `plink -l gg88 -ssh afs1.njit.edu && exit || exit'
Tramp: Waiting for prompts from remote shell
Tramp: Sending Password
Tramp: Waiting for prompts from remote shell [7 times]
Tramp: Sending command `plink -l gg88 -ssh afs1.njit.edu && exit || exit'
Tramp: Opening connection for [email protected] using plink...done
Quit [2 times]
(require 'tramp)
. – Stefan