-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does it could run Centos Image with Arm64 ? #22
Comments
sudo /usr/local/vftool/vftool/build/vftool -k /Volumes/Centos/images/pxeboot/vmlinuz -d CentOS-7-aarch64-Minimal-2009.iso -m 4096 -a "console=hvc0" |
M1 Macbook Pro |
same error (but with debian netinstall) using vmcli |
Downloaded https://cloud.debian.org/images/cloud/bullseye/latest/debian-11-generic-arm64.tar.xz, mounted it on a linux to get vmlinuz/initrd files, then:
:/ |
finally got it working \o/
And another terminal with The issue was.... vftool binary arch:
diff --git a/Makefile b/Makefile
index d019003..18d5630 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ prep:
mkdir -p build/
build/vftool: vftool/main.m
- clang $(CFLAGS) $< -o $@ $(FWKS)
+ clang -arch arm64 $(CFLAGS) $< -o $@ $(FWKS)
.PHONY: sign
sign: build/vftool Run
|
I use the Centos Image file and This is my error :
VM start error: Error Domain=VZErrorDomain Code=1 "The virtual machine failed to start." UserInfo={NSLocalizedFailure=Internal Virtualization error., NSLocalizedFailureReason=The virtual machine failed to start.}
The text was updated successfully, but these errors were encountered: