emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: tramp does not work when using athena


From: Michael Albinus
Subject: Re: tramp does not work when using athena
Date: Mon, 18 Jul 2011 22:50:25 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

David Engster <address@hidden> writes:

> Hi Michael,

Hi David,

> are there any news on that front? I'm afraid I'm struggling with the
> same problem on GNU/Linux with a Lucid-build. While using 'sshx' works
> in principal, it fails to use a shared ssh connection, which is pretty
> important for me when using Tramp in eshell, otherwise it's just too
> slow. (Emacs/GTK works fine, though.)

Looks to me like you need a combination of scpc and sshx. Hmm, that's a
problem, Tramp does not support to combine methods.

What about creating your own method? Something like this in your .emacs:

(add-to-list 'tramp-methods
  '("myssh"
    (tramp-login-program        "ssh")
    (tramp-login-args           (("-l" "%u") ("-p" "%p")
                                 ("-o" "address@hidden:%%p")
                                 ("-o" "ControlMaster=yes")
                                 ("-e" "none") ("-t" "-t")
                                 ("%h") ("/bin/sh")))
    (tramp-async-args           (("-q")))
    (tramp-remote-sh            "/bin/sh")
    (tramp-default-port         22)))

> -David

Best regards, Michael.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]