Question

I'm in a class that uses an implementation of Emacs on a school server. I'm on a mac running snow leopard, and I have my own implementation of Emacs on it. To access the server-Emacs, I ssh into the server and launch Emacs from its location there.

I'm relativly new to emacs, and I have a particular problem whenever I try to access the server-emacs from my local-emacs' shell-mode, having ssh'd into the server. It gives me the error that "Screen size -1x80 is too small", and doesn't launch the server-emacs.

I've the separate issue that when I try to do this in Apple's terminal, it does launch the server-emacs, but I really, really dislike the interface when emacs is launched within a terminal.

I've tried a couple of times to launch the server-emacs within a new window, in both scenarios, but apparently I'm not doing it right.

Was it helpful?

Solution

I think that Trey Jackson's suggestion of tramp (or the more old-fashioned 'ange-ftp) is probably your best bet.

In general, running emacs inside an emacs is never a good idea. You either want to run emacs on the server (in -nw mode inside the terminal, or via some $DISPLAY magic) or run it on your mac (via tramp). There isn't really a good way to do both.

OTHER TIPS

I think it'd be useful to understand what you're trying to do.

Do you just want to edit files on the server? If that's the case, read the documentation for tramp, and try:

C-x C-f //user@server:/path/to/file

If you really want to use the emacs running on the server, try creating a frame on your

(if so, look up tramp) If you want to actually use the emacs from the server, but have the window display on your mac:

ssh server
setenv DISPLAY mymac:0
emacsclient file &

This does assume you're running X11, and know how to resolve the display for your Mac. You can get X11 for the Mac here.

It's a bit hard to tell what you are doing, but you probably want to ssh to the server with an X tunnel, then run emacs there which will pop up the window on your mac.

First, don't use Terminal.

On your mac, start up X11 (google for XQuartz if you don't already have it). Start up an XTerm (it should do this by default). From that XTerm, ssh to your server with the -Y option:

ssh -Y me@server.something

This should get you a remote shell and setup the DISPLAY environment to tunnel right back to your Mac's X server. Test it by running an xterm from there. If that works, you can instead run emacs. If that works, you can combine it with the ssh invocation:

ssh -Y me@server.something /usr/bin/emacs # or whatever path you need

You should set up ssh to not require a password but that's more than you asked for.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top