diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-12-15 00:12:43 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-12-15 00:15:36 +0100 |
commit | 047ae5c3458d03bea4926e6cc1760bcfce1e2ab4 (patch) | |
tree | b5dd51609ff44a2285d450ed1b61c0d1ac1c42a9 /doc/guix.texi | |
parent | 2cf16f2c31e5e124754ec8c400f22ad9fe4a506b (diff) | |
download | guix-047ae5c3458d03bea4926e6cc1760bcfce1e2ab4.tar.gz |
doc: Use VM image file name consistently.
Previously, what "/tmp/qemu-image" refers to could be unclear at first. * doc/guix.texi (Running Guix in a VM): Use the original image file name instead of /tmp/qemu-image. * po/doc/guix-manual.de.po, po/doc/guix-manual.es.po, po/doc/guix-manual.fr.po, po/doc/guix-manual.pt_BR.po, po/doc/guix-manual.ru.po, po/doc/guix-manual.zh_CN.po: Adjust accordingly.
Diffstat (limited to 'doc/guix.texi')
-rw-r--r-- | doc/guix.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 2fc73b8f3e..784114f0bb 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -39223,7 +39223,7 @@ $ qemu-system-x86_64 \ -nic user,model=virtio-net-pci \ -enable-kvm -m 2048 \ -device virtio-blk,drive=myhd \ - -drive if=none,file=/tmp/qemu-image,id=myhd + -drive if=none,file=guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2,id=myhd @end example Here is what each of these options means: @@ -39259,8 +39259,9 @@ better performance than if it were emulating a complete disk drive. See the QEMU and KVM documentation for more info. @item -drive if=none,file=/tmp/qemu-image,id=myhd -Use our QCOW image, the @file{/tmp/qemu-image} file, as the backing -store of the ``myhd'' drive. +Use our QCOW image, the +@file{guix-system-vm-image-@value{VERSION}.x86_64-linux.qcow2} file, as +the backing store of the ``myhd'' drive. @end table The default @command{run-vm.sh} script that is returned by an invocation of |