GNU bug report logs -
#75134
Issue with guix pull
Previous Next
Reported by: Eric Gade <eric.gade <at> gmail.com>
Date: Fri, 27 Dec 2024 06:13:02 UTC
Severity: normal
Done: "pelzflorian (Florian Pelz)" <pelzflorian <at> pelzflorian.de>
Bug is archived. No further changes may be made.
Full log
Message #11 received at 75134 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi Florian!
Is this a Macbook? Perhaps bug
> <https://bugs.gnu.org/74862> is relevant.
>
> Otherwise, perhaps you have insufficient RAM and should call `swapon` on
> a swapfile first.
>
Sorry, I should have provided more information. I am indeed on a Macbook
M1, but am running everything in VMs. This is a QEMU (qcow2) image that I
built from within a different Debian 12 arm64 VM image using `guix system
image`. I am running it in a VM that has 8GB of RAM allocated (should that
be enough?). I more or less used these instructions to make the image:
https://github.com/mzadel/guix-on-m1-qemu
I'll try to boost the memory a bit and give it another shot.
Here is the config I used to build the image (it's relatively short):
(use-modules (gnu))
(use-package-modules certs)
(use-modules (gnu services spice) (gnu services desktop))
(use-package-modules glib kde-plasma)
(operating-system
(host-name "guix")
(timezone "America/New_York")
(locale "en_US.utf8")
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(targets '("/boot/efi"))))
(kernel-arguments (list "console=ttyS0,115200"))
(file-systems (append
(list (file-system
(device "/dev/vda2")
(mount-point "/")
(type "ext4"))
(file-system
(device "/dev/vda1")
(mount-point "/boot/efi")
(type "vfat")))
%base-file-systems))
(users (cons (user-account
(name "ecgade")
(group "users")
(supplementary-groups '("wheel"
"audio" "video")))
%base-user-accounts))
(packages (cons plasma-desktop %base-packages))
(services (append (list (spice-vdagent-service))
%desktop-services)))
--
Eric
[Message part 2 (text/html, inline)]
This bug report was last modified 193 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.