Manuel Arriaga <[EMAIL PROTECTED]> wrote on Thu, 01 Jun 2000:
> emacs -f server-start

> how can I run the server without tying up a
> virtual console?

This is pretty basic unix stuff, but I guess you have to learn it from
somewhere. :-)  Put a & at the end of the (or any) command line, to put
that command in "background".  eg.

  emacs -f server-start &

> Is it possible to automatically start a "server" version of emacs after
> login so that mutt can always run emacsclient?

Sure.  This depends on which shell you're using, but each shell has a
startup file that is run every time you log in.  For bash, it's .profile
(or .bashrc, both are used and both work) in your home dir.  For tcsh
and the like, it's .cshrc.  Putting the above command (with the &) in
that file will run it every time you log in.

Note that the file is run *every* time, so hopefully the command will
not start more than one instance of the server, when run multiple times.


Regards,
Mikko
-- 
// Mikko Hänninen, aka. Wizzu  //  [EMAIL PROTECTED]  //  http://www.iki.fi/wiz/
// The Corrs list maintainer  //   net.freak  //   DALnet IRC operator /
// Interests: roleplaying, Linux, the Net, fantasy & scifi, the Corrs /
                     Beware of low-flying butterflies.

Reply via email to