Adphi
Adphi
@GrabbenD Thank you for your interest in the project 😀 ! We don't have the infrastructure to test *d2vm* on bare-metal. Perhaps this is already possible with `raw` mode. We...
Hi @nwmcsween, thanks for reaching out ! What do you mean by windows support ? building windows vm from container image ? This seems to me a little bit complicated....
It looks like this [pull-request](https://github.com/nextcloud/user_oidc/pull/974) has implemented the feature (thanks @julien-nc 😀). To delegate authentication session management to the IdP it is necessary to set `'token_exchange' => true` in the...
Hello @mtanski, thanks for the pull request ! 😀 Can you please add an e2e test case for the feature ? https://github.com/linka-cloud/d2vm/blob/897f49a45239a66b911df2aaca6a2d00add74e7e/e2e/e2e_test.go#L70-L96
Hi @christiantosta , thanks for the kind words! *d2vm* can already produce a UEFI-bootable image with GRUB 2 using `--bootloader=grub-efi`. That will create a FAT32 EFI System Partition on a...
Thanks @stuart11n for reporting this. UEFI is not supported for CentOS and Rocky Linux isn’t officially on our support matrix, so you may run into issues like that one. If...
Hello @lttlrck ! I cannot reproduce using the main branch: ```bash d2vm convert quay.io/centos/centos:stream9 --bootloader grub-bios -o centos-stream.qcow2 -v --force ``` ```bash d2vm run qemu --mem 4096 --cpus 4 centos-stream.qcow2...
Is it possible that one of the dnf contains a vmlinuz which would then be discovered by grub ?
Can you run `find / -name 'vmlinuz*'` inside the vm please ?
You will not find it without the `--bootloader grub-bios`. Due to the following lines, it will be moved to `/boot/vmlinuz`: https://github.com/linka-cloud/d2vm/blob/d8ee37833e25b22996adad2a0fe7026e24657e6b/templates/centos.Dockerfile#L41-L45 Can you run the find command directly in your...