unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#30166: guix system vm-image produces ERROR: In procedure copy-file: Success
@ 2018-01-19  1:36 George myglc2 Clemmer
  2018-01-19 13:25 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: George myglc2 Clemmer @ 2018-01-19  1:36 UTC (permalink / raw)
  To: 30166

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

Please see below ...


guix system vm-image -M 4 -c 4 /home/g1/www/VM-on-GuixSD/vm/ggg8/v1.scm --image-size=5GB
substitute: updating list of substitutes from 'https://mirror.hydra.gnu.org'... 100.0%
The following derivations will be built:
   /gnu/store/77pccgn92j05cn5sl9qgf372h3w090ig-qemu-image.drv
   /gnu/store/q1xb0mq5x4fxzz1yxdjxlg1g4snyj0kz-builder-in-linux-vm.drv
   /gnu/store/il22n187ai8yll6097flbvlabs77iyp4-linux-vm-loader.drv
   /gnu/store/cng0k9wp0zyjyfrarvymw9wwngc3x18k-parameters.drv
   /gnu/store/aaz95cp1baa4bcp7fljx8wb48fw6b4ys-init.drv
   /gnu/store/9p073wk4kgm1r1f3yizl8ms206xspsgx-raw-initrd.drv
   /gnu/store/3r3p4016xhlk5xh3mzhgiqc4dw9bynrh-system.drv
   /gnu/store/8hs0w9g3is0knichi53ls6mkg5sz5cdc-grub.cfg.drv
`/gnu/store/zs4irccfzrs2nkwrx3ra1bv4sm2k3cbl-linux-boot.scm' -> `contents/gnu/store/zs4irccfzrs2nkwrx3ra1bv4sm2k3cbl-linux-boot.scm'
`/gnu/store/qla5jhq1s4sq3r26z1bp2cr66vy9lk7s-e2fsck-static-1.43.6/sbin/e2fsck' -> `contents/gnu/store/qla5jhq1s4sq3r26z1bp2cr66vy9lk7s-e2fsck-static-1.43.6/sbin/e2fsck'
`/gnu/store/mv6445cazbhddm3wwc3053cpxjkf7q9m-records.scm' -> `contents/gnu/store/mv6445cazbhddm3wwc3053cpxjkf7q9m-records.scm'
[...]
`/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler-glib.so.8' -> `/fs/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler-glib.so.8'
`/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler-cpp.la' -> `/fs/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler-cpp.la'
`/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler.so.70.0.0' -> `/fs/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler.so.70.0.0'
ERROR: In procedure copy-file:
ERROR: In procedure copy-file: Success

Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
GNU Guile 2.2.2
Copyright (C) 1995-2017 Free Software Foundation, Inc.

Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
This program is free software, and you are welcome to redistribute it
under certain conditions; type `,show c' for details.

Enter `,help' for help.
scheme@(guile-user)>


guix --version
guix (GNU Guix) 0.14.0.1050-2cdf1



