Differences between revisions 2 and 9 (spanning 7 versions)
Revision 2 as of 2009-02-11 06:02:32
Size: 895
Editor: OndrejCertik
Comment:
Revision 9 as of 2009-02-11 06:17:53
Size: 1401
Editor: OndrejCertik
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
You need a recent virtualbox, or the (proprietary) server version of it (which is free as in beer). In any case, the steps below work for me on Ubuntu intrepid:

Line 7: Line 10:
wajig install virtualbox-2.1 $ wajig install virtualbox-2.1
Line 11: Line 14:
VBoxManage createvm -name ubuntu -register
VBoxManage modifyvm ubuntu -memory "2048MB" -acpi on -boot1 dvd -nic1 nat
VBoxManage createvdi -filename “/var/vbox/ubuntu.vdi” -size 20000 -register
VBoxManage registerimage dvd ~/ext/debian-40r6-amd64-netinst.iso
VBoxManage modifyvm ubuntu -dvd ~/ext/debian-40r6-amd64-netinst.iso
$ VBoxManage createvm -name ubuntu -register
$ VBoxManage modifyvm ubuntu -memory "2048MB" -acpi on -boot1 dvd -nic1 nat
$ VBoxManage createvdi -filename ~/.VirtualBox/Machines/ubuntu/ubuntu.vdi -size 20000 -register
$ VBoxManage registerimage dvd ~/ext/debian-40r6-i386-netinst.iso
$ VBoxManage modifyvm ubuntu -dvd ~/ext/debian-40r6-i386-netinst.iso
Line 17: Line 20:
Start the image: == Start the image ==
Line 19: Line 22:
VBoxHeadless -startvm ubuntu $ VBoxHeadless -startvm ubuntu
Line 26: Line 29:
Connect to the image (requires X): Connect to the image (requires X) on the same machine:
Line 30: Line 33:
You can login remotely if you want, or forward the port. Or you can login remotely by forwarding the 3389 port:
{{{
$ ssh -L 3389:localhost:3389 server
}}}
And from your desktop computer
{{{
rdesktop localhost
}}}

== Stop the image (do not save changes) ==
{{{
VBoxManage controlvm ubuntu poweroff
}}}

== Stop the image (save changes) ==
{{{
VBoxManage controlvm ubuntu savestate
}}}

You need a recent virtualbox, or the (proprietary) server version of it (which is free as in beer). In any case, the steps below work for me on Ubuntu intrepid:

/etc/apt/sources.list:

deb http://download.virtualbox.org/virtualbox/debian intrepid non-free

Execute:

$ wajig install virtualbox-2.1

Answer yes to install the kernel module, it should just work. Create the virtual image:

$ VBoxManage createvm -name ubuntu -register
$ VBoxManage modifyvm ubuntu -memory "2048MB" -acpi on -boot1 dvd -nic1 nat
$ VBoxManage createvdi -filename ~/.VirtualBox/Machines/ubuntu/ubuntu.vdi -size 20000 -register
$ VBoxManage registerimage dvd ~/ext/debian-40r6-i386-netinst.iso
$ VBoxManage modifyvm ubuntu -dvd ~/ext/debian-40r6-i386-netinst.iso

Start the image

$ VBoxHeadless -startvm ubuntu
VirtualBox Headless Interface 2.1.2
(C) 2008-2009 Sun Microsystems, Inc.
All rights reserved.

Listening on port 3389

Connect to the image (requires X) on the same machine:

rdesktop localhost

Or you can login remotely by forwarding the 3389 port:

$ ssh -L 3389:localhost:3389 server

And from your desktop computer

rdesktop localhost

Stop the image (do not save changes)

VBoxManage controlvm ubuntu poweroff

Stop the image (save changes)

VBoxManage controlvm ubuntu savestate

SageVirtualBox (last edited 2012-02-14 22:35:28 by ltw)