37
votes

I started using emacs as my main editor a few days ago, and I'm in the process of gathering all customizations I need.

The main usage I'm giving it is for development of a C project on a remote Linux machine (RHEL 5). So far I was using plain vim (only as a text editor) and a bunch of shell scripts, and one day I decided I would try emacs. So far I like it.

But as a drawback I see that setting up the environment to run emacs is a long way to go, and instead of using it directly on the development machine (and set up the environment on every machine I use) I would try to just use it from my laptop and do the remote development.

I know about TRAMP but that only edits remote files as far as I know. The big obstacle is running shell commands on the remote machine with a single keystroke (I bound F5 to run a custom compile command on the remote machine's emacs).

How do you run shell commands on a remote machine with a single emacs keystroke? Do you know any other tips & tricks to do full remote development?

13
You could use ssh with x-forwarding and run Emacs on the remote machine displayed on your computer. - Nifle
In Emacs 23.2 the "compile" command is automatically remote when run from a TRAMP buffer. - MarcH

13 Answers

23
votes

TRAMP supports compilation and debugging on the remote machines (on which the files reside). This should be automatic and relatively seamless. Check out the documentation for remote processes.

20
votes

Don't worry. You can run anything in Emacs with a single keystroke. Others have noted ways you can do this elegantly with TRAMP, but if that doesn't suit (for whatever reason) you could also just cook up your own function using:

(defun arbitrary-remote-command ()
  (interactive)
  (shell-command
   "ssh user@remotehost arbitrary-command"))


(global-set-key (kbd "<f5>") 'arbitrary-remote-command)
10
votes

When doing remote development, I use screen which provides multiple virtual remote terminals available at the press of a couple of keys. This is indispensable for me. Not only does it provide virtual terminals, but your session is preserved on the server if your connection drops for any reason.

See the GNU Screen Survival Guide question for more information about getting started with screen.

I usually have one terminal open for source control operations, one for editing, one for compiling (I just have to switch to it and hit UpArrow+Enter), and one for debugging. Depending on the environment and application I'm working on, I may have more or fewer than this, but that's the general layout.

5
votes

Nice answer from Trey Jackson, but the answer from Matthew Flaschen actually helped me more.

I couldn't find a way to get TRAMP do the compiling, but accidentally I found the command remote-compile.

Now I just add these lines to my .emacs:

(setq remote-compile-user "root")
(setq remote-compile-host "localhost -p 3000")  ;This is just when tunneling
(setq compile-command " cd /usr/src/nexus/traffic && ./builder.sh compile ; cat builder.log")
(global-set-key (kbd "<f5>") 'remote-compile)

And before doing anything, set up the ssh connection using ControlMaster and I don't have to type passwords.

Summarizing:

  • Editing remote files: TRAMP
  • Multiple terminals saving states: SCREEN
  • Define emacs keybindings to execute remote commands: See Matthew Flaschen response
  • Remote compiling: Command remote-compile with ControlMaster

I think that covers some important actions to do remote-development.

2
votes

I would just ssh into the remote machine and run emacs in terminal mode instead of using TRAMP. TRAMP is really slow when you don't expect slowness, at least in my experience. I have also seen it fail in weird ways, and it is not always obvious how to "fix" it. If you ssh in, you won't be able to use emacs UI stuff, like the menus etc, but since you are used to vi that should not be an issue for you. In fact, you can just turn them off so that your ssh emacs experience is very similar to your local experience (if local != terminal mode) (1).

Using screen may be useful if you care about preserving your session in case the connection drops - apart from that you get similar functionality as virtual terminals with emacs buffers. For example, you can open many shell buffers and run various shell commands in emacs buffers. I use this to run many instances of sqlplus (use rename-buffer to give them all nice, friendly names).

Since you are ssh'd into the remote machine, you don't need to worry about running "remote" shell commands.

On the other hand, I am not sure what you mean by "I see that setting up the environment to run emacs is a long way to go". If you have source control, this should be trivial...(I bet you have a good reason).

(1) turn off menu, tool bar and scroll bars:

(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))

(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))

(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))

1
votes

Assuming you don't want to run emacs in terminal mode on your remote machine then it's fairly easy. As you know you can use TRAMP to edit remote files. I just set compile-command to 'ssh me@remote "cd /path/to/root && make"' and be done with it.

1
votes

I've tried TRAMP before for a situation like yours, but I too found it failing in strange ways, and slow in general.

I am now using Emacs to edit files mounted over an sshfs mount. This works very well for me.

To mount the remote file system (assuming you have the host set up correctly in .ssh/config and set up public keys to connect without a password)

$ sshfs remote:dir localdir

and edit as you like from then on!

As for compilation, see the other answers, they cover this in full.

1
votes

About tramp it may depends on tramp version you are using.

Personnally I was encoutering lot of problem with default tramp package and plink as backend to connect to remote hosts, so I upgraded tramp to a more recent version and solve numerous issues.

Actually I'm on a windows machine accessing to a linux (RH5) for remote compiling and browsing directories, reading/writing some files, compiling on remote machine works fine.

1
votes

For me, there is a problem with TRAMP, that is the remote toolchain is too old, and often it's not under my control.

So I wrote a package (ppcompile) to help me develop locally and compiling remotely, and then fixes compilation errors locally with the help of next-error .

0
votes

One thing no one has mentioned is running emacs off the remote machine, with a valid $DISPLAY variable corresponding to your current display.

Obviously you must run an X Server for your local display, but that's not a big deal even on windows [use the X Server built into Cygwin].

This generally requires network latency < 50ms. If you ping that remote box and get something > 50ms, you will be frustrated with this approach.

Below that, works great.

You will need to have SSH map the X port, there are plenty of docs out there on that.

0
votes

What I've used since about 1994:

cat <<-EOF >> ~/.emacs
(define-key global-map "\e`" 'compile)
(define-key global-map "\e~" 'remote-compile)
(require 'compile)
(setq remote-shell-program "ssh")
EOF

Now ESC-` runs compile, and ESC-~ runs /remote/ compile. It'll ask you for the hostname, and then pre-populate the command. Both compilations share the same history buffer.

It's soooo easy. It leverages a feature that's worked the same for decades, and it doesn't require any other lifting to work -- and it's just text over an ssh, so it's going to be very responsive and efficient over long or slow or congested links. I've found this prevents Fists of Network Rage a bit more.

0
votes

I have the same needs: virtual machine over Windows running Debian 10 connecting to RHEL7 development machines. and here is my solution.

First of all, I use sshfs to mount my remote home in a way that preserves paths in my local machine : shfs -o allow_other <remote-user-name>@<remote-host>:/home/<remote-host-home> /home/<remote-host-home>

Second, I configure ssh so that I don't need to type password again and again: I can follow the instructions in this link.

Finally, I can launch compilations through M-x compile, I edit the command and enter something like : ssh -C <remote-user-name>@<remote-host> "make -C <build-folder>"

The great thing with it is that you can click on the links when it founds compilation errors and the source files are opened automatically. It is very convenient.

-2
votes

Two cents: if bandwidth is not a big concern, I would give a crack at VNC.