* run the daemon
@ 2016-04-08 18:25 Catonano
0 siblings, 0 replies; 5+ messages in thread
From: Catonano @ 2016-04-08 18:25 UTC (permalink / raw)
To: help-guix
[-- Attachment #1: Type: text/plain, Size: 334 bytes --]
Hello,
I'm trying to do the binary installation of guix, following instructions
here
https://www.gnu.org/software/guix/manual/html_node/Binary-Installation.html
The point no. 5 says: "Run the daemon [...]"
Which daemon ?
There's no guix-daemon in my system and there isn't one in the tar.xz file
I downloaded.
What a I missing ?
[-- Attachment #2: Type: text/html, Size: 572 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* run the daemon
@ 2016-04-08 21:25 Catonano
2016-04-08 22:48 ` Leo Famulari
0 siblings, 1 reply; 5+ messages in thread
From: Catonano @ 2016-04-08 21:25 UTC (permalink / raw)
To: help-guix
[-- Attachment #1: Type: text/plain, Size: 334 bytes --]
Hello,
I'm trying to do the binary installation of guix, following instructions
here
https://www.gnu.org/software/guix/manual/html_node/Binary-Installation.html
The point no. 5 says: "Run the daemon [...]"
Which daemon ?
There's no guix-daemon in my system and there isn't one in the tar.xz file
I downloaded.
What a I missing ?
[-- Attachment #2: Type: text/html, Size: 501 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: run the daemon
2016-04-08 21:25 run the daemon Catonano
@ 2016-04-08 22:48 ` Leo Famulari
2016-04-08 23:16 ` Catonano
0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2016-04-08 22:48 UTC (permalink / raw)
To: Catonano; +Cc: help-guix
On Fri, Apr 08, 2016 at 11:25:18PM +0200, Catonano wrote:
> Hello,
>
> I'm trying to do the binary installation of guix, following instructions
> here
> https://www.gnu.org/software/guix/manual/html_node/Binary-Installation.html
Thanks for trying!
> The point no. 5 says: "Run the daemon [...]"
>
> Which daemon ?
If you followed steps 1 through 4, you will have created a symlink to root's
guix-profile in root's home directory.
Accordingly, you can start the daemon like this, as described in step 5:
# ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
Does that work?
If not, can you double-check that '~root/.guix-profile' exists and
points to the correct place? You should be able to do something like
this:
# whoami
root
# ls -l ~/.guix-profile
lrwxrwxrwx 1 root root 45 Aug 14 2015 /root/.guix-profile -> /var/guix/profiles/per-user/root/guix-profile
# ls -l ~/.guix-profile/bin/guix-daemon
lrwxrwxrwx 4 root guixbuild 78 Dec 31 1969 /root/.guix-profile/bin/guix-daemon -> /gnu/store/b4d41s3066gx6wjkpq505sc4rkbjmdf1-guix-0.10.0-0.7611/bin/guix-daemon
By the way, since guix-daemon is a daemon, it will block and appear to
do nothing when you start it. Just mentioning this since some users have
been confused the daemon's behavior.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: run the daemon
2016-04-08 22:48 ` Leo Famulari
@ 2016-04-08 23:16 ` Catonano
2016-04-08 23:45 ` Leo Famulari
0 siblings, 1 reply; 5+ messages in thread
From: Catonano @ 2016-04-08 23:16 UTC (permalink / raw)
To: Leo Famulari; +Cc: help-guix
[-- Attachment #1: Type: text/plain, Size: 1026 bytes --]
Leo,
2016-04-09 0:48 GMT+02:00 Leo Famulari <leo@famulari.name>:
> On Fri, Apr 08, 2016 at 11:25:18PM +0200, Catonano wrote:
>
> Thanks for trying!
>
> > The point no. 5 says: "Run the daemon [...]"
> >
> > Which daemon ?
>
> If you followed steps 1 through 4, you will have created a symlink to
> root's
> guix-profile in root's home directory.
>
> Accordingly, you can start the daemon like this, as described in step 5:
>
> # ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
>
> Does that work?
>
> If not, can you double-check that '~root/.guix-profile' exists and
> points to the correct place? You should be able to do something like
> this:
>
Thank you so much, Leo, I had just misread the instructions, sorry for the
fuss.
> By the way, since guix-daemon is a daemon, it will block and appear to
> do nothing when you start it. Just mentioning this since some users have
> been confused the daemon's behavior.
>
Thanks for your good sense. In fact I would have been confused by such
behaviour !
[-- Attachment #2: Type: text/html, Size: 1655 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: run the daemon
2016-04-08 23:16 ` Catonano
@ 2016-04-08 23:45 ` Leo Famulari
0 siblings, 0 replies; 5+ messages in thread
From: Leo Famulari @ 2016-04-08 23:45 UTC (permalink / raw)
To: Catonano; +Cc: help-guix
On Sat, Apr 09, 2016 at 01:16:58AM +0200, Catonano wrote:
> Leo,
>
> 2016-04-09 0:48 GMT+02:00 Leo Famulari <leo@famulari.name>:
>
> > On Fri, Apr 08, 2016 at 11:25:18PM +0200, Catonano wrote:
> >
> > Thanks for trying!
> >
> > > The point no. 5 says: "Run the daemon [...]"
> > >
> > > Which daemon ?
> >
> > If you followed steps 1 through 4, you will have created a symlink to
> > root's
> > guix-profile in root's home directory.
> >
> > Accordingly, you can start the daemon like this, as described in step 5:
> >
> > # ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
> >
> > Does that work?
> >
> > If not, can you double-check that '~root/.guix-profile' exists and
> > points to the correct place? You should be able to do something like
> > this:
> >
>
> Thank you so much, Leo, I had just misread the instructions, sorry for the
> fuss.
I'm happy to help! Please don't hesitate to ask any more questions,
either here or on the Freenode IRC channel #guix.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-04-08 23:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-08 21:25 run the daemon Catonano
2016-04-08 22:48 ` Leo Famulari
2016-04-08 23:16 ` Catonano
2016-04-08 23:45 ` Leo Famulari
-- strict thread matches above, loose matches on Subject: below --
2016-04-08 18:25 Catonano
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).