[-- Attachment #2: v1.scm --]
[-- Type: application/octet-stream, Size: 2352 bytes --]

;;; ggg8 system config
;;; following http://paste.lisp.org/display/145436
(use-modules (gnu))
(use-service-modules networking ssh dbus desktop)
(use-package-modules
 base                  ; glibc-utf8-locales
 admin
 disk
 linux                 ; mdadm
 package-management    ; guix
 screen
 ghostscript           ; gs-fonts
 fonts                 ; font-dejavu font-gnu-freefont-ttf
 curl                  ;lpaste
 ssh                   ; openssh mosh
 rsync
 wget
 version-control       ; git
 aspell                ; aspell-dict-en
 emacs                 ; emacs-no-x-toolkit
 gv
 autotools             ; automake
 texinfo
 gettext
 xorg certs
 graphviz
 virtualization
 )
(operating-system
  (host-name "ggg8")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (bootloader (grub-configuration (target "/dev/sda")))
  (file-systems (cons (file-system
			(device "g1sd")
			(title 'label)
			(mount-point "/")
			(type "ext4"))
		      %base-file-systems))
  (users (cons*
	  (user-account
	   (name "g1")
	   (group "users")
	   (supplementary-groups '("wheel" "kvm"))
	   (home-directory "/home/g1"))
	  (user-account
	   (name "al")
	   (group "users")
	   (supplementary-groups '("wheel" "kvm"))
	   (home-directory "/home/al"))
	  %base-user-accounts))
  (packages
   (cons*
    glibc-utf8-locales
    parted
    qemu
    guix
    screen
    openssh nss-certs xauth mosh
    rsync wget curl ;lpaste
    git
    gs-fonts font-dejavu font-gnu-freefont-ttf
    aspell aspell-dict-en
    emacs-no-x-toolkit 
    flycheck paredit magit gv
    emacs-zenburn-theme emacs-markdown-mode emacs-web-mode 
    gnu-make
    texinfo
    automake
    graphviz
    gnu-make
    texinfo automake
    %base-packages))
  
  (services (cons*
	     ;; (dhcp-client-service)
	     ;; Ethernet.
	     ;; (static-networking-service "eth0" "192.168.1.138"
	     ;; 				#:gateway "192.168.1.1"
	     ;; 				#:name-servers '("192.168.1.1"))
	     (service openssh-service-type
		      (openssh-configuration
		       (x11-forwarding? #t)
		       (permit-root-login #t)))
	     ;; Add GNOME and/or Xfce---we can choose at the log-in
	     ;; screen with F1.  Use the "desktop" services, which
	     ;; include the X11 log-in service, networking with Wicd,
	     ;; and more.
	     (gnome-desktop-service)
	     (xfce-desktop-service)
	     %desktop-services))
  )

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

* bug#30166: guix system vm-image produces ERROR: In procedure copy-file: Success
  2018-01-19  1:36 bug#30166: guix system vm-image produces ERROR: In procedure copy-file: Success George myglc2 Clemmer
@ 2018-01-19 13:25 ` Ludovic Courtès
  2018-01-22  2:05   ` myglc2
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2018-01-19 13:25 UTC (permalink / raw)
  To: George myglc2 Clemmer; +Cc: 30166

Hi,

George myglc2 Clemmer <myglc2@gmail.com> skribis:

> guix system vm-image -M 4 -c 4 /home/g1/www/VM-on-GuixSD/vm/ggg8/v1.scm --image-size=5GB

[...]

> `/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler-cpp.la' -> `/fs/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler-cpp.la'
> `/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler.so.70.0.0' -> `/fs/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler.so.70.0.0'
> ERROR: In procedure copy-file:
> ERROR: In procedure copy-file: Success

Most likely this is because 5GB is not enough.

Can you try *without* the ‘--image-size’ option?  This will let ‘guix
system’ determine the image size automatically.

TIA,
Ludo’.

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

* bug#30166: guix system vm-image produces ERROR: In procedure copy-file: Success
  2018-01-19 13:25 ` Ludovic Courtès
@ 2018-01-22  2:05   ` myglc2
  0 siblings, 0 replies; 3+ messages in thread
From: myglc2 @ 2018-01-22  2:05 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 30166

On 01/19/2018 at 14:25 Ludovic Courtès writes:

> Hi,
>
> George myglc2 Clemmer <myglc2@gmail.com> skribis:
>
>> guix system vm-image -M 4 -c 4 /home/g1/www/VM-on-GuixSD/vm/ggg8/v1.scm --image-size=5GB
>
> [...]
>
>> `/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler-cpp.la' -> `/fs/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler-cpp.la'
>> `/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler.so.70.0.0' -> `/fs/gnu/store/3vr7hais3mwd7hkllbhlwjbs6bk7d9iw-poppler-0.59.0/lib/libpoppler.so.70.0.0'
>> ERROR: In procedure copy-file:
>> ERROR: In procedure copy-file: Success
>
> Most likely this is because 5GB is not enough.
>
> Can you try *without* the ‘--image-size’ option?  This will let ‘guix
> system’ determine the image size automatically.
>
> TIA,
> Ludo’.

Hi Ludo’, yes that fixed it, thanks. - George

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

end of thread, other threads:[~2018-01-22  2:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-19  1:36 bug#30166: guix system vm-image produces ERROR: In procedure copy-file: Success George myglc2 Clemmer
2018-01-19 13:25 ` Ludovic Courtès
2018-01-22  2:05   ` myglc2

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