all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* error in bootloader config while system init
@ 2019-05-21  3:47 znavko
  2019-05-21  8:53 ` Giovanni Biscuolo
  0 siblings, 1 reply; 5+ messages in thread
From: znavko @ 2019-05-21  3:47 UTC (permalink / raw)
  To: help-guix

Hello! I want to install guix, but have troubles with bootloader configuration. I parted my disk this way:

# fdisk -l /dev/sdb

	Disk /dev/sdb: 59.6 GiB, 64023257088 bytes, 125045424 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk identifier: 3E7A5583-EC16-4444-BD05-F488879F5F8 Device Start End Sectors Size Type /dev/sdb1 2048 104859647 104857600 50G Linux filesystem /dev/sdb2 104859648 125045390 20185743 9.6G Linux swap  
# guix system init /mnt/etc/config.scm /mnt 2>err
# cat err | nc termbin.com 9999
https://termbin.com/r3oh

# cat /mnt/etc/config.scm | nc termbin.com 9999
https://termbin.com/r5rq
Please, what is wrong?

	(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8") (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sdb"))) (file-systems (cons (file-system (device "/dev/sdb1") (mount-point "/mnt") (type "ext4")) %base-file-systems)) (swap-devices '("/dev/sdb2"))

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

* Re: error in bootloader config while system init
  2019-05-21  3:47 error in bootloader config while system init znavko
@ 2019-05-21  8:53 ` Giovanni Biscuolo
  2019-05-21 13:23   ` Ludovic Courtès
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Giovanni Biscuolo @ 2019-05-21  8:53 UTC (permalink / raw)
  To: znavko, help-guix

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

Hi znavko,

cannot help now, just a quick reply to inline error log and config for
ml archiving purposes

znavko@disroot.org writes:

> Hello! I want to install guix, but have troubles with bootloader configuration. I parted my disk this way:
>
> # fdisk -l /dev/sdb
>
> 	Disk /dev/sdb: 59.6 GiB, 64023257088 bytes, 125045424 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk identifier: 3E7A5583-EC16-4444-BD05-F488879F5F8 Device Start End Sectors Size Type /dev/sdb1 2048 104859647 104857600 50G Linux filesystem /dev/sdb2 104859648 125045390 20185743 9.6G Linux swap  
> # guix system init /mnt/etc/config.scm /mnt 2>err
> # cat err | nc termbin.com 9999
> https://termbin.com/r3oh

this is the output

--8<---------------cut here---------------start------------->8---

Backtrace:
          13 (apply-smob/1 #<catch-closure eee8e0>)
In ice-9/boot-9.scm:
    705:2 12 (call-with-prompt _ _ #<procedure default-prompt-handle…>)
In ice-9/eval.scm:
    619:8 11 (_ #(#(#<directory (guile-user) f70140>)))
In guix/ui.scm:
  1747:12 10 (run-guix-command _ . _)
In ice-9/boot-9.scm:
    829:9  9 (catch _ _ #<procedure 7f5bb7621910 at guix/ui.scm:703…> …)
    829:9  8 (catch _ _ #<procedure 7f5bb7621928 at guix/ui.scm:826…> …)
In guix/scripts/system.scm:
   1325:8  7 (_)
In guix/status.scm:
    768:4  6 (call-with-status-report _ _)
In guix/scripts/system.scm:
   1181:4  5 (process-action _ _ _)
In guix/store.scm:
   623:10  4 (call-with-store _)
  1794:24  3 (run-with-store _ _ #:guile-for-build _ #:system _ # _)
In guix/scripts/system.scm:
  1197:13  2 (_ _)
    867:9  1 (perform-action init #<<operating-system> kernel: #<pa…> …)
In gnu/system.scm:
   974:26  0 (operating-system-bootcfg #<<operating-system> kernel:…> …)

gnu/system.scm:974:26: In procedure operating-system-bootcfg:
In procedure struct_vtable: Wrong type argument in position 1 (expecting struct): #f

--8<---------------cut here---------------end--------------->8---

> # cat /mnt/etc/config.scm | nc termbin.com 9999
> https://termbin.com/r5rq
> Please, what is wrong?

this is the config

--8<---------------cut here---------------start------------->8---
;-*- mode: Scheme; -*-
;;this is znavko's cute config
;; for lightweight xfce4 desktop
;; without networkmanager but wpa_supplicant + dhcp-client instead
;; notebok settings: disabling sleep on closing lid
;; disabling pc-speaker, lenovo wifi blocking solution
;; enabling touchpad tapping

(use-modules (gnu) (gnu system nss)
	     (gnu system locale) ;;for locale-definition
	     (gnu services desktop)
	     (srfi srfi-1)	       ;;for remove function
	     (gnu services networking) ;;for remove ntp
	     (gnu services avahi)      ;;for remove avahi
	     (gnu services xorg)
	     (gnu packages admin) ;;for wpa_supplicant
	     )

(use-service-modules desktop)
(use-package-modules certs gnome)

(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
		  (bootloader 
                     (bootloader-configuration 
                     (bootloader grub-bootloader) 
                     (target "/dev/sdb")))
		  (file-systems (cons (file-system (device "/dev/sdb1") (mount-point "/mnt") (type "ext4")) %base-file-systems))
		  (swap-devices '("/dev/sdb2"))

		  (users (cons* (user-account (name "bon") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/bob"))
				(user-account (name "mom") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/mom"))
				%base-user-accounts))

		  ;; This is where we specify system-wide packages.
		  (packages (cons* nss-certs ;for HTTPS access
				   gvfs	     ;for user mounts
				   wpa-supplicant
				   %base-packages))

		  (services (cons* 
			     ;; xfce4 desktop, dhcp-client, slim
			     (service xfce-desktop-service-type)
			     (service dhcp-client-service-type)
			     ;; slim config for enabling touchpad tap
			     (service slim-service-type
				      (slim-configuration
					(xorg-configuration
					 (xorg-configuration
					  (extra-config  
					   '("Section \"InputClass\"
Identifier \"touchpad\"
Driver \"libinput\"
MatchIsTouchpad \"on\"
Option \"Tapping\" \"on\"
EndSection")
					   ))))
				      )

			     (modify-services      
			      ;; removing unnecessary services
			      (remove (lambda (service)
					(member (service-kind service)
						(list ntp-service-type avahi-service-type 
						      bluetooth-service network-manager-service-type
						      gdm-service-type)))
				      %desktop-services) ;end of remove lambda services

			      ;; wpa_supplicant + dhcp-client (above) instead of networkmanager
			      (wpa-supplicant-service-type config =>
							   (wpa-supplicant-configuration
							    (interface "wlp2s0")
							    (config-file "/etc/wpa_supplicant/wpa_supplicant.conf")))

			      ;; disabling sleep on closing notebook lid
			      (elogind-service-type
			       c => (elogind-configuration (handle-lid-switch 'ignore)))
			      )	;;end of modify-services
			     ))	;;end of services

		  ;; Allow resolution of '.local' host names with mDNS.
		  (name-service-switch %mdns-host-lookup-nss)

		  ;;blacklist ugly sound speaker
		  (kernel-arguments '("modprobe.blacklist=pcspkr,snd_pcsp,bluetooth"))

		  ) ;;end of operating-system
--8<---------------cut here---------------end--------------->8---


-- 
Giovanni Biscuolo

Xelera IT Infrastructures

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

* Re: error in bootloader config while system init
  2019-05-21  8:53 ` Giovanni Biscuolo
