unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* GUIX 0.7 under QEMU/KVM with virtio
@ 2014-10-04  4:59 Assaf Gordon
  2014-10-04 20:42 ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: Assaf Gordon @ 2014-10-04  4:59 UTC (permalink / raw)
  To: guix-devel

Hello Guix Developers,

I'm experimenting in using Guix under QEMU/KVM.

I've read these:
https://lists.gnu.org/archive/html/guix-devel/2014-09/msg00326.html
http://lists.gnu.org/archive/html/guix-devel/2014-09/msg00149.html

First,
I can provide another recipe:
   ## On Host
   $ wget ftp://alpha.gnu.org/gnu/guix/gnu-usb-install-0.7.x86_64.xz
   $ unxz gnu-usb-install-0.7.x86_64.xz
   $ qemu-img create -q -f qcow2 guix.qcow2 5G
   $ qemu-system-x86_64 --enable-kvm \
        -m 1024 \
        -net nic,model=virtio -net user \
        -boot menu=on \
        -hda gnu-usb-install-0.7.x86_64 \
        -drive file=guix.qcow2,if=virtio,media=disk,index=0 \
        -serial mon:stdio \
        -vga std

   ## Inside guest:
   1. Press F12 (quickly) for QEMU Boot menu
   2. Choose "1" for QEMU ATA DISK 750MB SIZE (which is the USB image)
   3. GRUB Loads, boots into Guix shell
   4. The USB drive is "/dev/sda1"
   5. The Disk image is "/dev/vda" (unpartitioned)
   6. Parition with fdisk:
      # fdisk /dev/vda
      press n (new partition)
      press p (primary partition)
      (use defaults for all values)
      a (activate parition)
      1 (parition number)
      w (write changes)
   7. Create File system
      #  mkfs.ext4 -L guix /dev/vda1
   8. Follow instructions at
      http://www.gnu.org/software/guix/manual/html_node/System-Installation.html
      # dhclient eth0
      # mount /dev/vda1 /mnt
      # deco start cow-store /mnt
      # guix system init /mnt/etc/config.scm /mnt
      (my 'config.scm' attached below)


Second,
I can confirm Nate's observation that using QEMU's "-usbdrive" option for the USB image causes everything to be VERY slow.
not sure why.
Using "-hda" for the USB image is much better.


Third,
After boot (before setup), I'm trying to get a login prompt on the serial port (which QEMU's redirect to the terminal).
I can do the following:
    echo "hello" > /dev/ttyS0   => appears on the terminal

I can also boot with "console=ttyS0,9600n8" (in the GRUB command line), and the kernel messages appear on the console.
However, I can't get a login prompt on the serial console.

I tried variations of:
    agetty -L 9600 ttyS0 linux

But they all exit after a timeout of few seconds, and no prompt appears on the serial console.
Any ideas ?


Fourth,
Sadly, after installation is complete, and after rebooting, the system fails to load from "/dev/vda1" (drops to "early boot guile").
Based on the kernel messages, it seems the "virtio_blk" driver is not loaded, and so "/dev/vda" is not available.
If I then switch QEMU parameters from "-drive if=virtio" to "-drive if=ide" the system loads fine (also requires changing grub's "--root" parameter).

Is there a way to fix this? force the kernel to load virto driver?




Regards,
  - Assaf


=== config.scm, adapted for "/dev/vda" ====
(use-modules (gnu))

(operating-system
   (host-name "guix07")
   (timezone "Europe/Paris")
   (locale "en_US.UTF-8")
   (bootloader (grub-configuration (device "/dev/vda")))
   (file-systems (cons (file-system
                         (device "/dev/vda1")
                         (mount-point "/")
                         (type "ext4"))
                       %base-file-systems))
   (users (list (user-account
                 (name "miles")
                 (group "users")
                 (supplementary-groups '("wheel"))
                 (home-directory "/home/miles")))))
=================

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

end of thread, other threads:[~2014-10-06 19:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-04  4:59 GUIX 0.7 under QEMU/KVM with virtio Assaf Gordon
2014-10-04 20:42 ` Ludovic Courtès
2014-10-05  0:15   ` Assaf Gordon
2014-10-05 12:29     ` Ludovic Courtès
2014-10-05 23:29       ` Assaf Gordon
2014-10-06 19:28         ` Ludovic Courtès

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