Richard B.

Results 94 comments of Richard B.

It seems to be an apparmor issue, `aa-status` from a fresh x86 proxmox show 13 profiles loaded, while : ``` root@proxmox-arm64:~# aa-status apparmor module is loaded. 12 profiles are loaded....

Found a "workaround", adding this line (clue found [here](https://unix.stackexchange.com/a/450309)): ``` lxc.apparmor.profile: lxc-default-with-nesting ``` to `/etc/pve/lxv/2001.conf` make `pct start 2001` working 💪 ![Screenshot](https://user-images.githubusercontent.com/1105089/138151943-61fc354d-87e3-48c1-a521-26684df43200.png)

Just wrote a single script to gather these values: ``` require 'cfpropertylist' plist = CFPropertyList::List.new(:file => ARGV[0]) result = CFPropertyList.native_types(plist.value) objects = result['$objects'] locale = "" language = "" languagesIndex...

can't get a netboot vm starting: ``` vmcli -c 4 -m 4096 -d disk.img --kernel netboot/debian-installer/arm64/linux --initrd netboot/debian-installer/arm64/initrd --cmdline="console=hvc0 irqfixup" ``` with kernel/initrd gathered from https://deb.debian.org/debian/dists/bullseye/main/installer-arm64/current/images/netboot/ (arm64 because on a...

Tried to mimic what is done in this [Building a Debian Buster QEMU image for AARCH64](https://www.diozero.com/internals/qemuaarch64.html) tutorial (but with bullseye), can't get vmcli to boot...

rebooted, rebuilt vmcli (using Xcode 13), now I got an error message: ``` vmcli -c 1 -m 4096 --kernel netboot/debian-installer/arm64/linux --initrd netboot/debian-installer/arm64/initrd --cmdline="console=hvc0 irqfixup" Internal Virtualization error. The virtual machine...

OK, got it: ``` Note that Virtualization.framework provides all IO as virtio-pci, including the console (i.e. not a UART). The debian install kernel does not have virtio drivers, unfortunately. I...

Found the issue... if vmcli arch is x86_64 and you want a arm64 guest... it won't work ``` $ file build/vmcli build/vmcli: Mach-O 64-bit executable arm64 ``` ``` $ git...

To have the debian kernel, I regenerated the initrd/vmlinuz with virtio support (it displays kernel output fine, but can't see the login prompt): https://intl.cloud.tencent.com/document/product/213/9929

> @ladar I would love to get to the bottom on at least understanding what is feasible, so either we can say this can't work at all, or it can...