From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Will Newsgroups: gmane.emacs.help Subject: Re: Emacs and Telnet Date: Sun, 18 Nov 2007 22:17:41 +0100 Message-ID: <5qboflFv6n3bU1@mid.individual.net> References: <5pj3r8FrkgneU1@mid.individual.net> <861wapfxfv.fsf@timbral.net> <86wssgdycs.fsf@timbral.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1195422037 30728 80.91.229.12 (18 Nov 2007 21:40:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 18 Nov 2007 21:40:37 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Nov 18 22:40:43 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Itrsf-0001N6-Nr for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Nov 2007 22:40:42 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ItrsS-0007z6-4p for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Nov 2007 16:40:28 -0500 Original-Path: shelby.stanford.edu!headwall.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 79 Original-X-Trace: individual.net f9txSJDXg+XbeMEORMi3eAYxaNcQa2fZSm5xvsKgQRgVH55Gn2 Cancel-Lock: sha1:vHiUBFal1DXHTF1LVq3d4aoZ4BU= User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) In-Reply-To: <86wssgdycs.fsf@timbral.net> Original-Xref: shelby.stanford.edu gnu.emacs.help:153898 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:49330 Archived-At: Hi, thanks for the replies so far. My question remains: How can I connect via telnet/ftp to a remote server via Emacs? I'd like to use the commands M-x telnet and C-x C-f /@:/ . Sofar I have tried out: -------------------------------------------------- 1) Telnet: GNU Emacs/W32 ;; .emacs (require 'telnet) (setq-default telnet-program "puttytel") ;; Interactive M-x telnet RET RET => starts Putty as an external program, not as as subprocess within Emacs, that's not what I want -------------------------------------------------- 2) Telnet: GNU Emacs/W32 ;; .emacs (require 'telnet) (setq-default telnet-program "telnet") ;; interactive M-x telnet RET RET => Buffer *telnet-* Process telnet-mimir _exited abnormally_ with code 255 => Buffer *Messages* if: Process telnet- not running -------------------------------------------------- 3) Telnet: cygwin-shell/cmd-shell in Emacs > telnet => login successful! > ssh => login failed! Pseudo-terminal will not be allocated because stdin is not a terminal. -------------------------------------------------- (4) Telnet: Cygwin-shell/CMD shell external (not in Emacs) => telnet and ssh login are successful! -------------------------------------------------- 5) FTP: Connecting via FTP with Emacs ;; Interactive M-x /@:/ => Buffer *Messages* Loading tramp...done Opening FTP connection to ...done Logging in as user @...done Getting PWD...done Doing CD...done Listing /@:/... => gets stalled... -------------------------------------------------- 6) FTP: Cygwin/CMD shell in Emacs => Login possible, but gets stalled when entering commands (e.g. ls) -------------------------------------------------- 7) FTP: Cygwin/CMD shell external (not in Emacs) => login successful, no problems when using commands (e.g. ls) -------------------------------------------------- Sorry, for this long email. Best, Will