Adding debian version 4.03+dfsg-8.
[syslinux-debian/hramrach.git] / doc / syslinux.txt
blob5b27a6eb908890b45392c0eeb31d47ce7885d6bd
1                          The Syslinux Project
3                    A suite of bootloaders for Linux
5          Copyright 1994-2010 H. Peter Anvin and contributors
7 This program is provided under the terms of the GNU General Public
8 License, version 2 or, at your option, any later version.  There is no
9 warranty, neither expressed nor implied, to the function of this
10 program.  Please see the included file COPYING for details.
12 ----------------------------------------------------------------------
14       Syslinux now has a home page at http://syslinux.zytor.com/
16 ----------------------------------------------------------------------
18 The Syslinux suite contains the following boot loaders
19 ("derivatives"), for their respective boot media:
21         SYSLINUX - MS-DOS/Windows FAT filesystem
22         PXELINUX - PXE network booting
23         ISOLINUX - ISO9660 CD-ROM
24         EXTLINUX - Linux ext2/ext3 filesystem
26 For historical reasons, some of the sections in this document applies
27 to the FAT loader (SYSLINUX) only; see pxelinux.txt, isolinux.txt and
28 extlinux.txt for what differs in these versions.  The all-caps term
29 "SYSLINUX" generally refers to the FAT loader, whereas "Syslinux"
30 refers to the project as a whole.
32 Help with cleaning up the docs would be greatly appreciated.
35    ++++ Options ++++
37 These are the options common to all versions of Syslinux:
39         -s      Safe, slow, stupid; uses simpler code that boots better
40         -f      Force installing
41         -r      Raid mode.  If boot fails, tell the BIOS to boot the next
42                 device in the boot sequence (usually the next hard disk)
43                 instead of stopping with an error message.
44                 This is useful for RAID-1 booting.
46 These are only in the Windows version:
48         -m      Mbr; install a bootable MBR sector to the beginning of the
49                 drive.
50         -a      Active; marks the partition used active (=bootable)
53    ++++ CREATING A BOOTABLE LINUX FLOPPY +++
55 In order to create a bootable Linux floppy using SYSLINUX, prepare a
56 normal MS-DOS formatted floppy.  Copy one or more Linux kernel files to
57 it, then execute the DOS command:
59         syslinux [-sfrma][-d directory] a: [bootsecfile]
61 (or whichever drive letter is appropriate; the [] meaning optional.)
63 Use "syslinux.com" (in the dos subdirectory of the distribution) for
64 plain DOS (MS-DOS, DR-DOS, PC-DOS, FreeDOS...) or Win9x/ME.
66 Use "syslinux.exe" (in the win32 subdirectory of the distribution) for
67 WinNT/2000/XP.
69 Under Linux, execute the command:
71         syslinux [-sfr][-d directory][-o offset] /dev/fd0
73 (or, again, whichever device is the correct one.)
75 This will alter the boot sector on the disk and copy a file named
76 LDLINUX.SYS into its root directory (or a subdirectory, if the -d
77 option is specified.)
79 The -s option, if given, will install a "safe, slow and stupid"
80 version of SYSLINUX.  This version may work on some very buggy BIOSes
81 on which SYSLINUX would otherwise fail.  If you find a machine on
82 which the -s option is required to make it boot reliably, please send
83 as much info about your machine as you can, and include the failure
84 mode.
86 The -o option is used with a disk image file and specifies the byte
87 offset of the filesystem image in the file.
89 For the DOS and Windows installers, the -m and -a options can be used
90 on hard drives to write a Master Boot Record (MBR), and to mark the
91 specific partition active.
93 If the Shift or Alt keys are held down during boot, or the Caps or Scroll
94 locks are set, Syslinux will display a LILO-style "boot:" prompt.  The
95 user can then type a kernel file name followed by any kernel parameters.
96 The Syslinux loader does not need to know about the kernel file in
97 advance; all that is required is that it is a file located in the root
98 directory on the disk.
100 There are two versions of the Linux installer; one in the "mtools"
101 directory which requires no special privilege (other than write
102 permission to the device where you are installing) but requires the
103 mtools program suite to be available, and one in the "unix" directory
104 which requires root privilege.
107    ++++ CONFIGURATION FILE ++++
109 All options here apply to PXELINUX, ISOLINUX and EXTLINUX as well as
110 SYSLINUX unless otherwise noted.  See the respective .txt files.
112 All the configurable defaults in SYSLINUX can be changed by putting a
113 file called "syslinux.cfg" in the root directory of the boot disk.
115 Starting with version 3.35, the configuration file can also be in
116 either the /boot/syslinux or /syslinux directories (searched in that
117 order.)  If that is the case, then all filenames are assumed to be
118 relative to that same directory, unless preceded with a slash or
119 backslash.
121 The configuration file is a text file in either UNIX or DOS format,
122 containing one or more of the following items, each on its own line with
123 optional leading whitespace.  Case is insensitive for keywords; upper
124 case is used here to indicate that a word should be typed verbatim.
126 #comment
127         A comment line.
129 INCLUDE filename
130         Inserts the contents of another file at this point in the
131         configuration file. Files can currently be nested up to 16
132         levels deep, but it is not guaranteed that more than 8 levels
133         will be supported in the future.
135 DEFAULT kernel options...
136         Sets the default command line.  If Syslinux boots automatically,
137         it will act just as if the entries after DEFAULT had been typed
138         in at the "boot:" prompt.
140         If no configuration file is present, or no DEFAULT entry is
141         present in the config file, an error message is displayed and
142         the boot: prompt is shown.
144 UI module options...
145         Selects a specific user interface module (typically menu.c32
146         or vesamenu.c32).  The command-line interface treats this as a
147         directive that overrides the DEFAULT and PROMPT directives.
149 APPEND options...
150         Add one or more options to the kernel command line.  These are
151         added both for automatic and manual boots.  The options are
152         added at the very beginning of the kernel command line,
153         usually permitting explicitly entered kernel options to override
154         them.  This is the equivalent of the LILO "append" option.
156 IPAPPEND flag_val                       [PXELINUX only]
157         The IPAPPEND option is available only on PXELINUX.  The
158         flag_val is an OR of the following options:
160         1: indicates that an option of the following format
161         should be generated and added to the kernel command line:
163                 ip=<client-ip>:<boot-server-ip>:<gw-ip>:<netmask>
165         ... based on the input from the DHCP/BOOTP or PXE boot server.
167         NOTE: The use of this option is no substitute for running a
168         DHCP client in the booted system.  Without regular renewals,
169         the lease acquired by the PXE BIOS will expire, making the
170         IP address available for reuse by the DHCP server.
172         2: indicates that an option of the following format
173         should be generated and added to the kernel command line:
175                 BOOTIF=<hardware-address-of-boot-interface>
177         ... in dash-separated hexadecimal with leading hardware type
178         (same as for the configuration file; see pxelinux.txt.)
180         This allows an initrd program to determine from which
181         interface the system booted.
183         4: indicates that an option of the following format
184         should be generated and added to the kernel command line:
186                 SYSUUID=<system uuid>
188         ... in lower case hexadecimal in the format normally used for
189         UUIDs (same as for the configuration file; see pxelinux.txt.)
191 LABEL label
192     KERNEL image
193     APPEND options...
194     IPAPPEND flag_val                   [PXELINUX only]
195         Indicates that if "label" is entered as the kernel to boot,
196         Syslinux should instead boot "image", and the specified APPEND
197         and IPAPPEND options should be used instead of the ones
198         specified in the global section of the file (before the first
199         LABEL command.)  The default for "image" is the same as
200         "label", and if no APPEND is given the default is to use the
201         global entry (if any).
203         Starting with version 3.62, the number of LABEL statements is
204         virtually unlimited.
206         Note that LILO uses the syntax:
207         image = mykernel
208           label = mylabel
209           append = "myoptions"
211         ... whereas Syslinux uses the syntax:
212         label mylabel
213           kernel mykernel
214           append myoptions
216         Note: The "kernel" doesn't have to be a Linux kernel; it can
217               be a boot sector or a COMBOOT file (see below.)
219         Since version 3.32 label names are no longer mangled into DOS
220         format (for SYSLINUX.)
222     The following commands are available after a LABEL statement:
224     LINUX image                 - Linux kernel image (default)
225     BOOT image                  - Bootstrap program (.bs, .bin)
226     BSS image                   - BSS image (.bss)
227     PXE image                   - PXE Network Bootstrap Program (.0)
228     FDIMAGE image               - Floppy disk image (.img)
229     COMBOOT image               - COMBOOT program (.com, .cbt)
230     COM32 image                 - COM32 program (.c32)
231     CONFIG image                - New configuration file
232         Using one of these keywords instead of KERNEL forces the
233         filetype, regardless of the filename.
235         CONFIG means restart the boot loader using a different
236         configuration file.
238     APPEND -
239         Append nothing.  APPEND with a single hyphen as argument in a
240         LABEL section can be used to override a global APPEND.
242     LOCALBOOT type                      [ISOLINUX, PXELINUX]
243         On PXELINUX, specifying "LOCALBOOT 0" instead of a "KERNEL"
244         option means invoking this particular label will cause a local
245         disk boot instead of booting a kernel.
247         The argument 0 means perform a normal boot.  The argument 4
248         will perform a local boot with the Universal Network Driver
249         Interface (UNDI) driver still resident in memory.  Finally,
250         the argument 5 will perform a local boot with the entire PXE
251         stack, including the UNDI driver, still resident in memory.
252         All other values are undefined.  If you don't know what the
253         UNDI or PXE stacks are, don't worry -- you don't want them,
254         just specify 0.
256         On ISOLINUX, the "type" specifies the local drive number to
257         boot from; 0x00 is the primary floppy drive and 0x80 is the
258         primary hard drive.  The special value -1 causes ISOLINUX to
259         report failure to the BIOS, which, on recent BIOSes, should
260         mean that the next boot device in the boot sequence should be
261         activated.
263     INITRD initrd_file
264         Starting with version 3.71, an initrd can be specified in a
265         separate statement (INITRD) instead of as part of the APPEND
266         statement; this functionally appends "initrd=initrd_file" to
267         the kernel command line.
269         It supports multiple filenames separated by commas.
270         This is mostly useful for initramfs, which can be composed of
271         multiple separate cpio or cpio.gz archives.
272         Note: all files except the last one are zero-padded to a
273         4K page boundary.  This should not affect initramfs.
275 IMPLICIT flag_val
276         If flag_val is 0, do not load a kernel image unless it has been
277         explicitly named in a LABEL statement.  The default is 1.
279 ALLOWOPTIONS flag_val
280         If flag_val is 0, the user is not allowed to specify any
281         arguments on the kernel command line.  The only options
282         recognized are those specified in an APPEND statement.  The
283         default is 1.
285 TIMEOUT timeout
286         Indicates how long to wait at the boot: prompt until booting
287         automatically, in units of 1/10 s.  The timeout is cancelled as
288         soon as the user types anything on the keyboard, the assumption
289         being that the user will complete the command line already
290         begun.  A timeout of zero will disable the timeout completely,
291         this is also the default.
293 TOTALTIMEOUT timeout
294         Indicates how long to wait until booting automatically, in
295         units of 1/10 s.  This timeout is *not* cancelled by user
296         input, and can thus be used to deal with serial port glitches
297         or "the user walked away" type situations.  A timeout of zero
298         will disable the timeout completely, this is also the default.
300         Both TIMEOUT and TOTALTIMEOUT can be used together, for
301         example:
303                 # Wait 5 seconds unless the user types something, but
304                 # always boot after 15 minutes.
305                 TIMEOUT 50
306                 TOTALTIMEOUT 9000
308 ONTIMEOUT kernel options...
309         Sets the command line invoked on a timeout.  Normally this is
310         the same thing as invoked by "DEFAULT".  If this is specified,
311         then "DEFAULT" is used only if the user presses <Enter> to
312         boot.
314 ONERROR kernel options...
315         If a kernel image is not found (either due to it not existing,
316         or because IMPLICIT is set), run the specified command.  The
317         faulty command line is appended to the specified options, so
318         if the ONERROR directive reads as:
320                 ONERROR xyzzy plugh
322         ... and the command line as entered by the user is:
324                 foo bar baz
326         ... Syslinux will execute the following as if entered by the
327         user:
329                 xyzzy plugh foo bar baz
331 SERIAL port [[baudrate] flowcontrol]
332         Enables a serial port to act as the console.  "port" is a
333         number (0 = /dev/ttyS0 = COM1, etc.) or an I/O port address
334         (e.g. 0x3F8); if "baudrate" is omitted, the baud rate defaults
335         to 9600 bps.  The serial parameters are hardcoded to be 8
336         bits, no parity, 1 stop bit.
338         "flowcontrol" is a combination of the following bits:
339         0x001 - Assert DTR
340         0x002 - Assert RTS
341         0x008 - Enable interrupts
342         0x010 - Wait for CTS assertion
343         0x020 - Wait for DSR assertion
344         0x040 - Wait for RI assertion
345         0x080 - Wait for DCD assertion
346         0x100 - Ignore input unless CTS asserted
347         0x200 - Ignore input unless DSR asserted
348         0x400 - Ignore input unless RI asserted
349         0x800 - Ignore input unless DCD asserted
351         All other bits are reserved.
353         Typical values are:
355             0 - No flow control (default)
356         0x303 - Null modem cable detect
357         0x013 - RTS/CTS flow control
358         0x813 - RTS/CTS flow control, modem input
359         0x023 - DTR/DSR flow control
360         0x083 - DTR/DCD flow control
362         For the SERIAL directive to be guaranteed to work properly, it
363         should be the first directive in the configuration file.
365         NOTE: "port" values from 0 to 3 means the first four serial
366         ports detected by the BIOS.  They may or may not correspond to
367         the legacy port values 0x3F8, 0x2F8, 0x3E8, 0x2E8.
369         Enabling interrupts (setting the 0x008 bit) may give better
370         responsiveness without setting the NOHALT option, but could
371         potentially cause problems with buggy BIOSes.
373 NOHALT flag_val
374         If flag_val is 1, don't halt the processor while idle.
375         Halting the processor while idle significantly reduces the
376         power consumption, but can cause poor responsiveness to the
377         serial console, especially when using scripts to drive the
378         serial console, as opposed to human interaction.
380 CONSOLE flag_val
381         If flag_val is 0, disable output to the normal video console.
382         If flag_val is 1, enable output to the video console (this is
383         the default.)
385         Some BIOSes try to forward this to the serial console and
386         sometimes make a total mess thereof, so this option lets you
387         disable the video console on these systems.
389 FONT filename
390         Load a font in .psf format before displaying any output
391         (except the copyright line, which is output as ldlinux.sys
392         itself is loaded.)  Syslinux only loads the font onto the
393         video card; if the .psf file contains a Unicode table it is
394         ignored.  This only works on EGA and VGA cards; hopefully it
395         should do nothing on others.
397 KBDMAP keymap
398         Install a simple keyboard map.  The keyboard remapper used is
399         *very* simplistic (it simply remaps the keycodes received from
400         the BIOS, which means that only the key combinations relevant
401         in the default layout -- usually U.S. English -- can be
402         mapped) but should at least help people with AZERTY keyboard
403         layout and the locations of = and , (two special characters
404         used heavily on the Linux kernel command line.)
406         The included program keytab-lilo.pl from the LILO distribution
407         can be used to create such keymaps.  The file keytab-lilo.txt
408         contains the documentation for this program.
410 DISPLAY filename
411         Displays the indicated file on the screen at boot time (before
412         the boot: prompt, if displayed).  Please see the section below
413         on DISPLAY files.
415         NOTE: If the file is missing, this option is simply ignored.
417 SAY message
418         Prints the message on the screen.
420 PROMPT flag_val
421         If flag_val is 0, display the boot: prompt only if the Shift or Alt
422         key is pressed, or Caps Lock or Scroll lock is set (this is the
423         default).  If flag_val is 1, always display the boot: prompt.
425 NOESCAPE flag_val
426         If flag_val is set to 1, ignore the Shift/Alt/Caps Lock/Scroll
427         Lock escapes.  Use this (together with PROMPT 0) to force the
428         default boot alternative.
430 NOCOMPLETE flag_val
431         If flag_val is set to 1, the Tab key does not display labels
432         at the boot: prompt.
434 F1 filename
435 F2 filename
436    ...etc...
437 F9 filename
438 F10 filename
439 F11 filename
440 F12 filename
441         Displays the indicated file on the screen when a function key is
442         pressed at the boot: prompt.  This can be used to implement
443         pre-boot online help (presumably for the kernel command line
444         options.)  Please see the section below on DISPLAY files.
446         When using the serial console, press <Ctrl-F><digit> to get to
447         the help screens, e.g. <Ctrl-F><2> to get to the F2 screen.
448         For F10-F12, hit <Ctrl-F><A>, <Ctrl-F>B, <Ctrl-F>C.  For
449         compatibility with earlier versions, F10 can also be entered as
450         <Ctrl-F>0.
452 Blank lines are ignored.
454 Note that the configuration file is not completely decoded.  Syntax
455 different from the one described above may still work correctly in this
456 version of Syslinux, but may break in a future one.
459    ++++ DISPLAY FILE FORMAT ++++
461 DISPLAY and function-key help files are text files in either DOS or UNIX
462 format (with or without <CR>).  In addition, the following special codes
463 are interpreted:
465 <FF>                                    <FF> = <Ctrl-L> = ASCII 12
466         Clear the screen, home the cursor.  Note that the screen is
467         filled with the current display color.
469 <SI><bg><fg>                            <SI> = <Ctrl-O> = ASCII 15
470         Set the display colors to the specified background and
471         foreground colors, where <bg> and <fg> are hex digits,
472         corresponding to the standard PC display attributes:
474         0 = black               8 = dark grey
475         1 = dark blue           9 = bright blue
476         2 = dark green          a = bright green
477         3 = dark cyan           b = bright cyan
478         4 = dark red            c = bright red
479         5 = dark purple         d = bright purple
480         6 = brown               e = yellow
481         7 = light grey          f = white
483         Picking a bright color (8-f) for the background results in the
484         corresponding dark color (0-7), with the foreground flashing.
486         Colors are not visible over the serial console.
488 <CAN>filename<newline>                  <CAN> = <Ctrl-X> = ASCII 24
489         If a VGA display is present, enter graphics mode and display
490         the graphic included in the specified file.  The file format
491         is an ad hoc format called LSS16; the included Perl program
492         "ppmtolss16" can be used to produce these images.  This Perl
493         program also includes the file format specification.
495         The image is displayed in 640x480 16-color mode.  Once in
496         graphics mode, the display attributes (set by <SI> code
497         sequences) work slightly differently: the background color is
498         ignored, and the foreground colors are the 16 colors specified
499         in the image file.  For that reason, ppmtolss16 allows you to
500         specify that certain colors should be assigned to specific
501         color indicies.
503         Color indicies 0 and 7, in particular, should be chosen with
504         care: 0 is the background color, and 7 is the color used for
505         the text printed by Syslinux itself.
507 <EM>                                    <EM> = <Ctrl-Y> = ASCII 25
508         If we are currently in graphics mode, return to text mode.
510 <DLE>..<ETB>                            <Ctrl-P>..<Ctrl-W> = ASCII 16-23
511         These codes can be used to select which modes to print a
512         certain part of the message file in.  Each of these control
513         characters select a specific set of modes (text screen,
514         graphics screen, serial port) for which the output is actually
515         displayed:
517         Character                       Text    Graph   Serial
518         ------------------------------------------------------
519         <DLE> = <Ctrl-P> = ASCII 16     No      No      No
520         <DC1> = <Ctrl-Q> = ASCII 17     Yes     No      No
521         <DC2> = <Ctrl-R> = ASCII 18     No      Yes     No
522         <DC3> = <Ctrl-S> = ASCII 19     Yes     Yes     No
523         <DC4> = <Ctrl-T> = ASCII 20     No      No      Yes
524         <NAK> = <Ctrl-U> = ASCII 21     Yes     No      Yes
525         <SYN> = <Ctrl-V> = ASCII 22     No      Yes     Yes
526         <ETB> = <Ctrl-W> = ASCII 23     Yes     Yes     Yes
528         For example:
530         <DC1>Text mode<DC2>Graphics mode<DC4>Serial port<ETB>
532         ... will actually print out which mode the console is in!
534 <SUB>                                   <SUB> = <Ctrl-Z> = ASCII 26
535         End of file (DOS convention).
537 <BEL>                                   <BEL> = <Ctrl-G> = ASCII 7
538         Beep the speaker.
541    ++++ COMMAND LINE KEYSTROKES ++++
543 The command line prompt supports the following keystrokes:
545 <Enter>         boot specified command line
546 <BackSpace>     erase one character
547 <Ctrl-U>        erase the whole line
548 <Ctrl-V>        display the current Syslinux version
549 <Ctrl-W>        erase one word
550 <Ctrl-X>        force text mode
551 <Tab>           list matching labels
552 <F1>..<F12>     help screens (if configured)
553 <Ctrl-F><digit> equivalent to F1..F10
554 <Ctrl-C>        interrupt boot in progress
555 <Esc>           interrupt boot in progress
556 <Ctrl-N>        display network information (PXELINUX only)
559    ++++ COMBOOT IMAGES AND OTHER OPERATING SYSTEMS ++++
561 This version of Syslinux supports chain loading of other operating
562 systems (such as MS-DOS and its derivatives, including Windows 95/98),
563 as well as COMBOOT-style standalone executables (a subset of DOS .COM
564 files; see separate section below.)
566 Chain loading requires the boot sector of the foreign operating system
567 to be stored in a file in the root directory of the filesystem.
568 Because neither Linux kernels, boot sector images, nor COMBOOT files
569 have reliable magic numbers, Syslinux will look at the file extension.
570 The following extensions are recognized (case insensitive):
572   none or other Linux kernel image
573   .0            PXE bootstrap program (NBP) [PXELINUX only]
574   .bin          "CD boot sector" [ISOLINUX only]
575   .bs           Boot sector [SYSLINUX only]
576   .bss          Boot sector, DOS superblock will be patched in [SYSLINUX only]
577   .c32          COM32 image (32-bit COMBOOT)
578   .cbt          COMBOOT image (not runnable from DOS)
579   .com          COMBOOT image (runnable from DOS)
580   .img          Disk image [ISOLINUX only]
582 For filenames given on the command line, Syslinux will search for the
583 file by adding extensions in the order listed above if the plain
584 filename is not found.  Filenames in KERNEL statements must be fully
585 qualified.
587 If this is specified with one of the keywords LINUX, BOOT, BSS,
588 FDIMAGE, COMBOOT, COM32, or CONFIG instead of KERNEL, the filetype is
589 considered to be the one specified regardless of the filename.
592       ++++ BOOTING DOS (OR OTHER SIMILAR OPERATING SYSTEMS) ++++
594 This section applies to SYSLINUX only, not to PXELINUX or ISOLINUX.
595 See isolinux.txt for an equivalent procedure for ISOLINUX.
597 This is the recommended procedure for creating a SYSLINUX disk that
598 can boot either DOS or Linux.  This example assumes the drive is A: in
599 DOS and /dev/fd0 in Linux; for other drives, substitute the
600 appropriate drive designator.
602    ---- Linux procedure ----
604 1. Make a DOS bootable disk.  This can be done either by specifying
605    the /s option when formatting the disk in DOS, or by running the
606    DOS command SYS (this can be done under DOSEMU if DOSEMU has
607    direct device access to the relevant drive):
609         format a: /s
610    or
611         sys a:
613 2. Boot Linux.  Copy the DOS boot sector from the disk into a file:
615         dd if=/dev/fd0 of=dos.bss bs=512 count=1
617 3. Run SYSLINUX on the disk:
619         syslinux /dev/fd0
621 4. Mount the disk and copy the DOS boot sector file to it.  The file
622    *must* have extension .bss:
624         mount -t msdos /dev/fd0 /mnt
625         cp dos.bss /mnt
627 5. Copy the Linux kernel image(s), initrd(s), etc to the disk, and
628    create/edit syslinux.cfg and help files if desired:
630         cp vmlinux /mnt
631         cp initrd.gz /mnt
633 6. Unmount the disk (if applicable.)
635         umount /mnt
637    ---- DOS/Windows procedure ----
639 To make this installation in DOS only, you need the utility copybs.com
640 (included with Syslinux) as well as the syslinux.com installer.  If
641 you are on an WinNT-based system (WinNT, Win2k, WinXP or later), use
642 syslinux.exe instead.
644 1. Make a DOS bootable disk.  This can be done either by specifying
645    the /s option when formatting the disk in DOS, or by running the
646    DOS command SYS:
648         format a: /s
649    or
650         sys a:
652 2. Copy the DOS boot sector from the disk into a file.  The file
653    *must* have extension .bss:
655         copybs a: a:dos.bss
657 3. Run SYSLINUX on the disk:
659         syslinux a:
661 4. Copy the Linux kernel image(s), initrd(s), etc to the disk, and
662    create/edit syslinux.cfg and help files if desired:
664         copy vmlinux a:
665         copy initrd.gz a:
668    ++++ COMBOOT EXECUTABLES ++++
670 Syslinux supports simple standalone programs, using a file format
671 similar to DOS ".com" files.  A 32-bit version, called COM32, is also
672 provided.  A simple API provides access to a limited set of filesystem
673 and console functions.
675 See the file comboot.txt for more information on COMBOOT and COM32
676 programs.
679    ++++ NOVICE PROTECTION ++++
681 Syslinux will attempt to detect booting on a machine with too little
682 memory, which means the Linux boot sequence cannot complete.  If so, a
683 message is displayed and the boot sequence aborted.  Holding down the
684 Ctrl key while booting disables this feature.
686 Any file that SYSLINUX uses can be marked hidden, system or readonly
687 if so is convenient; SYSLINUX ignores all file attributes.  The
688 SYSLINUX installed automatically sets the readonly/hidden/system
689 attributes on LDLINUX.SYS.
692    ++++ NOTES ON BOOTABLE CD-ROMS ++++
694 SYSLINUX can be used to create bootdisk images for El
695 Torito-compatible bootable CD-ROMs.  However, it appears that many
696 BIOSes are very buggy when it comes to booting CD-ROMs.  Some users
697 have reported that the following steps are helpful in making a CD-ROM
698 that is bootable on the largest possible number of machines:
700         a) Use the -s (safe, slow and stupid) option to SYSLINUX;
701         b) Put the boot image as close to the beginning of the
702            ISO 9660 filesystem as possible.
704 A CD-ROM is so much faster than a floppy that the -s option shouldn't
705 matter from a speed perspective.
707 Of course, you probably want to use ISOLINUX instead.  See isolinux.txt.
710    ++++ BOOTING FROM A FAT FILESYSTEM PARTITION ON A HARD DISK ++++
712 SYSLINUX can boot from a FAT filesystem partition on a hard disk
713 (including FAT32).  The installation procedure is identical to the
714 procedure for installing it on a floppy, and should work under either
715 DOS or Linux.  To boot from a partition, SYSLINUX needs to be launched
716 from a Master Boot Record or another boot loader, just like DOS itself
717 would.
719 Under DOS, you can install a standard simple MBR on the primary hard
720 disk by running the command:
722         FDISK /MBR
724 Then use the FDISK command to mark the appropriate partition active.
726 A simple MBR, roughly on par with the one installed by DOS (but
727 unencumbered), is included in the SYSLINUX distribution.  To install
728 it under Linux, simply type:
730         cat mbr.bin > /dev/XXX
732 ... where /dev/XXX is the device you wish to install it on.
734 Under DOS or Win32, you can install the SYSLINUX MBR with the -m
735 option to the SYSLINUX installer, and use the -a option to mark the
736 current partition active:
738         syslinux -ma c:
740 Note that this will also install SYSLINUX on the specified partition.
743    ++++ HARDWARE INFORMATION +++
745 I have started to maintain a web page of hardware with known
746 problems.  There are, unfortunately, lots of broken hardware out
747 there; especially early PXE stacks (for PXELINUX) have lots of
748 problems.
750 A list of problems, and workarounds (if known), is maintained at:
752         http://syslinux.zytor.com/hardware.php
755    ++++ BOOT LOADER IDS USED ++++
757 The Linux boot protocol supports a "boot loader ID", a single byte
758 where the upper nybble specifies a boot loader family (3 = Syslinux)
759 and the lower nybble is version or, in the case of Syslinux, media:
761         0x31 (49) = SYSLINUX
762         0x32 (50) = PXELINUX
763         0x33 (51) = ISOLINUX
764         0x34 (52) = EXTLINUX
766 In recent versions of Linux, this ID is available as
767 /proc/sys/kernel/bootloader_type.
770    ++++ BUG REPORTS ++++
772 I would appreciate hearing of any problems you have with Syslinux.  I
773 would also like to hear from you if you have successfully used Syslinux,
774 *especially* if you are using it for a distribution.
776 If you are reporting problems, please include all possible information
777 about your system and your BIOS; the vast majority of all problems
778 reported turn out to be BIOS or hardware bugs, and I need as much
779 information as possible in order to diagnose the problems.
781 There is a mailing list for discussion among Syslinux users and for
782 announcements of new and test versions.  To join, or to browse the
783 archive, go to:
785    http://www.zytor.com/mailman/listinfo/syslinux
787 Please DO NOT send HTML messages or attachments to the mailing list
788 (including multipart/alternative or similar.)  All such messages will
789 be bounced.