[Linux] Vagrant VM-Automatically on MacOS

브로드컴에서 VMware Fusion 다운

https://support.broadcom.com/

 

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

 

etc-image-0etc-image-1
etc-image-2etc-image-3
etc-image-4


Desktop/vms/ubuntu 경로에 Vagrantfile 생성

etc-image-5

 

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

etc-image-6


vagrant 실행 / vagrant 접속(SSH)

- vagrant up

etc-image-7

 

- vagrant ssh

etc-image-8


vagrant VM IP 확인

- ip addr show

etc-image-9


vagrant VM 중지 / 삭제 / 상태확인/ 전체 VM 상태확인

중지

- vagrant halt

etc-image-10

 

삭제

- vagrant destroy

etc-image-11

 

상태확인

- vagrant status

etc-image-12

 

전체 VM 상태확인

- vagrant global-status

etc-image-13

'SW_ENGINEERING STUDY' 카테고리의 다른 글

Git 명령어 정리  (0) 2023.11.30
JIRA활용 프로젝트 관리(Git 연동)  (0) 2023.11.29
폭포수 모델과 애자일 방법론 정리  (0) 2023.11.28