From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "MitchellCowen" Newsgroups: gmane.emacs.help Subject: tramp, emacs, xp, putty Date: 5 Jan 2007 08:50:03 -0800 Organization: http://groups.google.com Message-ID: <1168015803.195812.40590@q40g2000cwq.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1168018950 21482 80.91.229.12 (5 Jan 2007 17:42:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 5 Jan 2007 17:42:30 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jan 05 18:42:27 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 1H2t4p-0008Vv-OH for geh-help-gnu-emacs@m.gmane.org; Fri, 05 Jan 2007 18:42:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H2t4p-00038M-1Y for geh-help-gnu-emacs@m.gmane.org; Fri, 05 Jan 2007 12:41:59 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!q40g2000cwq.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 60 Original-NNTP-Posting-Host: 74.100.73.253 Original-X-Trace: posting.google.com 1168015818 11810 127.0.0.1 (5 Jan 2007 16:50:18 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Fri, 5 Jan 2007 16:50:18 +0000 (UTC) User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: q40g2000cwq.googlegroups.com; posting-host=74.100.73.253; posting-account=-yg-NA0AAAD51zzhVbi-3fcaRel6zKQs Original-Xref: shelby.stanford.edu gnu.emacs.help:144554 Original-To: help-gnu-emacs@gnu.org 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:40158 Archived-At: Hi all. I've been browsing through the list archives but I still don't understand how to install tramp to work with normal emacs [not xemacs or emacsW32] on XP. Someone says that emacs22 already has tramp but I don't see the binary at http://ftp.gnu.org/gnu/emacs/windows/ . This is what I've tried so far: 1. Downloaded cygwin 2. Downloaded tramp 3. Unpacked tramp to C:\Program Files\emacs\emacs-21.3\tramp-2.1.7 4. change directory to the tramp-2.1.7 directory 5. ./configure --with-contrib --with-lispdir='C:/Program Files/Emacs/site-lisp' --infodir='C:/Program Files/Emacs/info' I get the response : command not found4: ./configure: line 24: syntax error near unexpected token 'newline' ./configure: line 24 'case set -o 2> /dev/null' in *posix *>set -o posix;;' sac I am assuming this is some problem with cygwin. Any ideas how to do this correctly? If I do get tramp installed, is this what I need to put in .emacs? ; tramp stuff (add-to-list 'load-path "C:/Program File/emacs/emacs-21.3/tramp-2.1.7/lisp/") (add-to-list 'load-path "C:/Program Files/emacs/emacs-21.3/tramp-2.1.7/") (require 'tramp) (setq tramp-debug-buffer t) ;; optional (add-to-list 'tramp-methods '("plink" (tramp-connection-function tramp-open-connection-rsh) (tramp-rsh-program "plink") (tramp-rcp-program nil) (tramp-remote-sh "/bin/sh") (tramp-rsh-args ("-v" "-ssh")) ;; "-v" optional (tramp-rcp-args nil) (tramp-rcp-keep-date-arg nil) (tramp-su-program nil) (tramp-su-args nil) (tramp-encoding-command "uuencode xxx") (tramp-decoding-command "uudecode -p") (tramp-encoding-function nil) (tramp-decoding-function uudecode-decode-region) (tramp-telnet-program nil) (tramp-telnet-args nil))) (setq tramp-default-method "plink") ####### Thanks, Mitch