How do I run Ubuntu Server headless using Parallels Desktop?

JeremiahLee picture JeremiahLee · Jun 14, 2013 · Viewed 9.5k times · Source

Running VMs "headless" (without windows for each VM being visible on the host) is a great feature of VirtualBox. How do I do it using Parallels Desktop on Mac OS X?

Answer

JeremiahLee picture JeremiahLee · Jun 14, 2013

Make sure Parallels Desktop is not running. If it is running, the commands below will still create a console window.

From Terminal.app, use the Parallels command line: prlctl

# List available VMs
prlctl list --all

# Start a VM using its name
prlctl start UbuntuServer

# Stop the VM
prlctl stop UbuntuServer

# Pause and Resume
prlctl pause UbuntuServer
prlctl resume UbuntuServer

# Reset and Restart
prlctl reset UbuntuServer
prlctl restart UbuntuServer