21.11.21 17:24 작성
·
324
1
==> m-k8s-1.20: Booting VM...
There was an error while executing `VBoxManage`, a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.
Command: ["startvm", "b5498f5f-6c41-4af1-b255-7dd5a0870f5a", "--type", "headless"]
Stderr: VBoxManage: error: The virtual machine 'm-k8s-1.20(github_SysNet4Admin)' has terminated unexpectedly during startup because of signal 10
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component MachineWrap, interface IMachine
답변 2
1
2021. 11. 21. 18:30
macOS Monterey에서의 VirtualBox 버그로 headless 모드 대신 아래와 같이 gui 모드로 실행되게 해야 한다고 합니다.
혹시 관련 문제가 있으신 분들은 참조하세요
config.vm.provider "virtualbox" do |vb|
vb.gui = true
end
- https://www.virtualbox.org/ticket/20636#comment:16
2021. 11. 22. 19:31
Mac은 항상 여러가지로 어려움이 있네요..그래서 전 맥은 업데이트는 항상 1걸음 뒤에서..쿨럭;; 좋은 정보 공유해주셔서 감사합니다.