* running emacs without installing
@ 2004-09-17 21:50 Kin Cho
2004-09-25 20:48 ` Kai Grossjohann
[not found] ` <mailman.4067.1096145835.1998.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 6+ messages in thread
From: Kin Cho @ 2004-09-17 21:50 UTC (permalink / raw)
Hi,
I want to run emacs on a machine X without first installing
emacs.
machine X already has NFS access to another machine Y which has a
normal emacs installation.
By setting LD_LIBRARY_PATH, the emacs binary on Y launches ok on
X, but then exits with these errors:
Warning: arch-dependent data dir (/usr/local/libexec/emacs/21.3/i686-pc-linux-gnu/) does not exist.
Warning: arch-independent data dir (/usr/local/share/emacs/21.3/etc/) does not exist.
Warning: Lisp directory `/usr/local/share/emacs/21.3/site-lisp' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/site-lisp' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/21.3/leim' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/21.3/lisp' does not exist.
Cannot open load file: term/x-win
If I use softlink the missing paths above to machine Y's paths,
then emacs starts normally.
I want to avoid the softlink on machine X. Are there environment
variables to tell emacs where to find the data and lisp dirs?
Thanks.
-kin
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: running emacs without installing
2004-09-17 21:50 running emacs without installing Kin Cho
@ 2004-09-25 20:48 ` Kai Grossjohann
[not found] ` <mailman.4067.1096145835.1998.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 6+ messages in thread
From: Kai Grossjohann @ 2004-09-25 20:48 UTC (permalink / raw)
Kin Cho <ignore-this-prefixkin@techie.com> writes:
> I want to avoid the softlink on machine X. Are there environment
> variables to tell emacs where to find the data and lisp dirs?
Yes. EMACS_DATA and friends. C-h i d m Emacs RET enters the Emacs
info file, m Environment RET goes to the right spot. (You still have
to choose the first menu item, though.)
Kai
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: running emacs without installing
[not found] ` <mailman.4067.1096145835.1998.help-gnu-emacs@gnu.org>
@ 2004-09-25 22:32 ` Kin Cho
2004-09-26 11:38 ` Kai Grossjohann
[not found] ` <mailman.4144.1096199139.1998.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 6+ messages in thread
From: Kin Cho @ 2004-09-25 22:32 UTC (permalink / raw)
Kai,
Thanks for the pointers, but I still couldn't get it to work.
I set EMACSDATA to the value of data-directory on machine Y (with
normal emacs installation) relative to machine X, and EMACSPATH
to point at the site-lisp dir relative to machine X.
Warning: arch-dependent data dir (/usr/local/libexec/emacs/21.3/i686-pc-linux-gnu/) does not exist.
Warning: Lisp directory `/usr/local/share/emacs/21.3/site-lisp' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/site-lisp' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/21.3/leim' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/21.3/lisp' does not exist.
Cannot open load file: term/x-win
I see this string _EMACS_INTERNAL in the emacs executable, but
don't see documentation for it. Could this be used somehow?
-kin
Kai Grossjohann <kai@emptydomain.de> writes:
> Kin Cho <ignore-this-prefixkin@techie.com> writes:
>
>> I want to avoid the softlink on machine X. Are there environment
>> variables to tell emacs where to find the data and lisp dirs?
>
> Yes. EMACS_DATA and friends. C-h i d m Emacs RET enters the Emacs
> info file, m Environment RET goes to the right spot. (You still have
> to choose the first menu item, though.)
>
> Kai
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: running emacs without installing
2004-09-25 22:32 ` Kin Cho
@ 2004-09-26 11:38 ` Kai Grossjohann
[not found] ` <mailman.4144.1096199139.1998.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 6+ messages in thread
From: Kai Grossjohann @ 2004-09-26 11:38 UTC (permalink / raw)
Kin Cho <ignore-this-prefixkin@techie.com> writes:
> Thanks for the pointers, but I still couldn't get it to work.
>
> I set EMACSDATA to the value of data-directory on machine Y (with
> normal emacs installation) relative to machine X, and EMACSPATH
> to point at the site-lisp dir relative to machine X.
Did you set EMACSLOADPATH, too?
Kai
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: running emacs without installing
[not found] ` <mailman.4144.1096199139.1998.help-gnu-emacs@gnu.org>
@ 2004-09-26 16:33 ` Kin Cho
2004-11-06 0:13 ` Kai Grossjohann
0 siblings, 1 reply; 6+ messages in thread
From: Kin Cho @ 2004-09-26 16:33 UTC (permalink / raw)
Kai Grossjohann <kai@emptydomain.de> writes:
> Kin Cho <ignore-this-prefixkin@techie.com> writes:
>
>> Thanks for the pointers, but I still couldn't get it to work.
>>
>> I set EMACSDATA to the value of data-directory on machine Y (with
>> normal emacs installation) relative to machine X, and EMACSPATH
>> to point at the site-lisp dir relative to machine X.
>
> Did you set EMACSLOADPATH, too?
I actually set the EMACSLOADPATH, not EMACSPATH.
The value I set is "/usr/share/emacs/21.2/site-lisp:/usr/share/emacs/site-lisp"
-kin
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: running emacs without installing
2004-09-26 16:33 ` Kin Cho
@ 2004-11-06 0:13 ` Kai Grossjohann
0 siblings, 0 replies; 6+ messages in thread
From: Kai Grossjohann @ 2004-11-06 0:13 UTC (permalink / raw)
Kin Cho <ignore-this-prefixkin@techie.com> writes:
> Kai Grossjohann <kai@emptydomain.de> writes:
>
>> Did you set EMACSLOADPATH, too?
>
> I actually set the EMACSLOADPATH, not EMACSPATH.
> The value I set is
> "/usr/share/emacs/21.2/site-lisp:/usr/share/emacs/site-lisp"
You'll have to add a zoo of other directories, such as
/usr/share/emacs/21.2/lisp and all its subdirs (except lisp/term, I
think).
Perhaps you can start a "normal" Emacs then have a look at load-path
and adjust accordingly.
Kai
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2004-11-06 0:13 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-17 21:50 running emacs without installing Kin Cho
2004-09-25 20:48 ` Kai Grossjohann
[not found] ` <mailman.4067.1096145835.1998.help-gnu-emacs@gnu.org>
2004-09-25 22:32 ` Kin Cho
2004-09-26 11:38 ` Kai Grossjohann
[not found] ` <mailman.4144.1096199139.1998.help-gnu-emacs@gnu.org>
2004-09-26 16:33 ` Kin Cho
2004-11-06 0:13 ` Kai Grossjohann
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.