help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Building Qemu VM


From: Andreas Enge
Subject: Re: Building Qemu VM
Date: Wed, 11 Dec 2024 13:42:12 +0100

Am Tue, Dec 10, 2024 at 11:50:44PM -0500 schrieb Timothy Washington:
> (define (boot-partition size)
>   (file-system
>      (mount-point "/boot")
>      (device "/dev/vda1")
>      (type "ext4")))
> 
> (define (root-partition size)
>   (file-system
>      (mount-point "/")
>      (device "/dev/vda1")
>      (type "ext4")))
> 
> (define vm-image
>   (image
>    (operating-system physical-operating-system)
>    (format 'compressed-qcow2)
>    (size (* 10 (expt 2 30)))
>    (partitions
>     (list (boot-partition (* 1 (expt 2 30)))
>           (root-partition (* 9 (expt 2 30)))))))

Have a look at the documentation of the "image" record:
   https://guix.gnu.org/manual/en/html_node/image-Reference.html#index-image
and follow the "partition Reference":
   https://guix.gnu.org/manual/en/html_node/partition-Reference.html

A partition is not a file-system.

Andreas




reply via email to

[Prev in Thread] Current Thread [Next in Thread]