unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#33999: CP437: Invalid Argument on init
@ 2019-01-06 19:34 Bryan Ferris
  2019-01-09 19:08 ` Danny Milosavljevic
  2019-01-10 18:21 ` Danny Milosavljevic
  0 siblings, 2 replies; 23+ messages in thread
From: Bryan Ferris @ 2019-01-06 19:34 UTC (permalink / raw)
  To: 33999

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

Hello,

I've installed guix to my desktop. `guix system install` ran successfully
and the system is able to boot. However, a large number of services fail to
start with the error "CP437: Invalid argument". There are 3 groups of
information listed below: a partial list of services which fail (partial
because I can only see the final screen of output; I'm not sure how to see
the beginning of the log when I have no tty's and the startup log doesn't
support scrolling as far as I can tell), a partial list of services that
succeeded in starting, and my operating-system declaration used to create
it.

I verified that the inputs (mount points, fs types, etc) to the
operating-system is accurate. I don't think it's doing anything
particularly interesting. The only abnormal thing is that my root partition
is btrfs, but I get the same behavior on ext.

Broken Services:
avahi-daemon
console-font-tty{1-6}
dbus-system
elogind
guix-daemon
networking
nscd
ntpd
syslogd
term-tty{1-6,auto}
user-homes
upower-daemon
urandom-seed
user-processes
wpa-supplicant
xorg-server

Working Services:
console-keymap
file-system-/sys/fs/cgroup/{blkio,devices,freezer,memory,perf_event}
host-name
virtual-terminal

OS Declaration:
(use-modules (gnu))
(use-service-modules desktop ssh)
(use-package-modules shells vim wm)

(operating-system
  (packages (cons* fish neovim xmonad %base-packages))

  (services (cons*
              (console-keymap-service "dvorak-programmer")
              (service openssh-service-type
                       (openssh-configuration
                         (port-number 8778)
                       )
              )
              %desktop-services
            )
  )

  (users (let ((default-groups '("wheel" "audio" "video" "netdev"))
               ;(default-shell  #$fish) not sure if this is the right
syntax... fix once system boots
              )
           (cons* (user-account
                   (name "primary")
                   (group "users")
                   (supplementary-groups default-groups)
                   (home-directory "/home/primary")
                 )
                 (user-account
                   (name "configuration")
                   (group "users")
                   (supplementary-groups default-groups)
                   (home-directory "/home/configuration")
                 )
                 (user-account
                   (name "packaging")
                   (group "users")
                   (supplementary-groups default-groups)
                   (home-directory "/home/packaging")
                 )
                 %base-user-accounts
           )
         )
  )

  (host-name "cp")
  (timezone "America/Los_Angeles")
  (locale "en_US.utf8")

  (file-systems (cons*
                  (file-system
                    (device (file-system-label "ESP"))
                    (mount-point "/boot/efi")
                    (type "fat")
                  )

                  (file-system
                    (device (file-system-label "guix"))
                    (mount-point "/")
                    (type "btrfs")
                  )
                  %base-file-systems
                )
  )
  (bootloader (bootloader-configuration
                (bootloader grub-efi-bootloader)
                (target "/boot/efi")
                (timeout 15)
              )
  )
)

Thanks,
Bryan

[-- Attachment #2: Type: text/html, Size: 6263 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2019-01-26 17:34 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-06 19:34 bug#33999: CP437: Invalid Argument on init Bryan Ferris
2019-01-09 19:08 ` Danny Milosavljevic
2019-01-09 21:18   ` Bryan Ferris
     [not found]     ` <CABkR=SUyCV7d6sR1Zyy4Aj4Cp5raS_Tn-Akji3k0fQPeneErFg@mail.gmail.com>
2019-01-10 15:15       ` Bryan Ferris
2019-01-10 17:59         ` Danny Milosavljevic
2019-01-10 20:37           ` Bryan Ferris
2019-01-16 11:00   ` Ludovic Courtès
2019-01-18 22:59     ` Danny Milosavljevic
2019-01-19 10:19       ` Ludovic Courtès
2019-01-21  0:40       ` Danny Milosavljevic
2019-01-21  8:41         ` Danny Milosavljevic
2019-01-21  9:50         ` Ludovic Courtès
2019-01-21 10:16           ` Danny Milosavljevic
2019-01-21 10:51             ` Ludovic Courtès
2019-01-23 15:42             ` Bryan Ferris
2019-01-26 17:32               ` Bryan Ferris
2019-01-10 18:21 ` Danny Milosavljevic
2019-01-16 15:43   ` Bryan Ferris
2019-01-18 19:00     ` Bryan Ferris
2019-01-18 22:48       ` Danny Milosavljevic
     [not found]         ` <CABkR=SWtHUA+G50fR_QiU-tGU6TatQ7wnKWW+n6LdFexSYJZRA@mail.gmail.com>
     [not found]           ` <20190120031949.2bb81997@scratchpost.org>
2019-01-20 14:34             ` Bryan Ferris
2019-01-20 22:48               ` Danny Milosavljevic
2019-01-20 22:49                 ` Danny Milosavljevic

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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).