Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-09-01 Thread GDRUB
Le 31/08/2018 à 19:51, Ivan Mitev a écrit :
>
> On 08/31/2018 08:42 PM, GDRUB wrote:
>> Le 31/08/2018 à 14:43, GDRUB a écrit :
>>> Le 31/08/2018 à 13:33, brendan.h...@gmail.com a écrit :
 On Thursday, August 30, 2018 at 4:43:42 PM UTC-4, GDRUB wrote:
> Thank you for those explanations.
>
> However, Windows 10 fails with error code : 0xc225 "a required
> device isn't connected or can't be accessed".
>
> win10.raw = 96.6 GB
>
> How to fix this error ?
>
>
> Le 30/08/2018 à 11:58, Ivan Mitev a écrit :
>> On 08/30/2018 11:10 AM, gd...@gmail.com wrote:
>>> Hi, 
>>>
>>> I'm trying to run the following command:
>>>
>>> $ qemu-img convert -O raw *.vmdk win10.raw
>>> $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' 
>>> > /home/user/win10-root.img
>>> $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
>>> /home/user/win10-root.img
>>>
>>> qvm-create: error: unrecognized arguments: --hvm --mem=4096
>>>
>>> Source : https://www.qubes-os.org/doc/hvm/
>> You're using 3.2 commands, see the "R4.0: ..." paragraph below in the 
>> doc.
>>
>> The following command should do the trick:
>>
>> qvm-create win10 \
>>  --class StandaloneVM \
>>  --property virt_mode=hvm \
>>  --property kernel='' \
>>  --label=red \
>>  --property memory=4096 \
>>  --property maxmen=4096 \
>>  --root-move-from /home/user/win10-root.img
>>
>>
>>
>>> How to create a new PVH instead of HVM in Dom0 with the root image from 
>>> R4.0 ?
>>>
>>> Thank you so much for your help.
>>>
>>> Best regards.
>>>
 I think the issue of > 10GB images being truncated via ---root-copy-from 
 during create still exists. See this Issue is still open in the tracker: 

 https://github.com/QubesOS/qubes-issues/issues/3422

 You'll likely need to qvm-create w/o the root-copy-from, then 
 qvm-grow-root, then copy the image to the right volume listed in 
 /dev/mapper.

 See this thread (and choose commands wisely!):

 https://groups.google.com/forum/#!topic/qubes-users/vBk-jjvoeT0

 Brendan


Your solution worked like a charm.

I still have some difficulty with two issues :

1) in the panel of Qubes Manager,  state indicator is yellow -
something's not ok. That's troubling to me.

2) to get Windows HVM into real full screen mode. The procedure is
carried out correctly (https://www.qubes-os.org/doc/full-screen-mode/)
but Fullscreen stays grayed out into windows bar

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/0e07510d-3573-55dd-c363-d0fffaf1d0dd%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-31 Thread Ivan Mitev



On 08/31/2018 08:42 PM, GDRUB wrote:
> Le 31/08/2018 à 14:43, GDRUB a écrit :
>> Le 31/08/2018 à 13:33, brendan.h...@gmail.com a écrit :
>>> On Thursday, August 30, 2018 at 4:43:42 PM UTC-4, GDRUB wrote:
 Thank you for those explanations.

 However, Windows 10 fails with error code : 0xc225 "a required
 device isn't connected or can't be accessed".

 win10.raw = 96.6 GB

 How to fix this error ?


 Le 30/08/2018 à 11:58, Ivan Mitev a écrit :
> On 08/30/2018 11:10 AM, gd...@gmail.com wrote:
>> Hi, 
>>
>> I'm trying to run the following command:
>>
>> $ qemu-img convert -O raw *.vmdk win10.raw
>> $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
>> /home/user/win10-root.img
>> $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
>> /home/user/win10-root.img
>>
>> qvm-create: error: unrecognized arguments: --hvm --mem=4096
>>
>> Source : https://www.qubes-os.org/doc/hvm/
> You're using 3.2 commands, see the "R4.0: ..." paragraph below in the doc.
>
> The following command should do the trick:
>
> qvm-create win10 \
>   --class StandaloneVM \
>   --property virt_mode=hvm \
>   --property kernel='' \
>   --label=red \
>   --property memory=4096 \
>   --property maxmen=4096 \
>   --root-move-from /home/user/win10-root.img
>
>
>
>> How to create a new PVH instead of HVM in Dom0 with the root image from 
>> R4.0 ?
>>
>> Thank you so much for your help.
>>
>> Best regards.
>>
>>> I think the issue of > 10GB images being truncated via ---root-copy-from 
>>> during create still exists. See this Issue is still open in the tracker: 
>>>
>>> https://github.com/QubesOS/qubes-issues/issues/3422
>>>
>>> You'll likely need to qvm-create w/o the root-copy-from, then 
>>> qvm-grow-root, then copy the image to the right volume listed in 
>>> /dev/mapper.
>>>
>>> See this thread (and choose commands wisely!):
>>>
>>> https://groups.google.com/forum/#!topic/qubes-users/vBk-jjvoeT0
>>>
>>> Brendan
>>>
>> Hi Brendan,
>>
>> It seems to be the solution to this problem.
>>
>> I'll test this with caution.
>>
>> Thank you so much for your help.
>>
> missing binary in PATH ! :-(
> 
> $ qvm-grow-root win10 100g
> 
> bash : qvm-grow-root : command not found

qvm-grow-root is a R3.2 command, on R4.0 you have to use `qvm-volume`:

https://www.qubes-os.org/doc/resize-disk-image/#expand-disk-image-r40

eg.:

qvm-volume resize win10:root 100G

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/829cc36b-7477-663f-e3b0-ee8a0a873636%40maa.bz.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-31 Thread Alain BERNARD
Le 31/08/2018 à 19:42, GDRUB a écrit :
> Le 31/08/2018 à 14:43, GDRUB a écrit :
>> Le 31/08/2018 à 13:33, brendan.h...@gmail.com a écrit :
>>> On Thursday, August 30, 2018 at 4:43:42 PM UTC-4, GDRUB wrote:
 Thank you for those explanations.

 However, Windows 10 fails with error code : 0xc225 "a required
 device isn't connected or can't be accessed".

 win10.raw = 96.6 GB

 How to fix this error ?


 Le 30/08/2018 à 11:58, Ivan Mitev a écrit :
> On 08/30/2018 11:10 AM, gd...@gmail.com wrote:
>> Hi, 
>>
>> I'm trying to run the following command:
>>
>> $ qemu-img convert -O raw *.vmdk win10.raw
>> $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
>> /home/user/win10-root.img
>> $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
>> /home/user/win10-root.img
>>
>> qvm-create: error: unrecognized arguments: --hvm --mem=4096
>>
>> Source : https://www.qubes-os.org/doc/hvm/
> You're using 3.2 commands, see the "R4.0: ..." paragraph below in the doc.
>
> The following command should do the trick:
>
> qvm-create win10 \
>   --class StandaloneVM \
>   --property virt_mode=hvm \
>   --property kernel='' \
>   --label=red \
>   --property memory=4096 \
>   --property maxmen=4096 \
>   --root-move-from /home/user/win10-root.img
>
>
>
>> How to create a new PVH instead of HVM in Dom0 with the root image from 
>> R4.0 ?
>>
>> Thank you so much for your help.
>>
>> Best regards.
>>
>>> I think the issue of > 10GB images being truncated via ---root-copy-from 
>>> during create still exists. See this Issue is still open in the tracker: 
>>>
>>> https://github.com/QubesOS/qubes-issues/issues/3422
>>>
>>> You'll likely need to qvm-create w/o the root-copy-from, then 
>>> qvm-grow-root, then copy the image to the right volume listed in 
>>> /dev/mapper.
>>>
>>> See this thread (and choose commands wisely!):
>>>
>>> https://groups.google.com/forum/#!topic/qubes-users/vBk-jjvoeT0
>>>
>>> Brendan
>>>
>> Hi Brendan,
>>
>> It seems to be the solution to this problem.
>>
>> I'll test this with caution.
>>
>> Thank you so much for your help.
>>
> missing binary in PATH ! :-(
>
> $ qvm-grow-root win10 100g
>
> bash : qvm-grow-root : command not found
>
>
Sorry : |qvm-volume extend :root |

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/f0e4b585-7fff-7edd-6f8d-d459ab98ed40%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-31 Thread GDRUB
Le 31/08/2018 à 14:43, GDRUB a écrit :
> Le 31/08/2018 à 13:33, brendan.h...@gmail.com a écrit :
>> On Thursday, August 30, 2018 at 4:43:42 PM UTC-4, GDRUB wrote:
>>> Thank you for those explanations.
>>>
>>> However, Windows 10 fails with error code : 0xc225 "a required
>>> device isn't connected or can't be accessed".
>>>
>>> win10.raw = 96.6 GB
>>>
>>> How to fix this error ?
>>>
>>>
>>> Le 30/08/2018 à 11:58, Ivan Mitev a écrit :
 On 08/30/2018 11:10 AM, gd...@gmail.com wrote:
> Hi, 
>
> I'm trying to run the following command:
>
> $ qemu-img convert -O raw *.vmdk win10.raw
> $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
> /home/user/win10-root.img
> $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
> /home/user/win10-root.img
>
> qvm-create: error: unrecognized arguments: --hvm --mem=4096
>
> Source : https://www.qubes-os.org/doc/hvm/
 You're using 3.2 commands, see the "R4.0: ..." paragraph below in the doc.

 The following command should do the trick:

 qvm-create win10 \
--class StandaloneVM \
--property virt_mode=hvm \
--property kernel='' \
--label=red \
--property memory=4096 \
--property maxmen=4096 \
--root-move-from /home/user/win10-root.img



> How to create a new PVH instead of HVM in Dom0 with the root image from 
> R4.0 ?
>
> Thank you so much for your help.
>
> Best regards.
>
>> I think the issue of > 10GB images being truncated via ---root-copy-from 
>> during create still exists. See this Issue is still open in the tracker: 
>>
>> https://github.com/QubesOS/qubes-issues/issues/3422
>>
>> You'll likely need to qvm-create w/o the root-copy-from, then qvm-grow-root, 
>> then copy the image to the right volume listed in /dev/mapper.
>>
>> See this thread (and choose commands wisely!):
>>
>> https://groups.google.com/forum/#!topic/qubes-users/vBk-jjvoeT0
>>
>> Brendan
>>
> Hi Brendan,
>
> It seems to be the solution to this problem.
>
> I'll test this with caution.
>
> Thank you so much for your help.
>
missing binary in PATH ! :-(

$ qvm-grow-root win10 100g

bash : qvm-grow-root : command not found


-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/84167296-7970-71fe-0cc4-e4e267c4f5a6%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-31 Thread GDRUB
Le 31/08/2018 à 13:33, brendan.h...@gmail.com a écrit :
> On Thursday, August 30, 2018 at 4:43:42 PM UTC-4, GDRUB wrote:
>> Thank you for those explanations.
>>
>> However, Windows 10 fails with error code : 0xc225 "a required
>> device isn't connected or can't be accessed".
>>
>> win10.raw = 96.6 GB
>>
>> How to fix this error ?
>>
>>
>> Le 30/08/2018 à 11:58, Ivan Mitev a écrit :
>>> On 08/30/2018 11:10 AM, gd...@gmail.com wrote:
 Hi, 

 I'm trying to run the following command:

 $ qemu-img convert -O raw *.vmdk win10.raw
 $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
 /home/user/win10-root.img
 $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
 /home/user/win10-root.img

 qvm-create: error: unrecognized arguments: --hvm --mem=4096

 Source : https://www.qubes-os.org/doc/hvm/
>>> You're using 3.2 commands, see the "R4.0: ..." paragraph below in the doc.
>>>
>>> The following command should do the trick:
>>>
>>> qvm-create win10 \
>>> --class StandaloneVM \
>>> --property virt_mode=hvm \
>>> --property kernel='' \
>>> --label=red \
>>> --property memory=4096 \
>>> --property maxmen=4096 \
>>> --root-move-from /home/user/win10-root.img
>>>
>>>
>>>
 How to create a new PVH instead of HVM in Dom0 with the root image from 
 R4.0 ?

 Thank you so much for your help.

 Best regards.

> I think the issue of > 10GB images being truncated via ---root-copy-from 
> during create still exists. See this Issue is still open in the tracker: 
>
> https://github.com/QubesOS/qubes-issues/issues/3422
>
> You'll likely need to qvm-create w/o the root-copy-from, then qvm-grow-root, 
> then copy the image to the right volume listed in /dev/mapper.
>
> See this thread (and choose commands wisely!):
>
> https://groups.google.com/forum/#!topic/qubes-users/vBk-jjvoeT0
>
> Brendan
>
Hi Brendan,

It seems to be the solution to this problem.

I'll test this with caution.

Thank you so much for your help.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/944cfb62-b580-df18-207d-8180e09e32fe%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-31 Thread brendan . hoar
On Thursday, August 30, 2018 at 4:43:42 PM UTC-4, GDRUB wrote:
> Thank you for those explanations.
> 
> However, Windows 10 fails with error code : 0xc225 "a required
> device isn't connected or can't be accessed".
> 
> win10.raw = 96.6 GB
> 
> How to fix this error ?
> 
> 
> Le 30/08/2018 à 11:58, Ivan Mitev a écrit :
> >
> > On 08/30/2018 11:10 AM, gd...@gmail.com wrote:
> >> Hi, 
> >>
> >> I'm trying to run the following command:
> >>
> >> $ qemu-img convert -O raw *.vmdk win10.raw
> >> $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
> >> /home/user/win10-root.img
> >> $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
> >> /home/user/win10-root.img
> >>
> >> qvm-create: error: unrecognized arguments: --hvm --mem=4096
> >>
> >> Source : https://www.qubes-os.org/doc/hvm/
> > You're using 3.2 commands, see the "R4.0: ..." paragraph below in the doc.
> >
> > The following command should do the trick:
> >
> > qvm-create win10 \
> > --class StandaloneVM \
> > --property virt_mode=hvm \
> > --property kernel='' \
> > --label=red \
> > --property memory=4096 \
> > --property maxmen=4096 \
> > --root-move-from /home/user/win10-root.img
> >
> >
> >
> >> How to create a new PVH instead of HVM in Dom0 with the root image from 
> >> R4.0 ?
> >>
> >> Thank you so much for your help.
> >>
> >> Best regards.
> >>

I think the issue of > 10GB images being truncated via ---root-copy-from during 
create still exists. See this Issue is still open in the tracker: 

https://github.com/QubesOS/qubes-issues/issues/3422

You'll likely need to qvm-create w/o the root-copy-from, then qvm-grow-root, 
then copy the image to the right volume listed in /dev/mapper.

See this thread (and choose commands wisely!):

https://groups.google.com/forum/#!topic/qubes-users/vBk-jjvoeT0

Brendan

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/d685dd94-3b2d-4363-aa15-c950e6f5991e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-31 Thread Ivan Mitev



On 08/30/2018 11:43 PM, GDRUB wrote:
> Thank you for those explanations.
> 
> However, Windows 10 fails with error code : 0xc225 "a required
> device isn't connected or can't be accessed".
> 
> win10.raw = 96.6 GB
> 
> How to fix this error ?

Sorry, no idea...

(PS: please do not top post)

> 
> 
> Le 30/08/2018 à 11:58, Ivan Mitev a écrit :
>>
>> On 08/30/2018 11:10 AM, gdru...@gmail.com wrote:
>>> Hi, 
>>>
>>> I'm trying to run the following command:
>>>
>>> $ qemu-img convert -O raw *.vmdk win10.raw
>>> $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
>>> /home/user/win10-root.img
>>> $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
>>> /home/user/win10-root.img
>>>
>>> qvm-create: error: unrecognized arguments: --hvm --mem=4096
>>>
>>> Source : https://www.qubes-os.org/doc/hvm/
>> You're using 3.2 commands, see the "R4.0: ..." paragraph below in the doc.
>>
>> The following command should do the trick:
>>
>> qvm-create win10 \
>>  --class StandaloneVM \
>>  --property virt_mode=hvm \
>>  --property kernel='' \
>>  --label=red \
>>  --property memory=4096 \
>>  --property maxmen=4096 \
>>  --root-move-from /home/user/win10-root.img
>>
>>
>>
>>> How to create a new PVH instead of HVM in Dom0 with the root image from 
>>> R4.0 ?
>>>
>>> Thank you so much for your help.
>>>
>>> Best regards.
>>>
> 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/3534b73b-dd58-734e-aed2-e16eb1d6f4da%40maa.bz.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-30 Thread GDRUB
Thank you for those explanations.

However, Windows 10 fails with error code : 0xc225 "a required
device isn't connected or can't be accessed".

win10.raw = 96.6 GB

How to fix this error ?


Le 30/08/2018 à 11:58, Ivan Mitev a écrit :
>
> On 08/30/2018 11:10 AM, gdru...@gmail.com wrote:
>> Hi, 
>>
>> I'm trying to run the following command:
>>
>> $ qemu-img convert -O raw *.vmdk win10.raw
>> $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
>> /home/user/win10-root.img
>> $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
>> /home/user/win10-root.img
>>
>> qvm-create: error: unrecognized arguments: --hvm --mem=4096
>>
>> Source : https://www.qubes-os.org/doc/hvm/
> You're using 3.2 commands, see the "R4.0: ..." paragraph below in the doc.
>
> The following command should do the trick:
>
> qvm-create win10 \
>   --class StandaloneVM \
>   --property virt_mode=hvm \
>   --property kernel='' \
>   --label=red \
>   --property memory=4096 \
>   --property maxmen=4096 \
>   --root-move-from /home/user/win10-root.img
>
>
>
>> How to create a new PVH instead of HVM in Dom0 with the root image from R4.0 
>> ?
>>
>> Thank you so much for your help.
>>
>> Best regards.
>>

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/aef2fa8d-9c4a-30da-7eff-1e76684379c9%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-30 Thread Ivan Mitev



On 08/30/2018 11:10 AM, gdru...@gmail.com wrote:
> Hi, 
> 
> I'm trying to run the following command:
> 
> $ qemu-img convert -O raw *.vmdk win10.raw
> $ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
> /home/user/win10-root.img
> $ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
> /home/user/win10-root.img
> 
> qvm-create: error: unrecognized arguments: --hvm --mem=4096
> 
> Source : https://www.qubes-os.org/doc/hvm/

You're using 3.2 commands, see the "R4.0: ..." paragraph below in the doc.

The following command should do the trick:

qvm-create win10 \
--class StandaloneVM \
--property virt_mode=hvm \
--property kernel='' \
--label=red \
--property memory=4096 \
--property maxmen=4096 \
--root-move-from /home/user/win10-root.img



> 
> How to create a new PVH instead of HVM in Dom0 with the root image from R4.0 ?
> 
> Thank you so much for your help.
> 
> Best regards.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/03faaa4b-b4e9-6f78-8abe-82406e7d2bca%40maa.bz.
For more options, visit https://groups.google.com/d/optout.


[qubes-users] Qubes-R4.0 : missing argument to qvm-create

2018-08-30 Thread gdrub51
Hi, 

I'm trying to run the following command:

$ qemu-img convert -O raw *.vmdk win10.raw
$ qvm-run --pass-io untrusted 'cat "/media/user/externalhd/win10.raw"' > 
/home/user/win10-root.img
$ qvm-create --hvm win10 --label red --mem=4096 --root-move-from 
/home/user/win10-root.img

qvm-create: error: unrecognized arguments: --hvm --mem=4096

Source : https://www.qubes-os.org/doc/hvm/

How to create a new PVH instead of HVM in Dom0 with the root image from R4.0 ?

Thank you so much for your help.

Best regards.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To post to this group, send email to qubes-users@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/862c3508-ef47-40b7-b0d6-f090346cd039%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.