|
|
|
|
|
by akdev1l
382 days ago
|
|
Yes. The delay you’re complaining about happens because you are looking at general hypervisors which also come with virtualized hardware and need to mimic a bunch of stuff so that most software will work as usual. For example: your VM starts up with the CPU in 16 bit mode because that’s just how things work in x86 and then it waits for the guest OS to set the CPU into 64 bit mode. This is completely unnecessary if you just want to run x86-64 code in a virtualized environment and you control the guest kernel and can just assume things are in 64bit mode because it’s not the 70s or whatever The guest OS would also need to probe few ports to get a bootable disk. If you control the kernel then you can just not do that and boot directly. There’s a ton of stuff that isn’t needed |
|