@ 2019-05-21 13:23   ` Ludovic Courtès
  2019-05-21 18:11   ` znavko
  2019-05-21 19:55   ` znavko
  2 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2019-05-21 13:23 UTC (permalink / raw)
  To: Giovanni Biscuolo; +Cc: help-guix

Hi znavko,

Giovanni Biscuolo <g@xelera.eu> skribis:

> In gnu/system.scm:
>    974:26  0 (operating-system-bootcfg #<<operating-system> kernel:…> …)
>
> gnu/system.scm:974:26: In procedure operating-system-bootcfg:
> In procedure struct_vtable: Wrong type argument in position 1 (expecting struct): #f

[...]

> 		  (file-systems (cons (file-system (device "/dev/sdb1") (mount-point "/mnt") (type "ext4")) %base-file-systems))

I think Guix is trying to tell you, with its own words *cough*, that
your OS config does not specify a root file system.  Indeed, there’s
“/mnt” there, but no “/”.

HTH!

Ludo’.

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

* Re: error in bootloader config while system init
  2019-05-21  8:53 ` Giovanni Biscuolo
  2019-05-21 13:23   ` Ludovic Courtès
@ 2019-05-21 18:11   ` znavko
  2019-05-21 19:55   ` znavko
  2 siblings, 0 replies; 5+ messages in thread
From: znavko @ 2019-05-21 18:11 UTC (permalink / raw)
  To: Ludovic Courtès, Giovanni Biscuolo; +Cc: help-guix

I have another error with Grub bootloader here:

# guix system init /mnt/etc/config.scm /mnt 2>1
# cat 1 | nc termbin.com 999

error: '/gnu/store/9kvnp0vp24vplnwxd7svr8mlcbxa2f0l-grub-2.02/sbin/grub-install --no-floppy
--target=i386-pc --boot-directory /mnt/boot /dev/sdb' exited with status 1; output follows:

Installing for i386-pc platform.
/gnu/store/9kvnp0vp24vplnwxd7svr8mlcbxa2f0l-grub-2.02/sbin/grub-install: warning: this GPT
partition label contains no BIOS Boot Partition; embedding won't be possible.
/gnu/store/9kvnp0vp24vplnwxd7svr8mlcbxa2f0l-grub-2.02/sbin/grub-install: warning: Embedding is not
possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are
UNRELIABLE and their use is discouraged..
/gnu/store/9kvnp0vp24vplnwxd7svr8mlcbxa2f0l-grub-2.02/sbin/grub-install: error: will not proceed
with blocklists.

guix system: error: failed to install bootloader
/gnu/store/2n39p56aqcgrzjap8395k7q8dxcm0kpp-bootloader-installer

# cat /mnt/etc/config.scm | nc termbin.com 999

Here it the bootloader section:
(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
(bootloader 
(bootloader-configuration 
(bootloader grub-bootloader) 
(target "/dev/sdb")))

(initrd-modules (append (list "sata_sis")
%base-initrd-modules))

(file-systems (cons 
(file-system 
(device "/dev/sdb1") 
(mount-point "/") 
(type "ext4")) 
%base-file-systems))
(swap-devices '("/dev/sdb2"))
...

# fdisk -l
...
Device Start End Sectors Size Type
/dev/sdb1 2048 104859647 104857600 50G Linux filesystem
/dev/sdb2 104859648 125045390 20185743 9.6G Linux swap



As I understood, guix needs another disk partition, one separate for grub.
I tried this but unsuccessfully:

# fdisk -l 

Device        Start       End  Sectors  Size Type
/dev/sdb1      2048  15626239 15624192  7.5G BIOS boot
/dev/sdb2  15626240  99610623 83984384   40G Linux filesystem
/dev/sdb3  99610624 125045390 25434767 12.1G Linux swap



# cat config.scm 
...
(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
		  (bootloader (bootloader-configuration 
				 (bootloader grub-bootloader) 
				 (target "/dev/sdb")))
		  
		  (initrd-modules (append (list "sata_sis")
				     %base-initrd-modules))

		  (file-systems (list (file-system 
                                          (device "/dev/sdb1") 
					  (mount-point "/boot") 
					  (type "ext4")) 
				      (file-system
					  (device "/dev/sdb2")
					  (mount-point "/")
					  (type "ext4"))
				      %base-file-systems))
		  (swap-devices '("/dev/sdb3"))
...



# guix system init /mnt/etc/config.scm /mnt 2>1
# cat 1 | nc termbin.com 9999


Backtrace:
          17 (apply-smob/1 #<catch-closure b1a8e0>)
In ice-9/boot-9.scm:
    705:2 16 (call-with-prompt _ _ #<procedure default-prompt-handle…>)
In ice-9/eval.scm:
    619:8 15 (_ #(#(#<directory (guile-user) b9c140>)))
In guix/ui.scm:
  1747:12 14 (run-guix-command _ . _)
In ice-9/boot-9.scm:
    829:9 13 (catch _ _ #<procedure 7f60d3abd910 at guix/ui.scm:703…> …)
    829:9 12 (catch _ _ #<procedure 7f60d3abd928 at guix/ui.scm:826…> …)
In guix/scripts/system.scm:
   1325:8 11 (_)
In guix/status.scm:
    768:4 10 (call-with-status-report _ _)
In guix/scripts/system.scm:
   1181:4  9 (process-action _ _ _)
In guix/store.scm:
   623:10  8 (call-with-store _)
  1794:24  7 (run-with-store _ _ #:guile-for-build _ #:system _ # _)
In guix/scripts/system.scm:
  1197:13  6 (_ _)
    867:9  5 (perform-action init #<<operating-system> kernel: #<pa…> …)
In gnu/system.scm:
   975:26  4 (operating-system-bootcfg #<<operating-system> kernel:…> …)
   992:26  3 (operating-system-boot-parameters #<<operating-system>…> …)
    889:4  2 (operating-system-initrd-file #<<operating-system> kern…>)
In unknown file:
           1 (filter #<procedure file-system-needed-for-boot? (fs)> #)
In gnu/system/file-systems.scm:
    241:6  0 (file-system-needed-for-boot? _)

gnu/system/file-systems.scm:241:6: In procedure file-system-needed-for-boot?:
In procedure struct_vtable: Wrong type argument in position 1 (expecting struct): (#<<file-system> device: "none" mount-point: "/dev/pts" type: "devpts" flags: () options: "gid=996,mode=620" mount?: #t needed-for-boot?: #f check?: #f create-mount-point?: #t dependencies: () location: ((line . 325) (column . 2) (filename . "gnu/system/file-systems.scm"))> #<<file-system> device: "tmpfs" mount-point: "/dev/shm" type: "tmpfs" flags: (no-suid no-dev) options: "size=50%" mount?: #t needed-for-boot?: #f check?: #f create-mount-point?: #t dependencies: () location: ((line . 336) (column . 2) (filename . "gnu/system/file-systems.scm"))> #<<file-system> device: "/gnu/store" mount-point: "/gnu/store" type: "none" flags: (read-only bind-mount) options: #f mount?: #t needed-for-boot?: #f check?: #f create-mount-point?: #f dependencies: () location: ((line . 349) (column . 2) (filename . "gnu/system/file-systems.scm"))>)


This info lacks from manual.


May 21, 2019 1:23 PM, "Ludovic Courtès" <ludo@gnu.org> wrote:

> Hi znavko,
> 
> Giovanni Biscuolo <g@xelera.eu> skribis:
> 
>> In gnu/system.scm:
>> 974:26 0 (operating-system-bootcfg #<<operating-system> kernel:…> …)
>> 
>> gnu/system.scm:974:26: In procedure operating-system-bootcfg:
>> In procedure struct_vtable: Wrong type argument in position 1 (expecting struct): #f
> 
> [...]
> 
>> (file-systems (cons (file-system (device "/dev/sdb1") (mount-point "/mnt") (type "ext4"))
>> %base-file-systems))
> 
> I think Guix is trying to tell you, with its own words *cough*, that
> your OS config does not specify a root file system. Indeed, there’s
> “/mnt” there, but no “/”.
> 
> HTH!
> 
> Ludo’.

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

* Re: error in bootloader config while system init
  2019-05-21  8:53 ` Giovanni Biscuolo
  2019-05-21 13:23   ` Ludovic Courtès
  2019-05-21 18:11   ` znavko
