aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-07-29 11:42:11 +1000
committerDavid Walter Seikel2013-07-29 11:42:11 +1000
commit19e849b11684971549d622e571fd753b0b5ec610 (patch)
tree1f17491b37a5002099c7ec707a960e5bb21bb4a7
parentVMs run on BTRFS hosts better if you disable the cache on the disk image. (diff)
downloadImpyReleaseBuilder-19e849b11684971549d622e571fd753b0b5ec610.zip
ImpyReleaseBuilder-19e849b11684971549d622e571fd753b0b5ec610.tar.gz
ImpyReleaseBuilder-19e849b11684971549d622e571fd753b0b5ec610.tar.bz2
ImpyReleaseBuilder-19e849b11684971549d622e571fd753b0b5ec610.tar.xz
Fix typo and spacing.
-rw-r--r--README.md30
1 files changed, 29 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6acb129..c50833e 100644
--- a/README.md
+++ b/README.md
@@ -18,29 +18,47 @@ Installing 64 bit Linux build image.
18Get an Ubuntu 10.04.1 AMD64 desktop install CD image. 18Get an Ubuntu 10.04.1 AMD64 desktop install CD image.
19 19
20Create a qemu disk image - 20Create a qemu disk image -
21
21qemu-img create -f qcow2 ubuntu64_base.qcow2 20G 22qemu-img create -f qcow2 ubuntu64_base.qcow2 20G
22 23
24
23Start up qemu, booting from the CD image the first time - 25Start up qemu, booting from the CD image the first time -
26
24qemu-system-x86_64 -M pc -cpu qemu64 -m 1G -hda ubuntu64_base.qcow2 -cdrom ubuntu-10.04.1-desktop-amd64.iso -boot once=d 27qemu-system-x86_64 -M pc -cpu qemu64 -m 1G -hda ubuntu64_base.qcow2 -cdrom ubuntu-10.04.1-desktop-amd64.iso -boot once=d
25 28
29
26Install Ubuntu. Mostly select the defaults, except - 30Install Ubuntu. Mostly select the defaults, except -
31
27Log in automatically. 32Log in automatically.
28 33
34
29Update the system - 35Update the system -
36
30apt-get update 37apt-get update
38
31apt-get dist-upgrade 39apt-get dist-upgrade
32 40
41
33Make sure this is in /etc/init/ttyS0.conf - 42Make sure this is in /etc/init/ttyS0.conf -
43
34start on stopped rc RUNLEVEL=[2345] 44start on stopped rc RUNLEVEL=[2345]
45
35stop on runlevel [!2345] 46stop on runlevel [!2345]
47
36respawn 48respawn
49
37exec /sbin/getty -iLn -l /bin/bash 115200 ttyS0 vt102 50exec /sbin/getty -iLn -l /bin/bash 115200 ttyS0 vt102
38 51
39Install developmont stuff, and build time dependencies. 52
53Install development stuff, and build time dependencies.
54
40apt-get install cmake binutils-gold bison build-essential flex git-core texinfo 55apt-get install cmake binutils-gold bison build-essential flex git-core texinfo
56
41apt-get install freeglut3-dev libcrypto++-dev libgcrypt11-dev libgpg-error-dev libgsf-1-dev libmagic-dev libssl-dev libxinerama-dev libxrender-dev 57apt-get install freeglut3-dev libcrypto++-dev libgcrypt11-dev libgpg-error-dev libgsf-1-dev libmagic-dev libssl-dev libxinerama-dev libxrender-dev
42 58
59
43Shutdown qemu, then setup the snapshot - 60Shutdown qemu, then setup the snapshot -
61
44qemu-img create -f qcow2 -o backing_file=ubuntu64_base.qcow2 ubuntu64_diff.qcow2 62qemu-img create -f qcow2 -o backing_file=ubuntu64_base.qcow2 ubuntu64_diff.qcow2
45 63
46 64
@@ -56,15 +74,25 @@ Installing Windows XP build image.
56 74
57Been a long time since I did this, forgot how. These are the general tasks - 75Been a long time since I did this, forgot how. These are the general tasks -
58 76
77
59create the disk image 78create the disk image
79
60install under qemu 80install under qemu
81
61reboot 82reboot
83
62labourously install all the development stuff and build time dependencies 84labourously install all the development stuff and build time dependencies
85
63(refer to http://wiki.kokuaviewer.org/wiki/Imprudence:Compiling/1.4/Windows for details) 86(refer to http://wiki.kokuaviewer.org/wiki/Imprudence:Compiling/1.4/Windows for details)
87
64reboot 88reboot
89
65setup cygwin shell on serial port as a service 90setup cygwin shell on serial port as a service
91
66or sshd, seems to work better 92or sshd, seems to work better
93
67reboot 94reboot
95
68Then reboot more, coz it's Windows. 96Then reboot more, coz it's Windows.
69 97
70 98