Managing VirtualBox VMs from the Linux Command Line
View all virtual machines registered with VirtualBox: vboxmanage list vms Output example: “ubuntu-server” {a1b2c3d4-e5f6-7890-abcd-ef1234567890} “debian-test” {b2c3d4e5-f6a7-8901-bcde-f12345678901} “centos-prod” {d6c938d8-0bec-57f0-9fd3-8e395ba3d218} Each VM appears with its name and UUID. The UUID uniquely identifies the VM in VirtualBox’s database. List running VMs only See only active virtual machines: vboxmanage list runningvms This is useful when you have many VMs…
