SW_ENGINEERING STUDY
[Linux] Vagrant VM-Automatically on MacOS
GreatJang
2025. 2. 4. 19:44
브로드컴에서 VMware Fusion 다운
Home - Support Portal - Broadcom support portal
It appears your Broadcom Products and Services are supported by one of our certified Support partners Click below to be redirected to the appropriate Support Partner Portal to request support For non-product related issues (Support Portal / Licensing) Clic
support.broadcom.com
Desktop/vms/ubuntu 경로에 Vagrantfile 생성
ubuntu Vagrant 설정
Vagrant.configure("2") do |config|
config.vm.box = "spox/ubuntu-arm"
config.vm.box_version = "1.0.0"
config.vm.network "private_network", ip: "192.168.56.11"
config.vm.provider "vmware_desktop" do |vmware|
vmware.gui = true
vmware.allowlist_verified = true
end
end
vagrant 실행 / vagrant 접속(SSH)
- vagrant up
- vagrant ssh
vagrant VM IP 확인
- ip addr show
vagrant VM 중지 / 삭제 / 상태확인/ 전체 VM 상태확인
중지
- vagrant halt
삭제
- vagrant destroy
상태확인
- vagrant status
전체 VM 상태확인
- vagrant global-status