diff options
author | Florian Pelz <pelzflorian@pelzflorian.de> | 2019-06-18 13:16:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-06-24 23:17:09 +0200 |
commit | a53a60e0a039c687a8a958f2c0f3e7eb8e09ac92 (patch) | |
tree | afbd4c7d34a8380e5aae9369a3ba2411826598ca /doc | |
parent | 2135610c9b4d9c59ab076550563dc0aef1d9111c (diff) | |
download | guix-a53a60e0a039c687a8a958f2c0f3e7eb8e09ac92.tar guix-a53a60e0a039c687a8a958f2c0f3e7eb8e09ac92.tar.gz |
doc: Recommend '-enable-kvm' for installing in a VM as well.
* doc (Installing Guix in a VM): Add '-enable-kvm' to example.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 65c3b8a7f1..1d807832c3 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -2430,13 +2430,14 @@ The resulting file will be much smaller than 50 GB (typically less than Boot the USB installation image in an VM: @example -qemu-system-x86_64 -m 1024 -smp 1 \ +qemu-system-x86_64 -m 1024 -smp 1 -enable-kvm \ -net user -net nic,model=virtio -boot menu=on \ -drive file=guix-system-install-@value{VERSION}.@var{system}.iso \ -drive file=guixsd.img @end example -The ordering of the drives matters. +The ordering of the drives matters. @code{-enable-kvm} is optional, but +significantly improves performance, @pxref{Running Guix in a VM}. In the VM console, quickly press the @kbd{F12} key to enter the boot menu. Then press the @kbd{2} key and the @kbd{RET} key to validate your |