Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to open a file inside Emacs which is located on a remote server, with sudo powers on the server. I can open local files with sudo via Tramp like this:

C-x C-f /sudo::/home/user/file

But I want to use sudo on the server:

C-x C-f /sudo::user@server/home/user/file

But this gives me sudo powers on my local machine, it asks for my sudo password on the local machine. Is there a way to use sudo on the server?

BTW: Emacs is not installed on the server

share|improve this question
can't you command as root directly on the server? – Chmouel Boudjnah Feb 1 '10 at 16:01
I have a user with sudo privileges, but not the root password. – Fernando Briano Feb 1 '10 at 16:09

5 Answers

up vote 18 down vote accepted

I think multi-hop filenames in tramp is what you're looking for.

The first hop would be ssh and the second would be sudo.


Update: Recent versions of emacs support multiple hops using proxies:

(add-to-list tramp-default-proxy-alist ("my-sudo-alias" nil "/ssh:user@ssh-host"))

then invoke by opening:

/sudo:my-sudo-alias:file-on-ssh-host
share|improve this answer
   
This seems like the solution, but I get: "multi method is no longer supported" Can you point me to an updated manual? – Fernando Briano Feb 2 '10 at 13:48
M-x info, C-s tramp :) You may need to define a fake host as the target of your sudo and add it to tramp-default-proxy-alist. – Dave Bacher Feb 2 '10 at 17:47
1  
Documentation has moved to gnu.org/software/tramp/#Multi_002dhops – phils Aug 12 '10 at 12:13
2  
I couldn't get it running in my configuration (error 255?), but the following line in .emacs works: (set-default 'tramp-default-proxies-alist (quote (("my-sudo-alias" nil "/ssh:user@ssh-host:")))) – ang mo Jan 20 '11 at 15:09

I had some troubles with the selected answer. However, it worked when I added this line to .emacs:

(add-to-list 'tramp-default-proxies-alist '(".*" "\`root\'" "/ssh:%h:"))

And then executed the following:

/sudo:ssh-host:file-on-ssh-host

It was slightly confusing because at one point I was prompted for the "root" password, but entering my user's password granted me access. It also universally works on all hosts on the network. Also, I can still do this to not be root:

/ssh:ssh-host:file-on-ssh-host

share|improve this answer
1  
This was not working for me. It looks that in Ubuntu, at least with version 23.2.1 of Emacs and version 2.1.18-23.2 of tramp this does not work. This works, though: info.solomonson.com/content/… – gaizka Oct 14 '10 at 9:59
(set-default 'tramp-default-proxies-alist (quote ((".*" "\`root\\'" "/ssh:%h:")))) – gaizka Oct 14 '10 at 10:01
I am not able to get either of the solutions above to work (add-to-list or set-default). The first causes Emacs to choke on startup and the second gives me "Host abc.xyz.com' looks like a remote host, sudo' can only use the local host" as soon as I enter the second colon in "/sudo:abc.xyz.com:". Ideas? Emacs 23.1.1 on Ubuntu 10.04 LTS. – SabreWolfy Jul 25 '11 at 13:37

You have to ssh into the server first, then you have to run emacs locally.

Or you can use NFS with no_root_squash, or you can try with emacs server/client, although I have no idea of what may happen (do not use emacs myself)

share|improve this answer
NFS will do the trick :P – Hassan Syed Feb 1 '10 at 15:49
I would use sshfs instead – Ben Feb 1 '10 at 15:53
I tried, but I cannot access files as root with sshfs, when mounting it as regular user. I guess it is a setup problem. – Dan Andreatta Feb 1 '10 at 16:05
As Hassan noted, no_root_squash should be used with care. – Dan Andreatta Feb 1 '10 at 16:07

As of Emacs 24, an analog of the old multi-hop syntax has been layered on top of the modern tramp-default-proxies-alist approach, meaning that you can once again perform multi-hops without any prior configuration. For details, see:
C-hig (tramp) Ad-hoc multi-hops RET

With the new syntax, each 'hop' is separated by |. In this instance, it would look like:

C-xC-f /ssh:user@server|sudo:server:/home/user/file RET

As this still uses the proxy mechanism underneath,
C-hv tramp-default-proxies-alist RET
should now include the value:
("server" "root" "/ssh:user@server:")

Meaning that the proxy /ssh:user@server: is going to be used whenever you request a file as root@server.

Something important to note here is that you usually don't need to specify server in the sudo:server part -- and indeed sudo:: will still work in a sense -- however if you do that then the dynamic proxy created will contain the hostname you originated from rather than the host you connected to, so I would recommend being explicit; otherwise it will not only look confusing (as the wrong host will be displayed in filenames), but it will also mean that subsequent attempts to use sudo:: on the localhost will be proxied to this remote server!

share|improve this answer
Now added to emacswiki.org/emacs/TrampMode as well. – phils May 7 at 8:16

From the tramp multi-hops configuration webpage

 (add-to-list 'tramp-default-proxies-alist
                   '(nil "\\`root\\'" "/ssh:%h:"))
      (add-to-list 'tramp-default-proxies-alist
                   '((regexp-quote (system-name)) nil nil))

Then any

C-x C-f /sudo:remote-host:/file

will open file using sudo after logged with the same username of the user running emacs but on the remote machine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.