Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


fixed CLGI window
[palacios.git] / RUNNING.LINUX
1 Once you have built a vmm.img file (see SETUP.LINUX for how to set up
2 and test the development environment needed to do this), you can do
3 the following:
4
5 - dd vmm.img to a floppy and boot from it
6 - network boot from vmm.img using PXE
7 - use mkisofs to build a bootable cdrom from vmm.img
8 - boot from vmm.img using qemu or other emulator 
9
10 All but the last option (qemu) are very site-dependent.  
11
12 To boot from vmm.img using qemu, do the following:
13
14 Make sure qemu is installed.  You will need at least version 0.9.1 for
15 the necessary support of AMD SVM virtualization extensions.  
16
17 If you would like to install qemu, a copy is in the repository:
18
19 export DEVROOT=/path/to/your/vmm-tools
20
21 untar $DEVROOT/utils/qemu-0.9.1.tar.gz and follow instructions for
22 building and installing it.  Notice that you can use the --prefix
23 configure option to choose where to put it.
24
25 Assuming it's installed:
26
27 export QEMUROOT=/path/to/your/qemu-install
28
29 You can then run your vmm.img thus:
30
31 $QEMUROOT/bin/qemu-system-x86_64 -m 1024 -serial file:serial.out -fda vmm.img
32
33 On running this, you should see the vmm boot in a window, accompanied
34 by lots of debugging output being spit into the file serial.out.
35
36 You can add other options to, for example, provide a boot cd, network
37 cards, etc.
38
39
40
41