브로드컴에서 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

'SW_ENGINEERING STUDY' 카테고리의 다른 글
Git 명령어 정리 (0) | 2023.11.30 |
---|---|
JIRA활용 프로젝트 관리(Git 연동) (0) | 2023.11.29 |
폭포수 모델과 애자일 방법론 정리 (0) | 2023.11.28 |