e246c7c08853d9cae6de54d2f7b2876d35361c6a
[grml2usb.git] / grml2usb.8.txt
1 grml2usb(8)
2 ==========
3
4 Name
5 ----
6 grml2usb - install grml ISO(s) on usb device for booting
7
8 Synopsis
9 --------
10 grml2usb [ options ] <ISO[s]> <device>
11
12 *******************************************************************************
13 Important! The grml team does not take responsibility for loss of any data!
14 *******************************************************************************
15
16 [[introduction]]
17 Introduction
18 ------------
19
20 grml2usb installs grml on a given partition of your usb device and makes it
21 bootable. It provides multi-iso support, meaning you can specify several grml
22 ISOs on the command line at once and select the grml flavour you would like to
23 boot on the bootprompt then. Note that the *first* ISO specified on the grml2usb
24 command line will become the default one (that's the one that will boot when
25 just pressing enter on the bootprompt or wait until the boot timeout matches).
26
27 [IMPORTANT]
28 By default a compatible master boot record (MBR) is installed on the device
29 (being for example /dev/sdX when executing 'grml2usb grml.iso /dev/sdX1') and
30 syslinux is being used as default bootloader. Avoid installation of the default
31 MBR using the '--skip-mbr' option or if you encounter any problems with the
32 default MBR consider using '--syslinux-mbr' instead.
33
34 [NOTE]
35 Whereas grml2usb is the script to install recent grml ISOs (>=2009.10) the
36 script grml2usb-compat supports older grml releases (<2009.10) as well.
37
38 [[options]]
39 Options
40 -------
41
42 The ISO[s] should be the path to one or multiple grml-ISOs and/or the path to
43 the currently running live-system (being /live/image).
44
45 The device either might be a device name like /dev/sdX1 or a directory. When
46 specifying a device name the device is mounted automatically. When specifying a
47 directory grml2usb is assuming that you did set up a bootloader on your own (or
48 don't need one) and a bootloader won't be installed automatically.
49
50 The following options are supported:
51
52   *\--bootoptions=...*::
53
54 Use specified bootoptions as default. To use flavour name as a argument for a
55 boot parameter use %flavour which will be expanded to the flavour name. To add
56 multiple bootoptions you can specify the option multiple time.
57
58   *\--bootloader-only*::
59
60 Do *not* copy files but instead just install a bootloader.  Note that the boot
61 addons are copied to /boot/addons at this stage as well.  If you want to skip
62 copying the boot addons consider using the --skip-addons option.
63
64   *\--copy-only*::
65
66 Copy files only but do *not* install a bootloader.
67
68   *\--dry-run*::
69
70 Avoid executing commands, instead show what would be executed.
71 Warning: please notice that the ISO has to be mounted anyway, otherwise
72 identifying the grml flavour would not be possible.
73
74   *\--fat16*::
75
76 Format specified partition with FAT16.
77 **Important:** this will destroy any existing data on the specified partition!
78
79   *\--force*::
80
81 Force any (possible dangerous) actions requiring manual interaction (like --fat16).
82
83   *\--grub*::
84
85 Install grub bootloader instead of (default) syslinux.
86
87   *\--grub-mbr*::
88
89 Install grub into MBR (Master Boot Record) instead of PBR (Partition Boot
90 Record). Check out <<mbr-vs-pbr,the 'mbr-vs-pbr' section in the FAQ of this
91 document>> for further details.
92
93   *\--help*::
94
95 Display usage information and exit.
96
97 //////////////////////////////////////////////////////////////////////////
98   *\--initrd=...*::
99
100 Install specified initrd instead of the default. You might want to specify
101 option *--kernel* as well. (Be aware when using multiboot setup.)
102 [Notice: not implemented yet.]
103 //////////////////////////////////////////////////////////////////////////
104
105 //////////////////////////////////////////////////////////////////////////
106   *\--kernel=...*::
107
108 Install specified kernel instead of the default. You might want to specify
109 option *--initrd* as well. (Be aware when using multiboot setup.)
110 [Notice: not implemented yet.]
111 //////////////////////////////////////////////////////////////////////////
112
113   *\--mbr-menu*::
114
115 Install master boot record (MBR) with integrated boot menu: interactively choose
116 the partition to boot from, with a timeout to load the default partition, or
117 boot from floppy. When NOT using the --mbr-menu option a MBR with LBA and large
118 disc support but without an integrated boot menu is installed (so it's not
119 visible at all but instead directly jumps to the bootloader - being grub or
120 syslinux). Note: This options is available only when using the default MBR and
121 won't have any effect if you're using the '--syslinux-mbr' option.
122
123   *\--quiet*::
124
125 Do not output anything but just errors on console.
126
127   *\--skip-addons*::
128
129 Do not install /boot/addons/ files (like dos, grub, memdisk,...).
130
131   *\--remove-bootoption=...*::
132
133 Remove specified bootoption (could be a regex) from existing boot options. Use
134 multiple entries for removing different bootoptions at once. (Note: this option
135 is not support in grml2usb-compat.)
136
137   *\--skip-grub-config*::
138
139 Skip generation of grub configuration files. By default the configuration
140 files for syslinux *and* grub will be written so you've a working configuration
141 file no matter whether you're using grub or syslinux as bootloader.
142
143   *\--skip-mbr*::
144
145 Do not touch/install the master boot record (MBR).
146
147   *\--skip-syslinux-config*::
148
149 Skip generation of syslinux configuration files. By default the configuration
150 files for syslinux *and* grub will be written so you've a working configuration
151 file no matter whether you're using grub or syslinux as bootloader.
152
153   *\--syslinux*::
154
155 This option is deprecated and is being left only for backwards compatibility
156 reasons. Syslinux is the default bootloader of grml2usb and therefore the
157 '--syslinux' option doesn't have any effects. If you do not want to use syslinux
158 as bootloader consider using the '--grub' option.
159
160   *\--syslinux-mbr*::
161
162 Install syslinux' master boot record (MBR, which is booting from the partition
163 with the "active" flag set) instead of the default one.  If you encounter any
164 problems with the default MBR you can try using the syslinux MBR instead. If
165 that works for you please <<author,let us know>> so we can adjust our default
166 MBR accordingly.
167
168 //////////////////////////////////////////////////////////////////////////
169   *\--squashfs=*::
170
171 Install specified squashfs file instead of the default.
172 [Notice: not implemented yet.]
173 //////////////////////////////////////////////////////////////////////////
174
175 //////////////////////////////////////////////////////////////////////////
176   *\--uninstall*::
177
178 Uninstall grml ISO files.
179 [Notice: not implemented yet.]
180 //////////////////////////////////////////////////////////////////////////
181
182   *-v*, *\--version*::
183
184 Return version and exit.
185
186   *\--verbose*::
187
188 Enable verbose mode.
189
190 Developers Corner
191 -----------------
192
193 [[directory-layout]]
194 Directory layout on usb device
195 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
196
197   boot/ ->
198     |-- addons/
199     |   |-- allinone.img     [grub - all in one image]
200     |   |-- bsd4grml/        [MirBSD]
201     |   |-- balder10.imz     [FreeDOS]
202     |   |-- memdisk          [chainloading helper]
203     |   |-- memtest          [memtest86+]
204     |-- release/
205     |   |-- grml/
206     |   |   |-- linux26      [Kernel]
207     |   |   |-- initrd.gz    [initramfs]
208     |   |-- grml64
209     |   |   |-- linux26      [Kernel]
210     |   |   |-- initrd.gz    [initramfs]
211     |   |-- grml-medium
212     |   |   |-- linux26      [...]
213     |   |   |-- initrd.gz
214     |   |-- grml64-medium
215     |   |   |-- linux26
216     |   |   |-- initrd.gz
217     |   |-- grml-small
218     |   |   |-- linux26
219     |   |   |-- initrd.gz
220     |   `-- grml64-small
221     |       |-- linux26
222     |       |-- initrd.gz
223     |-- grub/
224     |   |-- grml.png         [graphical bootsplash background image for grub2]
225     |   |-- grub.cfg         [configuration file for grub2]
226     |   |-- menu.lst         [configuration file for grub1]
227     |   |-- splash.xpm.gz    [splash screen for grub1]
228     `-- syslinux/
229         |-- grml.png         [graphical bootsplash background image for syslinux]
230         |-- syslinux.cfg     [main configuration file for syslinux]
231         `-- [....]           [several further config files for syslinux]
232
233   grml/
234     |-- grml2usb.txt         [not yet implemented]
235     |-- grml-cheatcodes.txt  [list of bootoptions for grml]
236     |-- grml-version.txt     [file containing information about grml-version]
237     |-- LICENSE.txt          [license information]
238     |-- md5sums              [md5sums of original ISO]
239     |-- README.txt           [informational text]
240     `-- web/                 [browser related files]
241         |-- index.html
242         |-- style.css
243         `-- images/
244             |-- button.png
245             |-- favicon.png
246             |-- linux.jpg
247             `-- logo.png
248
249   live/
250     |-- grml/
251     |   |-- filesystem.module    [module specifying which squashfs should be used for grml]
252     |   `-- grml.squashfs        [squashfs file for grml]
253     |-- grml-medium/
254     |   |-- filesystem.module    [module specifying which squashfs should be used for grml-medium]
255     |   `-- grml-medium.squashfs [squashfs file for grml-medium]
256     |-- grml-small/
257     |   |-- filesystem.module    [module specifying which squashfs should be used for grml-medium]
258     |   `-- grml-small.squashfs  [squashfs file for grml-small]
259     `-- ...
260
261 [[source]]
262 Grabbing the source
263 ~~~~~~~~~~~~~~~~~~~
264
265   % git clone git://git.grml.org/grml2usb.git
266
267 [[debugging]]
268 Developers Debugging Hints
269 ~~~~~~~~~~~~~~~~~~~~~~~~~~
270
271 To play with grml2usb you can avoid using a real device via a loopback file
272 setup, like:
273
274   # dd if=/dev/zero of=~/loopback bs=1M count=100 # adjust size to your needs
275   # losetup /dev/loop1 ~/loopback
276
277 Then create according partitions either running for example:
278
279   # echo -en "n\np\n1\n\n\nt\n6\na\n1\n w\n" | fdisk /dev/loop1
280
281 or:
282
283   # parted /dev/loop1 -s "mkpart primary fat16 0 -1s mkfs 1 fat16"
284
285 Finally create a filesystem and execute grml2usb as needed:
286
287   # mkfs.vfat /dev/loop1
288   # grml2usb --bootloader-only /grml/isos/grml-small_2009.10.iso /dev/loop1
289
290 [[performance-tracing]]
291 Performance tracing
292 ~~~~~~~~~~~~~~~~~~~
293
294   # blktrace -d /dev/sdX -o - | blkparse -i -
295   # grml2usb grml_2009.10.iso /dev/sdX1
296
297 [[troubleshooting]]
298 Troubleshooting and Pitfalls when booting
299 -----------------------------------------
300
301 Here is a list of common error messages from BIOS/bootloader when trying to boot
302 from USB.
303
304 ///////////////////////////////////////////////////////////
305 TODO: better list type for the error message / reason part?
306 See http://www.methods.co.nz/asciidoc/userguide.html
307 ///////////////////////////////////////////////////////////
308
309 [horizontal]
310 *Error message*:: ran out of input data. System halted
311
312 *Reason*:: Everything OK, except for the filesystem used on your usb device. So
313 instead of fat16 you are using for example fat32. Fix: use the appropriate
314 filesystem (fat16 for usb pens usually). The Bootsplash might be displayed, the
315 kernel loads but you very soon get the error message.
316
317 *Error message*:: Invalid operating system
318
319 *Reason*:: the partition layout is not ok. Very probably there's no primary
320   partition (/dev/sdX{1..4}) or none has the flag 'bootable' set.
321
322 *Error message*:: Boot error.
323
324 *Reason*:: Some BIOSses offer different modes for USB booting. The proper mode
325 to boot a USB stick is USB-HDD. If that doesn’t work or is not supported by your
326 system, you need to format your USB-Stick as USB-ZIP.  To do this, syslinux
327 contains an utility called mkdiskimage, which you can use to re-format your USB
328 stick in USB-ZIP format running 'mkdiskimage -4 /dev/sdX 1 64 32'. Please be
329 aware that this procedure will erase all data on your stick.  After executing
330 mkdiskimage just continue installing as usual (grml2usb ...  /dev/sdX4). Note
331 that this is not going to work for any device larger than 8 GB, since
332 mkdiskimage only supports 1024c 256h 63s. For a more detailed explanation, refer
333 to /usr/share/doc/syslinux-common/usbkey.txt.
334
335 *Error message*:: No operating system found.
336
337 *Reason*:: you forgot to set the boot-flag on the partition. Or there really isn't
338 any operating system at all. :)
339
340 *Error message*:: kernel-panic: unable to mount root-fs...
341
342 *Reason*:: Kernel boots but fails to find the root filesystem. The root=
343 argument in your kernel commandline is pointing to the wrong device. Adjust
344 root=..., consider using root=UUID=....
345
346 *Error message*::  Could not find kernel image: ...
347
348 *Reason*:: either a broken isolinux/syslinux version or a broken BIOS. Check out
349 whether the vendor provides a BIOS update or if using bootloader grub instead of
350 isolinux/syslinux fixes the problem.
351
352 [[faq]]
353 Frequently Asked Questions (FAQ)
354 --------------------------------
355
356 [[download]]
357 Where can I get grml2usb?
358 ~~~~~~~~~~~~~~~~~~~~~~~~~
359
360 grml2usb is available as Debian package via link:http://deb.grml.org/[the
361 grml-testing Debian repository].
362
363 If you do not want to (or can't) use the grml2usb Debian package you can either
364 use the grml2usb git tree running:
365
366   git clone git://git.grml.org/grml2usb.git
367   cd grml2usb
368   make -C mbr
369   sudo ./grml2usb ...
370
371 or download the provided
372 link:http://grml.org/grml2usb/grml2usb.tgz[http://grml.org/grml2usb/grml2usb.tgz]
373 (link:http://grml.org/grml2usb/grml2usb.tgz.md5.asc[gpg signed md5 hash]).
374 Download and extract the tarball and execute the provided script 'install.sh'.
375
376 [NOTE]
377 It is *NOT* enough to have just the grml2usb script itself without the according
378 files provided either via the Debian package, the git tree or the file
379 grml2usb.tgz.
380
381 [[grml2hd-vs-grml2usb]]
382 What's the difference between grml2hd and grml2usb?
383 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
384
385 grml2hd installs a running grml system to a harddisk. When rebooting the
386 harddisk installation can be modified and changes will find their way to the
387 harddisk immediately.  grml2usb copies just the compressed chroot filesystem
388 (being the squashfs file), some further informational files and a bootloader to
389 your device. This way you don't need as much space as with a harddisk
390 installation (just a USB device with >=ISO size) and when rebooting the system
391 your changes will be lost (unless you are using the persistency feature, see
392 link:http://wiki.grml.org/doku.php?id=persistency[http://wiki.grml.org/doku.php?id=persistency]).
393 Think of using a better CD version: booting is (usually) faster, you don't need
394 to burn a new CD when a new ISO version arrives (just install the new ISO using
395 grml2usb) and you can carry additional files on a writable medium with yourself.
396
397 [[dd]]
398 Why can't I just dd the ISO to a USB device?
399 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
400
401 Well, you can. :) Starting with grml 2009.10 the ISOs are dd-able straight out-of-the-box.
402
403 [IMPORTANT]
404 Note that ANY existing data on your USB device will be destroyed when
405 using the dd approach.
406
407 ///////////////////////////////////////////////////////////////////////////////////////////////////
408 Grab a recent grml ISO and use
409 link:http://syslinux.zytor.com/wiki/index.php/Doc/isolinux#HYBRID_CD-ROM.2FHARD_DISK_MODE[isohybrid
410 from the syslinux project]:
411
412   % isohybrid grml_2009.10.iso
413 ///////////////////////////////////////////////////////////////////////////////////////////////////
414
415 This allows you to dd the Grml ISO to your USB device (use for example
416 link:http://www.chrysocome.net/rawwrite[rawwrite] if you've just a Windows
417 system available) running:
418
419   % dd if=grml_2009.10.iso of=/dev/sdX
420
421 where /dev/sdX is your USB device. Of course this doesn't provide such a
422 flexible system like with grml2usb (no multi-ISO setup, no additional default
423 bootoptions,...) but it's a nice way to get a working USB boot setup if you
424 don't have grml2usb available.
425
426 [[grml2usb-vs-dd]]
427 What's the difference between grml2usb and just using dd?
428 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
429
430 grml2usb does not remove any data from your USB device and does not alter the
431 partition table at all. grml2usb provides multi-ISO support, support for adding
432 default bootoptions and selecting the bootloader (syslinux vs. grub) without
433 having to manually touch the ISO at all.
434
435 [[grml2iso]]
436 What's grml2iso?
437 ~~~~~~~~~~~~~~~~
438
439 grml2iso is a script which uses grml2usb to generate a multiboot ISO out of
440 several grml ISOs. See 'man grml2iso' for further details.
441
442 [[grml2usb-compat]]
443 grml2usb fails with "Fatal: file default.cfg could not be found."
444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
445
446 If you are trying to install an older grml ISO (older than grml 2009.10) with a
447 recent version of grml2usb then you might notice:
448
449   Fatal: file default.cfg could not be found.
450   Note:  this grml2usb version requires an ISO generated by grml-live >=0.9.24 ...
451          ... either use grml releases >=2009.10 or switch to an older grml2usb version.
452          Please visit http://grml.org/grml2usb/#grml2usb-compat for further information
453   Fatal: a critical error happend during execution (not a grml ISO?), giving up
454
455 Breaking the backward compatibility was necessary to avoid maintainability hell.
456 If you want to install older grml ISOs please use the grml2usb-compat script
457 which provides support for older releases.
458
459 [[menu-lst]]
460 Why is there a menu.lst and a grub.cfg inside /boot/grub/?
461 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
462
463 grml2usb supports grub version 1 (grub1) as well as grub version 2 (grub2).
464 Whereas grub1 uses menu.lst the new version grub2 needs grub.cfg.
465 Providing both files allows grml2usb to install grub on the target device
466 no matter which grub version is available on the host where grml2usb is
467 executed on.
468
469 [[stage1]]
470 grub-install fails with 'The file ../boot/grub/stage1 not read correctly"?!
471 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
472
473 Check whether the partition has the right partition type. For example do NOT use
474 FAT16 (partition type 6) when using a ext3 filesystem on the partition but
475 instead use the correct partition type ('83' - Linux) then.
476
477 [[grub-install-xfs_freeze]]
478 grub-install complains about /sbin/grub-install and/or xfs_freeze?!
479 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
480
481 The following message:
482
483   You shouldn't call /sbin/grub-install. Please call /usr/sbin/grub-install instead!
484   xfs_freeze: specified file ["/tmp/tmpqaBK6z/boot/grub"] is not on an XFS filesystem
485
486 This is "normal". grub-install sends those messages to stderr. To avoid hiding any
487 possible real error messages grml2usb doesn't ignore those messages.
488
489 [[device-map]]
490 grub-install complains about /boot/grub/device.map?!
491 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
492
493 The following message:
494
495   grub-probe: error: Cannot open `/boot/grub/device.map'
496
497 This is "normal" (at least with grub1). This isn't a problem, because the
498 device.map file will be generated on the target device anyway.
499
500 [[unary-operator]]
501 grub-install complains about a unary operator?!
502 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
503
504 The following message:
505
506   '/usr/sbin/grub-install: line 374: [: =: unary operator expected'
507
508 This is "normal". Just ignore it. (It usually doesn't appear
509 on the second invocation on the same device.)
510
511 [[unknown-filesystem]]
512 grub-install fails with grub-probe: error: unknown filesystem?!
513 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
514
515 The following message:
516
517   grub-probe: error: unknown filesystem
518   Auto-detection of a filesystem module failed.
519   Please specify the module with the option `--modules' explicitly.
520
521 usually means that the device partition table says something else than the
522 filesystem on the device. For example using FAT16 as filesystem type and
523 using FAT32 as filesystem on the partition will not work. Either set filesystem
524 type to FAT32 or format the partition using FAT16. It is essential that
525 device partition table and filesystem use the same filesystem type.
526
527 [[mbr-vs-pbr]]
528 grub-setup fails after Attempting to install GRUB to a partition instead of the MBR?!
529 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
530
531 The following message:
532
533   grub-setup: warn: Attempting to install GRUB to a partition instead of the MBR.  This is a BAD idea.
534   grub-setup: warn: Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and its use is discouraged.
535   grub-setup: error: Cannot read `/grub/core.img' correctly
536
537 appears when using grub2 versions older than 1.98 as those version introduced a
538 regression which avoids that grub is being installed into a partition (PBR,
539 Partition Boot Record) instead of MBR (Master Boot Record).
540
541 To work around this issue you can either 1) upgrade to grub versions >=1.98, 2)
542 install grub into the MBR (Master Boot Record) using the '--grub-mbr' option of
543 grml2usb or 3) switch to syslinux as bootmanager (just drop the '--grub'
544 option).
545
546 [[splash-xpm]]
547 I'm getting something like "Error: /usr/share/grml2usb/grub/splash.xpm.gz can not be read"!?
548 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
549
550 Looks like you've only the grml2usb script itself available. Please make sure
551 you've the grml2usb Debian package installed. The most resent stable version is
552 available via link:http://deb.grml.org/[the grml-testing Debian repository].  If
553 you do not have a Debian system please see section <<download,Where can I get
554 grml2usb?>> in this FAQ.
555
556 [[fat16]]
557 Why do I have to use a FAT16/FAT32 filesystem?
558 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
559
560 Syslinux (currently) does not support any other filesystems besides FAT16/FAT32
561 (though that's a sane default if you want to share your files with other
562 (operating) systems). If you want to use a different filesystem (like ext2/3)
563 use the bootloader grub instead using grml2usb's '--grub' option.
564
565 [NOTE]
566 FAT32 is supported since syslinux version 3.0.
567
568 [[hdt-hangs]]
569 Addons -> Hardware Detection Tool freezes
570 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
571
572 This usually means that the machine you ran grml2usb on had syslinux 3.x
573 installed. The version of hdt (Hardware detection tool) shipping with Grml
574 2010.12 and newer requires syslinux 4.x.
575
576 [[cool-idea]]
577 I think I've got a really cool idea!
578 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
579
580 Great! Please check out
581 link:http://git.grml.org/?p=grml2usb.git;a=blob;f=TODO;hb=HEAD[the TODO file].
582 Feel free to <<author,report your wishes to the author>>. Patches highly
583 appreciated.
584
585 [[booting-from-usb]]
586 I've problems with booting from USB.
587 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
588
589 Check out <<troubleshooting,Troubleshooting and Pitfalls when booting>>.
590
591 [[found-a-bug]]
592 I've found a bug!
593 ~~~~~~~~~~~~~~~~~
594
595 Please <<author,report it to the author>>. Please provide usage examples and output
596 of your grml2usb commandline (consider using the "\--verbose" option).
597
598 [[usage-examples]]
599 Usage examples
600 --------------
601
602   # grml2usb /home/grml/grml_2009.10.iso /dev/sdX1
603
604 Install specified ISO on device /dev/sdX1.
605
606   # grml2usb /home/grml/grml_2009.10.iso /home/grml/grml_small_2009.10.iso /dev/sdX1
607
608 Install specified ISOs on device /dev/sdX1 for multibooting ISOs.
609
610   # grml2usb /live/image /dev/sdX1
611
612 Install currently running grml live system on device /dev/sdX1.
613
614   # grml2usb /live/image /home/grml/grml_2009.10.iso /dev/sdX1
615
616 Install currently running grml live system and the specified
617 ISO on device /dev/sdX1 for multibooting.
618
619   # grml2usb --fat16 /home/grml/grml_2009.10.iso /dev/sdX1
620
621 Install specified ISO on device /dev/sdX1 and format partition /dev/sdX1 with
622 FAT16 filesystem.
623
624   # grml2usb --grub --grub-mbr /home/grml/grml_2009.10.iso /dev/sdX1
625
626 Install specified ISO on device /dev/sdX1 and use grub as bootloader (instead of
627 syslinux being the default) and install a master boot record (MBR) to the MBR of
628 /dev/sdX.
629
630   # grml2usb-compat /home/grml/grml_2009.05.iso /dev/sdX1
631
632 Install older grml ISO on device /dev/sdX1.
633
634 ///////////////////////////////////////////////////////////////////////////////////////
635   # grml2usb --kernel=/boot/vmlinuz-2.6.28-grml --initrd=/boot/initrd.img-2.6.28-grml \
636              /home/grml/grml_2009.10.iso /dev/sdX1
637
638 Install specified ISO on device /dev/sdX1 but use given kernel and initrd
639 instead of the ones provided by the ISO.
640
641   # grml2usb --squashfs=/grml/grml-live/grml_cd/live/grml.squashfs \
642              /home/grml/grml_2009.10.iso /dev/sdX1
643
644 Install specified ISO on device /dev/sdX1 but use given squashfs
645 file instead of the one provided by the ISO.
646 ///////////////////////////////////////////////////////////////////////////////////////
647
648   # grml2usb --bootoptions="lang=de ssh=mysecret" grml_2009.10.iso /dev/sdX1
649   # grml2usb --bootoptions="lang=de" --bootoptions="ssh=mysecret" grml_2009.10.iso /dev/sdX1
650
651 Install specified ISO on device /dev/sdX1 and use "lang=de ssh=mysecret" as
652 default bootoptions.
653
654
655   # grml2usb --remove-bootoption="vga=791" --remove-bootoption="quiet" grml_2009.10.iso /dev/sdX1
656
657 Install specified ISO on device /dev/sdX1 remove vga=791 and quiet from existing bootoptions.
658
659   # grml2usb --bootoptions="persistent-path=%flavour_name" grml64_2010.04.iso grml_2010.04.iso /dev/sdX1
660
661 Install specified Isos on device /dev/sdx and add parameter persisten-path
662 to every menu entry. %flavour_name will be expanded to the flavour of the specific
663 iso, e.g. grml64 and grml.
664
665 [[ressources]]
666 Online Ressources
667 -----------------
668
669 Check out the link:http://grml.org/grml2usb/[grml2usb webpage] and the
670 link:http://git.grml.org/?p=grml2usb.git[grml2usb git repository].
671
672 [[bugs]]
673 Bugs
674 ----
675 Please report feedback, bugreports and wishes <<author,to the author>>.
676
677 [[author]]
678 Author
679 ------
680 Michael Prokop <mika@grml.org>
681
682 /////////////////////////////////////////////////////////////////
683 http://wiki.grml.org/doku.php?id=tips#multiboot_usb_pen
684 http://www.startx.ro/sugar/isotostick.sh
685 https://help.ubuntu.com/community/Installation/FromUSBStick
686 http://unetbootin.sourceforge.net/
687 http://www.tux.org/pub/people/kent-robotti/looplinux/rip/mkusb.sh
688 https://fedorahosted.org/liveusb-creator/
689 /////////////////////////////////////////////////////////////////