@ 2019-05-21 19:55   ` znavko
  2 siblings, 0 replies; 5+ messages in thread
From: znavko @ 2019-05-21 19:55 UTC (permalink / raw)
  To: Ludovic Courtès, Giovanni Biscuolo; +Cc: help-guix

Sorry, for this flow.
I've got normal output of `guix system init ...` but after reboot into my newly installed system I've seen that filesystem check on sdb2 failed. And seeing bournish guile shell.

I think I was wrong with partitioning. On step partitioning I wish to say, 'parted' works bad, 'cfdisk' does not work at all.  so I've used fdisk to part my disk on boot partition, root partition, and swap partition.
also I had a trouble wenn I tried to fdisk mounted fs. It started messaging about device is mounted in all ttys so I could not work with it and need to reboot usb.

I will try again tomorrow, updating guix from usb with `guix pull`. I think current guix image has a lot of bugs. Console installer with menues does not work at all. And manual installation has too little info in the manual. Partitioning is not described there. The file-systems section of config is described not enough.


May 21, 2019 6:11 PM, znavko@disroot.org wrote:

> I have another error with Grub bootloader here:
> 
> # guix system init /mnt/etc/config.scm /mnt 2>1
> # cat 1 | nc termbin.com 999
> 
> error: '/gnu/store/9kvnp0vp24vplnwxd7svr8mlcbxa2f0l-grub-2.02/sbin/grub-install --no-floppy
> --target=i386-pc --boot-directory /mnt/boot /dev/sdb' exited with status 1; output follows:
> 
> Installing for i386-pc platform.
> /gnu/store/9kvnp0vp24vplnwxd7svr8mlcbxa2f0l-grub-2.02/sbin/grub-install: warning: this GPT
> partition label contains no BIOS Boot Partition; embedding won't be possible.
> /gnu/store/9kvnp0vp24vplnwxd7svr8mlcbxa2f0l-grub-2.02/sbin/grub-install: warning: Embedding is not
> possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are
> UNRELIABLE and their use is discouraged..
> /gnu/store/9kvnp0vp24vplnwxd7svr8mlcbxa2f0l-grub-2.02/sbin/grub-install: error: will not proceed
> with blocklists.
> 
> guix system: error: failed to install bootloader
> /gnu/store/2n39p56aqcgrzjap8395k7q8dxcm0kpp-bootloader-installer
> 
> # cat /mnt/etc/config.scm | nc termbin.com 999
> 
> Here it the bootloader section:
> (operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
> (bootloader 
> (bootloader-configuration 
> (bootloader grub-bootloader) 
> (target "/dev/sdb")))
> 
> (initrd-modules (append (list "sata_sis")
> %base-initrd-modules))
> 
> (file-systems (cons 
> (file-system 
> (device "/dev/sdb1") 
> (mount-point "/") 
> (type "ext4")) 
> %base-file-systems))
> (swap-devices '("/dev/sdb2"))
> ...
> 
> # fdisk -l
> ...
> Device Start End Sectors Size Type
> /dev/sdb1 2048 104859647 104857600 50G Linux filesystem
> /dev/sdb2 104859648 125045390 20185743 9.6G Linux swap
> 
> As I understood, guix needs another disk partition, one separate for grub.
> I tried this but unsuccessfully:
> 
> # fdisk -l 
> 
> Device Start End Sectors Size Type
> /dev/sdb1 2048 15626239 15624192 7.5G BIOS boot
> /dev/sdb2 15626240 99610623 83984384 40G Linux filesystem
> /dev/sdb3 99610624 125045390 25434767 12.1G Linux swap
> 
> # cat config.scm 
> ...
> (operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
> (bootloader (bootloader-configuration 
> (bootloader grub-bootloader) 
> (target "/dev/sdb")))
> 
> (initrd-modules (append (list "sata_sis")
> %base-initrd-modules))
> 
> (file-systems (list (file-system 
> (device "/dev/sdb1") 
> (mount-point "/boot") 
> (type "ext4")) 
> (file-system
> (device "/dev/sdb2")
> (mount-point "/")
> (type "ext4"))
> %base-file-systems))
> (swap-devices '("/dev/sdb3"))
> ...
> 
> # guix system init /mnt/etc/config.scm /mnt 2>1
> # cat 1 | nc termbin.com 9999
> 
> Backtrace:
> 17 (apply-smob/1 #<catch-closure b1a8e0>)
> In ice-9/boot-9.scm:
> 705:2 16 (call-with-prompt _ _ #<procedure default-prompt-handle…>)
> In ice-9/eval.scm:
> 619:8 15 (_ #(#(#<directory (guile-user) b9c140>)))
> In guix/ui.scm:
> 1747:12 14 (run-guix-command _ . _)
> In ice-9/boot-9.scm:
> 829:9 13 (catch _ _ #<procedure 7f60d3abd910 at guix/ui.scm:703…> …)
> 829:9 12 (catch _ _ #<procedure 7f60d3abd928 at guix/ui.scm:826…> …)
> In guix/scripts/system.scm:
> 1325:8 11 (_)
> In guix/status.scm:
> 768:4 10 (call-with-status-report _ _)
> In guix/scripts/system.scm:
> 1181:4 9 (process-action _ _ _)
> In guix/store.scm:
> 623:10 8 (call-with-store _)
> 1794:24 7 (run-with-store _ _ #:guile-for-build _ #:system _ # _)
> In guix/scripts/system.scm:
> 1197:13 6 (_ _)
> 867:9 5 (perform-action init #<<operating-system> kernel: #<pa…> …)
> In gnu/system.scm:
> 975:26 4 (operating-system-bootcfg #<<operating-system> kernel:…> …)
> 992:26 3 (operating-system-boot-parameters #<<operating-system>…> …)
> 889:4 2 (operating-system-initrd-file #<<operating-system> kern…>)
> In unknown file:
> 1 (filter #<procedure file-system-needed-for-boot? (fs)> #)
> In gnu/system/file-systems.scm:
> 241:6 0 (file-system-needed-for-boot? _)
> 
> gnu/system/file-systems.scm:241:6: In procedure file-system-needed-for-boot?:
> In procedure struct_vtable: Wrong type argument in position 1 (expecting struct): (#<<file-system>
> device: "none" mount-point: "/dev/pts" type: "devpts" flags: () options: "gid=996,mode=620" mount?:
> #t needed-for-boot?: #f check?: #f create-mount-point?: #t dependencies: () location: ((line . 325)
> (column . 2) (filename . "gnu/system/file-systems.scm"))> #<<file-system> device: "tmpfs"
> mount-point: "/dev/shm" type: "tmpfs" flags: (no-suid no-dev) options: "size=50%" mount?: #t
> needed-for-boot?: #f check?: #f create-mount-point?: #t dependencies: () location: ((line . 336)
> (column . 2) (filename . "gnu/system/file-systems.scm"))> #<<file-system> device: "/gnu/store"
> mount-point: "/gnu/store" type: "none" flags: (read-only bind-mount) options: #f mount?: #t
> needed-for-boot?: #f check?: #f create-mount-point?: #f dependencies: () location: ((line . 349)
> (column . 2) (filename . "gnu/system/file-systems.scm"))>)
> 
> This info lacks from manual.
> 
> May 21, 2019 1:23 PM, "Ludovic Courtès" <ludo@gnu.org> wrote:
> 
>> Hi znavko,
>> 
>> Giovanni Biscuolo <g@xelera.eu> skribis:
>> 
>>> In gnu/system.scm:
>>> 974:26 0 (operating-system-bootcfg #<<operating-system> kernel:…> …)
>>> 
>>> gnu/system.scm:974:26: In procedure operating-system-bootcfg:
>>> In procedure struct_vtable: Wrong type argument in position 1 (expecting struct): #f
>> 
>> [...]
>> 
>>> (file-systems (cons (file-system (device "/dev/sdb1") (mount-point "/mnt") (type "ext4"))
>>> %base-file-systems))
>> 
>> I think Guix is trying to tell you, with its own words *cough*, that
>> your OS config does not specify a root file system. Indeed, there’s
>> “/mnt” there, but no “/”.
>> 
>> HTH!
>> 
>> Ludo’.

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

end of thread, other threads:[~2019-05-21 19:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-21  3:47 error in bootloader config while system init znavko
2019-05-21  8:53 ` Giovanni Biscuolo
2019-05-21 13:23   ` Ludovic Courtès
2019-05-21 18:11   ` znavko
2019-05-21 19:55   ` znavko

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.