all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jan <tona_kosmicznego_smiecia@interia.pl>
To: help-guix@gnu.org
Subject: Re: Trying to install Guix System on a nonfree computer, the system frezees at booting, bug?
Date: Wed, 24 Jul 2019 02:11:17 +0200	[thread overview]
Message-ID: <20190724021117.00002079@interia.pl> (raw)
In-Reply-To: <20190723183733.00001140@interia.pl>

[-- Attachment #1: Type: text/plain, Size: 2646 bytes --]

Great, my mail client probably fooled me again... Sorry again for
sending a private message, this is my first real discussion on a mailing
list. Is there a way to keep messages on the list, I'm using "respond
to a mailing list" option, but it somehow doesn't do what I want.

Reposting the message here:

Ricardo Wurmus <rekado@elephly.net> writes(a):

> 
> Hi,
>   
> > throws '/mnt/etc/config.scm:40:1 error: invalid field specifier'.  
> 
> Your config file at line 40 contains this form:
> 
>  (services (append (list … … some-list))
>            %base-services)
> 
> The format is wrong.  What I called “some-list” is this:
> 
>   (remove (lambda (service)
>            (eq? (service-kind service) gdm-service-type))
>           %desktop-services)
> 
> This is a list of services.  You are nesting lists and that’s not what
> “services” accepts.  The field only accepts a single list of services.
> 
> Another problem is “%base-services”, which is another list.  You are
> providing two values for the “services” field: one nested list and a
> plain list of services (%base-services).
> 
> This will work:
> 
>  (services (append
>             ;; This is a simple list of services.  It’s the first
>             ;; argument to “append”.
> 	        (list (service dhcp-client-service-type)
> 		          (service slim-service-type
> (slim-configuration (display ":0")
>                                               (vt "vt7")))
>                   (service slim-service-type (slim-configuration
>                                               (display ":1")
>                                               (vt "vt8"))))
>             ;; This is the second argument to “append”.  It’s just a
>             ;; simple list of services, same as %desktop-services but
>             ;; without the gdm-service-type.
>             (remove (lambda (service)
>                       (eq? (service-kind service) gdm-service-type))
>                     %desktop-services)))
> 
>

I wasn't familiar with this remove procedure from srfi-1, I've been
learning Guile only for 3 month, thank you for explaining. The system
initialized correctly, but the same thing happens while trying to boot
into the recently installed system (removing gdm didn't help). I copied
the whole /var/log folder so I'm attaching zip-compressed folder below.
And also a strange thing happened - don't know if it's related, but
after switching my system to "UEFI mode" screen resolution using
linux-libre, which was really low, now changed normal (as on systems
with blobs loaded).

[-- Attachment #2: log.zip --]
[-- Type: application/x-zip-compressed, Size: 54788 bytes --]

  parent reply	other threads:[~2019-07-24  0:11 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <sjfbzubcyquxdxgytrgw@qjlw>
2019-07-22  5:20 ` Trying to install Guix System on a nonfree computer, the system frezees at booting, bug? pelzflorian (Florian Pelz)
2019-07-22 18:03   ` Jan
2019-07-23 10:37   ` Jan
2019-07-23 11:12     ` Ricardo Wurmus
2019-07-23 11:26       ` Jan
2019-07-23 12:35         ` Ricardo Wurmus
2019-07-23 16:37       ` Jan
2019-07-23 19:37         ` Ricardo Wurmus
2019-07-24  0:11         ` Jan [this message]
2019-07-24  6:15           ` pelzflorian (Florian Pelz)
2019-07-24 10:53           ` Jan
2019-07-24 12:16             ` pelzflorian (Florian Pelz)
2019-07-24 13:31             ` Jan
2019-07-24 15:03               ` pelzflorian (Florian Pelz)
2019-07-24 15:29               ` Jan
2019-07-24 15:43                 ` pelzflorian (Florian Pelz)
2019-07-22 15:07 ` Jovany Leandro G.C

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190724021117.00002079@interia.pl \
    --to=tona_kosmicznego_smiecia@interia.pl \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.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.