* How do you download EMACS without being superuser?...
@ 2013-09-12 23:12 Don Saklad
0 siblings, 0 replies; 3+ messages in thread
From: Don Saklad @ 2013-09-12 23:12 UTC (permalink / raw)
To: help-gnu-emacs
How do you download EMACS without being superuser?...
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: How do you download EMACS without being superuser?...
[not found] <mailman.2000.1379027580.10748.help-gnu-emacs@gnu.org>
@ 2013-09-13 1:45 ` Dan Espen
2013-09-13 17:42 ` Pascal J. Bourguignon
1 sibling, 0 replies; 3+ messages in thread
From: Dan Espen @ 2013-09-13 1:45 UTC (permalink / raw)
To: help-gnu-emacs
Don Saklad <dsaklad@gnu.org> writes:
> How do you download EMACS without being superuser?...
Download?
Since when do downloads require superuser?
I think you're asking about how to install without having root?
Simple answer, when doing configure, use:
./configure --prefix=/place-to-install
--
Dan Espen
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: How do you download EMACS without being superuser?...
[not found] <mailman.2000.1379027580.10748.help-gnu-emacs@gnu.org>
2013-09-13 1:45 ` How do you download EMACS without being superuser? Dan Espen
@ 2013-09-13 17:42 ` Pascal J. Bourguignon
1 sibling, 0 replies; 3+ messages in thread
From: Pascal J. Bourguignon @ 2013-09-13 17:42 UTC (permalink / raw)
To: help-gnu-emacs
Don Saklad <dsaklad@gnu.org> writes:
> How do you download EMACS without being superuser?...
PREFIX="${HOME}/opt"
mkdir -p "${PREFIX}"/{bin,share,lib,src}
export PATH="${PREFIX}/bin:${PATH}"
cd "${HOME}/opt/src"
VERSION=24.3
wget "ftp://ftp.gnu.org/gnu/emacs/emacs-${VERSION}.tar.gz"
tar zxf "emacs-${VERSION}.tar.gz"
cd "emacs-${VERSION}"
./configure --prefix=${HOME}/opt && make && make install
cd
emacs
Now one problem may be that if you're not superuser, you don't have
access to much disk space either, there may have disk quotas. Sometimes
so little that you can't even unpack emacs sources.
Also, if you're not alone installing one's own copy of emacs, the
sysadmin may become angry and kill your accounts.
Stuff like that…
--
__Pascal Bourguignon__
http://www.informatimago.com/
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-09-13 17:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <mailman.2000.1379027580.10748.help-gnu-emacs@gnu.org>
2013-09-13 1:45 ` How do you download EMACS without being superuser? Dan Espen
2013-09-13 17:42 ` Pascal J. Bourguignon
2013-09-12 23:12 Don Saklad
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).