How can I use telnet from Emacs in Windows?

2

There does not seem to be a built in Telnet client for Emacs. I am using Windows 7. I would either like to run:

M-x TELNET

: or I would like to run "telnet" from shell or eshell

Yazz.com

Posted 2010-11-29T18:40:38.797

Reputation: 2 813

Answers

2

You can combine eshell with tramp. In eshell, use cd /telnet:host.example.com:/remote/path to browse a remote directory. (Do you really want telnet and not ssh?)

I'm not sure if Windows's telnet.exe utility would work in a M-x term buffer. Windows terminals (consoles) behave differently from unix terminals (ttys), and emulating a Windows console inside a program is difficult. The Cygwin telnet program would work, though (and so would the Cygwin ssh program).

Gilles 'SO- stop being evil'

Posted 2010-11-29T18:40:38.797

Reputation: 58 319