Lazy Ubuntu

How to create VirtualBox virtual machines from Command line

by Toor, August 9th, 2009 | 2 Comments

You can create VirtualBox virtual machines from command line in 3 easy steps. We will assume Ubuntu 9.10 in the following example.

  1. Create new virtual machine:

    $ VBoxManage createvm --name "Ubuntu 9.10" --register

  2. Create virtual hard disk (5 GB):

    $ VBoxManage createhd --filename "Ubuntu.vdi" --size 5000 --remember

  3. Modify virtual machine:

    $ VBoxManage modifyvm "Ubuntu 9.10" --memory "512MB" --hda "Ubuntu.vdi" --dvd /home/toor/karmic-desktop-i386.iso --acpi on --boot1 dvd --nic1 nat

    • –memory - memory size
    • –hda - specify virtual hard disk
    • –dvd - specify ISO image file
    • –acpi on - enable ACPI support
    • –boot1 - specify boot order
    • –nic1 - network setting

Now you can start virtual machine by typing this command:

$ VBoxManage startvm "Ubuntu 9.10"

If you like this post, please consider buying me a beer.

Tags: HOWTOs

2 responses so far ↓

  • 1 August 9th, 2009 - Technology // Aug 9, 2009 at 11:00 am

    […] How to create VirtualBox virtual machines from Command line — Lazy …By Toor How to create VirtualBox virtual machines from Command line. by Toor, August 9th, 2009 | No Comments. You can create VirtualBox virtual machines from command line in 3 easy steps. We will assume Ubuntu 9.10 in the following example. …Lazy Ubuntu - http://lazyubuntu.com/ […]

  • 2 mrwn // Oct 28, 2009 at 7:53 pm

    nice :D thanks man … couldn’t buy u a beer though, didn’t have paypal …

Leave a Comment