Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to power-on a VMWare Fusion virtual machine without opening the VMWare application (and other windows)?

I always SSH into my virtual machine and don't use VMWare's virtual machine window/terminal after I am done setting up the VM. I find it annoying to always have the VMWare Fusion application open as well as the VM window, thus, I want to be able to silently start the VM from my terminal and do all other actions only through terminal.

I saw this page on the VMWare website that talks of starting a VM with the command:

/Applications/VMware\ Fusion.app/Contents/Library/vmrun start full/path/of/your/virtual/machine/bundle

That is a step in the right direction as I don't need to click anything to start my VM, however, it still opens the application and VM in windows.

When I used Virtual Box, I remember being able to do this with a command like:

VBoxManage startvm "VM name" --type headless

Is there a similar command that for VMWare that would allow me to run my VM headless?

like image 731
peachykeen Avatar asked Oct 21 '25 04:10

peachykeen


1 Answers

You can try :

vmrun start full/path/of/your/virtual/machine/bundle nogui
like image 106
Philippe Avatar answered Oct 22 '25 19:10

Philippe