* using guix in virtualbox
@ 2015-02-10 5:07 westlake
2015-02-10 12:54 ` Adam Pribyl
2015-02-10 16:07 ` Ludovic Courtès
0 siblings, 2 replies; 3+ messages in thread
From: westlake @ 2015-02-10 5:07 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/plain, Size: 724 bytes --]
Hi, I've noticed that people have been using virtualbox with guix, but
over here with 0.8.1 (64-linux), i'm noticing a bootup issue upon
post-install
The setup is informative enough from the guix install page, on top of
which I create two empty .vdi disks, and can use qemu-nbd to transfer
the raw image of the usb-install.
It's actually pretty easy to set this up, and it took under 20 minutes.
However after rebooting and then "unplugging" the installer drive from
Virtualbox. The grub boot menu shows up, it appears the init starts but
soon there is a freezing issue.
Not sure what to do from this point, I understand more details would be
needed to see why this is happening so I added an attachment.
thanks
[-- Attachment #2: guix_bootup.png --]
[-- Type: image/png, Size: 14015 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: using guix in virtualbox
2015-02-10 5:07 using guix in virtualbox westlake
@ 2015-02-10 12:54 ` Adam Pribyl
2015-02-10 16:07 ` Ludovic Courtès
1 sibling, 0 replies; 3+ messages in thread
From: Adam Pribyl @ 2015-02-10 12:54 UTC (permalink / raw)
Cc: guix-devel
On Tue, 10 Feb 2015, westlake wrote:
> Hi, I've noticed that people have been using virtualbox with guix, but over
> here with 0.8.1 (64-linux), i'm noticing a bootup issue upon post-install
>
> The setup is informative enough from the guix install page, on top of which I
> create two empty .vdi disks, and can use qemu-nbd to transfer the raw image
> of the usb-install.
>
> It's actually pretty easy to set this up, and it took under 20 minutes.
> However after rebooting and then "unplugging" the installer drive from
> Virtualbox. The grub boot menu shows up, it appears the init starts but soon
> there is a freezing issue.
>
> Not sure what to do from this point, I understand more details would be
> needed to see why this is happening so I added an attachment.
>
> thanks
This is how I did it with 0.8
convertfromraw gnu-usb-install-version-linux-i686 gnu.vdi --format vdi
Attach it as a new SATA storage to new VB machine, enable PAE in
System/Processor tab, otherwise it may crash. Add another disk image to
install to and after a boot continue with install.
Adam Pribyl
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: using guix in virtualbox
2015-02-10 5:07 using guix in virtualbox westlake
2015-02-10 12:54 ` Adam Pribyl
@ 2015-02-10 16:07 ` Ludovic Courtès
1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2015-02-10 16:07 UTC (permalink / raw)
To: westlake; +Cc: guix-devel
westlake <westlake2012@videotron.ca> skribis:
> The setup is informative enough from the guix install page, on top of
> which I create two empty .vdi disks, and can use qemu-nbd to transfer
> the raw image of the usb-install.
>
> It's actually pretty easy to set this up, and it took under 20
> minutes. However after rebooting and then "unplugging" the installer
> drive from Virtualbox. The grub boot menu shows up, it appears the
> init starts but soon there is a freezing issue.
It seems to be failing very early, but I’m not sure where.
It may be that the initrd is lacking a driver for the virtual disk drive
that you are using. Do you know what drivers are needed for these?
Assuming the virtio drivers are needed, you might need to amend the OS
configuration along the following lines, and to redo the installation
with that configuration:
(operating-system
;; ...
(initrd (lambda (file-systems . rest)
;; Ask for an initrd that contains the virtio drivers.
(apply base-initrd file-systems
#:virtio? #t
rest)))
;; rest of the config...
)
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-02-10 16:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-10 5:07 using guix in virtualbox westlake
2015-02-10 12:54 ` Adam Pribyl
2015-02-10 16:07 ` Ludovic Courtès
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.