As a quick solution, I ditched the standard route of using ange-ftp and went for plink. This is available for download from the Putty distribution. By making the following change in my .emacs, everything worked fine.
(require 'tramp) (setq tramp-verbose 10) (setq tramp-debug-buffer t) (setq tramp-disable-ange-ftp) (setq tramp-default-method "plink") (setq tramp-ftp-method "scp") (setq tramp-default-user "user-name") (setq tramp-default-host "host-name-or-ip")
0 comments:
Post a Comment