File: quick.html

package info (click to toggle)
chos 0.82-2
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 1,024 kB
  • ctags: 968
  • sloc: ansic: 4,180; asm: 2,103; tcl: 1,976; makefile: 152; sh: 79
file content (68 lines) | stat: -rw-r--r-- 2,360 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
<body bgcolor=#ffffff text=#000000 link=#4f4fff vlink=#0000ff alink=#00ff00>

<h1>Beginner's QuickStart guide to Choose-OS</h1>

For Linux newbies or any1 new to Choose-OS all the Choose-OS configuration
options may seem like a jungle :). The purpose of this document is to tell
how to create the very simplest configuration file/bootup menu.
<p>
Here's the simple configuration file first. Below we will discuss what
the things here do...<p>
<hr>
<pre>
	banner=What do we want to do today?
	install=/dev/hda
	
	linux "Linux" {
		image=/boot/vmlinuz
		cmdline= vga=EXTENDED
	}
	
	bootsect "DOS" {
		image=/dev/hda1
	}
</pre>
<hr>
<p>
That was it. Not that complex, eh?
<p>Now, let's take a look what all those lines do.
<dl>
<dt><i><b>banner=</b>What do we want to do today?</i>
<dd>This sets banner to "What do we want to do today?". Banner is the
    message shown above the menu of all the images. This is optional,
    but you might prefer something custom instead of "<i>Choose-OS 0.8 Bootup Menu</i>" :)
<p>
<dt><i><b>install=</b>/dev/hda</i>
<dd>This option is required and is used to tell Choose-OS where to install its
bootsector. Normally this is '<i>/dev/hda</i>', in which case Choose-OS will
normally be the first thing to be run after BIOS finishes.
<p>
<dt><i><b>linux "</b>Linux<b>" {</b></i>
<dd>Start defining a Linux kernel image. String in quotes is the name for
the image in the bootup menu.
<dl>
	<dt><i><b>image=</b>/boot/vmlinuz</i>
	<dd>vmlinuz - arent kernels named that?. This option tells the file the kernel is.
	<dt><i><b>cmdline= </b>vga=EXTENDED</i>
	<dd>This option is used to set Linux command line. It isn't necessary,
	but is used to tell Linux about stuff. This example sets up
	80x50 video mode (80x25 sucks so much that every Linux distribution should
	automagically default to 80x50, which is the ultimate text mode).
</dl>
<dt><i><b>}</b></i>
<dd>The character '}' ends an image definition.
<p>
<dt><i><b>bootsect "</b>DOS<b>" {</b></i>
<dd>Start defining a DOS bootsector. String in quotes is the name for
the image in the bootup menu.
<dl>
	<dt><i><b>image=</b>/dev/hda1</i>
	<dd>This tells chos the bootsector to boot. In our example /dev/hda1, 'C:' under DOS.
</dl>
<dt><i><b>}</b></i>
</dl>
<p>	
Now you should be able to create yourself a simple Choose-OS configuration without
any extra coolness.
</html>