Adjust menu.lst + isolinux.cfg on the fly for new directoy layout
[grml-live.git] / docs / grml-live.txt
1 grml-live(8)
2 ============
3
4 Name
5 ----
6
7 grml-live - build framework based on FAI for generating a grml and Debian based
8 Linux Live system (CD/ISO)
9
10 Synopsis
11 --------
12
13 grml-live [-a <architecture>] [-c <classe[s]>] [-g <grml_name>] [-i <iso_name> ]
14 [-o <output_directory>] [-r <release_name>] [-s <suite>] [-t
15 <template_directory>] [-v <version_number>] [-bFVhuz]
16
17 *******************************************************************************
18 Important! This document is growing as requested. If you have questions which
19 aren't answered by this document yet please let me know: <mika@grml.org>!
20 This document currently applies to grml-live version 0.4.
21 *******************************************************************************
22
23 Description
24 -----------
25
26 grml-live provides the build system for creating a grml and Debian based Linux
27 Live-CD. The build system is based on
28 link:http://www.informatik.uni-koeln.de/fai/[FAI] (Fully Automatic
29 Installation). grml-live uses the "fai dirinstall" feature to generate a chroot
30 system based on the class concept of FAI (see later sections for further
31 details) and provides the framework to be able to generate a full-featured ISO.
32 It does not use all the FAI features by default though and you don't have to
33 know FAI to be able to use it.
34
35 The use of FAI gives you the flexibility to choose the packages you would like
36 to include on your very own Linux Live-CD without having to deal with all the
37 details of a build process.
38
39 CAUTION: grml-live does **not** use /etc/fai for configuration but instead
40 provides and uses /etc/grml/fai. This ensures that it does not clash with
41 default FAI configuration and packages, so you can use grml-live and FAI
42 completely independent at the same time!
43
44 [NOTE]
45
46 Please notice that you should have a fast network connection as all the Debian
47 packages will be downloaded and installed via network. If you want to use a
48 local mirror (strongly recommended if you plan to use grml-live more than once)
49 checkout mkdebmirror (see /usr/share/doc/grml-live/examples/mkdebmirror),
50 debmirror(1), reprepro(1) (see /usr/share/doc/grml-live/examples/reprepro/ for a
51 sample configuration), apt-cacher(1) and approx(8). To avoid downloading the
52 base system again and again check out FAI's NFSROOT (see FAQ of this document
53 for details).
54
55 Options
56 -------
57
58   -a **ARCHITECTURE**::
59
60 Use the specified architecture instead of the currently running one.  This
61 allows building a 32bit system on a 64bit host (though you can't build a 64bit
62 system on a 32bit system/kernel of course). Please notice that real
63 crosscompiling (like building a ppc system on x86) isn't possible due to the
64 nature and the need of working in a chroot. Currently supported values: i386
65 and amd64.
66
67   -b::
68
69 Build the ISO without updating the chroot via FAI. This option is useful for
70 example when working on stable releases: if you have a working base
71 system/chroot and do not want to execute any further updates (via "-u" option)
72 but intend to only build the ISO.
73
74   -c **CLASSES**::
75
76 Specify the CLASSES to be used for building the ISO via FAI.  By default only
77 the classes GRMLBASE, GRML_SMALL and I386 are assumed, resulting in a small base
78 system (being about ~150MB total ISO size). If using a non-I386 system (like
79 amd64) you should specify the appropriate architecture as well. Additionally you
80 can specify a class providing a grml-kernel (see
81 /etc/grml/fai/config/package_config/ for a full list).  So instead of GRML_SMALL
82 you can also use GRML_MEDIUM and GRML_FULL instead.
83
84   -C **CONFIGURATION_FILE**::
85
86 The specified file is used as configuration file for grml-live. By default
87 /etc/grml/grml-live.conf is used for main configuration. If a file named
88 /etc/grml/grml-live.local exists it is used as well (sourced after reading
89 /etc/grml/grml-live.conf to allow overriding settings). As a last option the
90 specified configuration file is sourced so it is possible to override settings
91 of /etc/grml/grml-live.conf as well as of /etc/grml/grml-live.local. Please
92 notice that all configuration files have to be adjusted during execution of
93 grml-live, so please make sure you use /etc/grml/grml-live.conf as a base for
94 your own configuration file. Please also notice that the configuration file
95 specified via this option is **not** (yet) supported inside the
96 scripts/hooks/classes at /etc/grml/fai/config. Instead use
97 /etc/grml/grml-live.conf and/or /etc/grml/grml-live.local for configuration
98 stuff used inside /etc/grml/fai/config.
99
100   -F::
101
102 Force execution and do not prompt for acknowledgment of configuration.
103
104   -g **GRML_NAME**::
105
106 Set the grml flavour name. Common usage examples: grml, grml-small, grml64.
107 Please do NOT use blanks inside GRML_NAME, otherwise you might notice problems
108 with booting.
109
110   -h::
111
112 Display short usage information and exit.
113
114   -i **ISO_NAME**::
115
116 Specify name of ISO which will be available inside $OUTPUT_DIRECTORY/grml_isos
117 by default.
118
119   -o **OUTPUT_DIRECTORY**::
120
121 Main output directory of the build process of FAI.  Some directories are created
122 inside this target directory, being: grml_cd (where the files for creating the
123 ISO are located, including the compressed squashfs file), grml_chroot (the
124 chroot system) and grml_isos (where the resulting ISO is stored).
125
126   -r **RELEASENAME**::
127
128 Specify name of the release.
129
130   -s **SUITE**::
131
132 Specify the Debian suite you want to use for your live-system.  Defaults to
133 "etch" (being current Debian/stable). Supported values are: etch, lenny, sid.
134
135   -t **TEMPLATE_DIRECTORY**::
136
137 Specify place of the templates used for building the ISO. By default
138 (and if not manually specified) this is /usr/share/grml-live/templates/.
139
140   -u::
141
142 Update existing chroot instead of rebuilding it from scratch. This option is
143 based on the softupdate feature of FAI.
144
145   -v **VERSION_NUMBER**::
146
147 Specify version number of the release.
148
149   -V::
150
151 Increase verbosity in the build process.
152
153   -z::
154
155 Use ZLIB instead of LZMA compression in mksquashfs part of the build process.
156
157 Usage examples
158 --------------
159
160 To get a small, Debian-stable and grml-based Live-CD using /grml/grml-live
161 as build and output directory just run:
162
163   # grml-live
164
165 To get a small Debian-unstable and grml-small based Live-CD using
166 /home/mika/grml-live as build and output directory just use:
167
168   # grml-live -s sid -c GRMLBASE,GRML_SMALL,I386 -o /home/mika/grml-live
169
170 To get a medium sized, Debian-unstable and grml-based Live-CD for i386
171 architecture using /grml/grml-live as build and output directory just run:
172
173   # grml-live -s sid -a i386 -c GRMLBASE,GRML_MEDIUM,I386
174
175 To get a small, Debian-unstable and grml-based Live-CD using /tmp as build and
176 output directory and use grml_0.0-3.iso as ISO name (placed inside
177 /tmp/grml_isos) just invoke:
178
179   # grml-live -o /tmp -c GRMLBASE,GRML_SMALL,I386 -s sid -i grml_0.0-3.iso
180
181 [NOTE]
182
183 If you have about 700MB of free space inside /dev/shm (being a tmpfs, usually
184 you should have >=1GB of RAM) just run "mount -o remount,suid,dev,rw /dev/shm"
185 and use /dev/shm as build and output directory - resulting in very fast build
186 process.  But please be aware of the fact that rebooting your system will result
187 in an empty /dev/shm, so please use another directory for $CHROOT_OUTPUT,
188 $BUILD_OUTPUT and $ISO_OUTPUT if you plan to create more persistent output. :)
189
190 Main features of grml-live
191 --------------------------
192
193 * create a grml-/Debian-based Linux Live-CD with one single command
194
195 * class based concept, providing a maximum of flexibility
196
197 * supports integration of own hooks, scripts and configuration
198
199 * supports use and integration of own Software and/or Kernels via simple use of
200 Debian repositories
201
202 * native support of FAI features
203
204 * multi-arch support (work in progress)
205
206 The class concept
207 -----------------
208
209 grml-live uses FAI and its class based concept for adjusting configuration and
210 setup according to your needs. This gives you flexibility and strength without
211 losing the simplicity in the build process.
212
213 The main and base class provided by grml-live is named GRMLBASE. It's strongly
214 recommended to **always** use the class GRMLBASE when building an ISO using
215 grml-live, as well as the architecture dependent class which provides the kernel
216 (being 'I386' for x86_32 and 'AMD64' for x86_64) and a GRML_* class (like
217 GRML_SMALL, GRML_MEDIUM or GRML_FULL). The following files and directories are
218 relevant for class GRMLBASE by default:
219
220   /etc/grml/fai/config/scripts/GRMLBASE/
221   /etc/grml/fai/config/debconf/GRMLBASE
222   /etc/grml/fai/config/class/GRMLBASE.var
223   /etc/grml/fai/config/hooks/instsoft.GRMLBASE
224   /etc/grml/fai/config/package_config/GRMLBASE
225
226 Take a look at the next section for information about the concept of those
227 files/directories.
228
229 If you want to use your own configuration, extend an existing configuration
230 and/or add additional packages to your ISO just invent a new class (or extend an
231 existing one). For example if you want to use your own class named "FOOBAR" just
232 extend CLASSES="GRMLBASE,GRML_SMALL,I386" inside /etc/grml/grml-live.conf to
233 CLASSES="GRMLBASE,GRML_SMALL,I386,FOOBAR" or invoke grml-live using the classes
234 option: "grml-live -c GRMLBASE,GRML_SMALL,I386,FOOBAR ...".
235
236 More details regarding the class concept can be found in the documentation of
237 FAI itself (being available at /usr/share/doc/fai-doc/).
238
239 Available classes
240 -----------------
241
242 Documentation to be done...
243
244 Files
245 -----
246
247 Notice that grml-live ships FAI configuration files that do not use the same
248 namespace as the FAI packages itself. This ensures that grml-live does not clash
249 with your usual FAI configuration, so instead of /etc/fai/fai.conf (package
250 fai-client) grml uses /etc/grml/fai/fai.conf instead. For more details see
251 below. To get an idea how another configuration or example files could look like
252 check out /usr/share/doc/fai-doc/examples/simple/ (provided by Debian package
253 fai-doc). Furthermore /usr/share/doc/fai-doc/fai-guide.html/ch-config.html
254 provides documentation regarding configuration possibilities.
255
256   /usr/sbin/grml-live
257
258 Script for the main build process. Requires root permissions for execution.
259
260   /etc/grml/grml-live.conf
261
262 Main configuration file for grml-live. All the important steps can be configured
263 at this stage.
264
265   /etc/grml/fai/fai.conf
266
267 Main configuration file for FAI which specifies where all the configuration
268 files and scripts for FAI/grml-live can be found. By default it is set to
269 FAI_CONFIGDIR=/etc/grml/fai/config, a directory shipped by grml-live
270 out-of-the-box so you shouldn't have to configure anything in this file.
271
272   /etc/grml/fai/make-fai-nfsroot.conf
273
274 This file is used by make-fai-nfsroot(8) only. Usually you don't have to change
275 anything inside this file. If you want to modify NFSROOT though you can adjust
276 it there.
277
278   /etc/grml/fai/NFSROOT
279
280 This file specifies the package list for creating the NFSROOT.
281
282   /etc/grml/fai/apt/sources.list
283
284 This file specifies which mirrors should be used for retreiving the Debian
285 packages used for creating the main chroot (including all the software you would
286 like to see included). If you want to use a local mirror you either have to
287 adjust this file or use the GRML_LIVE_SOURCES variable inside
288 /etc/grml/grml-live.conf which modifies /etc/grml/fai/apt/sources.list
289 on-the-fly then.
290
291   /etc/grml/fai/config/
292
293 The main directory for configuration of FAI/grml-live. More details below.
294
295   /etc/grml/fai/config/class/
296
297 This directory contains files which specify main configuration variables for the
298 FAI classes.
299
300   /etc/grml/fai/config/debconf/
301
302 This directory provides the files for preseeding/configuration of debconf
303 through files.
304
305   /etc/grml/fai/config/hooks/
306
307 This directory provides files for customising the build process through hooks.
308 Hooks are user defined programs or scripts, which are called during the
309 installation process.
310
311   /etc/grml/fai/config/package_config/
312
313 Directory with lists of software packages to be installed or removed.  The
314 different classes describe what should find its way to your ISO.  When running
315 "grml-live -c GRMLBASE,GRML_SMALL,I386 ..." only the configuration of GRMLBASE,
316 GRML_SMALL and and I386 will be taken. If you use 'grml-live -c
317 GRMLBASE,GRML_SMALL,I386,FOOBAR ...' then the files of GRMLBASE, GRML_SMALL,
318 I386 **plus** the files from FOOBAR will be taken. So just create a new class to
319 adjust the package selection according to your needs.  Please notice that the
320 directory GRMLBASE contains a package list defining a minimum but still
321 reasonable package configuration.
322
323   /etc/grml/fai/config/scripts/
324
325 Scripts for customising the ISO within the build process.
326
327   /etc/grml/fai/files/
328
329 This directory provides files used inside the scripts of
330 /etc/grml/fai/config/scripts/*. For a full documentation what happens with the
331 files please refer to the source of the scripts.
332
333   /etc/grml/fai/live-initramfs/
334
335 This directory provides the files used for building the initramfs/initrd via
336 live-initramfs(8).
337
338 Available log files
339 -------------------
340
341 grml-live itself logs to /var/log/grml-live.log. Unless you set ZERO_LOGFILE in
342 /etc/grml/grml-live.conf the output is appended to the file. If you set the
343 ZERO_LOGFILE configuration option the logfile will be truncated on each new
344 invocation of grml-live.
345
346 The FAI part of grml-live logs to /var/log/fai/$HOSTNAME/ - so the
347 default being /var/log/fai/grml/.
348
349 If you are using the grml-live buildd you will find the logs of the grml-live
350 run at /var/log/grml-buildd.stdout and /var/log/grml-buildd.stderr.
351
352 Requirements for the build system
353 ---------------------------------
354
355 * any Debian based system should be sufficient (if not it's a bug, so please
356 send us a bug report then) [a usual link:http://grml.org/grml2hd/[grml2hd]
357 harddisk installation ships all you need]
358
359 * enough free disk space; at least 800MB are required for a minimal grml-live
360 run (\~400MB for the chroot [$CHROOT_OUTPUT], \~150MB for the build target
361 [$BUILD_OUTPUT] and \~150MB for the resulting ISO [$ISO_OUTPUT] plus some
362 temporary files), if you plan to use GRML_FULL you should have at least 4GB of
363 total free disk space
364
365 * fast network access for retreiving the Debian packages used for creating the
366 chroot (check out "local mirror" and "NFSROOT" to workaround this problem as far
367 as possiblbe)
368
369 FAQ
370 ---
371
372 Help, I'm using Debian etch and I don't have FAI version >3.2
373 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
374
375   wget http://www.informatik.uni-koeln.de/fai/download/etch/fai-client_3.2.4_all.deb \
376        http://www.informatik.uni-koeln.de/fai/download/etch/fai-server_3.2.4_all.deb \
377        http://www.informatik.uni-koeln.de/fai/download/etch/fai-doc_3.2.4_all.deb
378   dpkg -i fai-client_3.2.4_all.deb fai-server_3.2.4_all.deb fai-doc_3.2.4_all.deb
379
380 or check out the link:http://www.informatik.uni-koeln.de/fai/[FAI-homepage] for
381 further details.
382
383 I've problems with the build process. How to start debugging?
384 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
385
386 Check out the logs inside /var/log/fai/... If you don't have the time to debug
387 the problem in further detail or don't know how to proceed just send a copy of
388 your config, logs and the commandline with a short problem description to
389 <mika@grml.org>:
390
391   # history | grep grml-live > /etc/grml/grml_live.cmdline
392   # tar zcf grml_live_problem.tar.gz /etc/grml/grml-live.conf \
393             /etc/grml/grml-buildd.conf /var/log/fai /etc/grml/fai
394
395 Can I use my own (local) Debian mirror?
396 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
397
398 Sure. Just adjust the variables GRML_LIVE_SOURCES and FAI_DEBOOTSTRAP (if not
399 already using NFSROOT's base.tgz) inside /etc/grml/grml-live.conf according to
400 your needs. Please don't forget that you should use the grml servers as well
401 (see default configuration) so all the grml packages can be downloaded as well.
402
403 If you want to use a local (for example NFS mount) mirror additionally, just
404 adjust MIRROR_DIRECTORY and MIRROR_SOURCES inside /etc/grml/grml-live.conf as
405 well.
406
407 Unless you specify GRML_LIVE_SOURCES and/or FAI_DEBOOTSTRAP the default from
408 /etc/grml/fai/apt/sources.list and /etc/grml/fai/make-fai-nfsroot.conf will be
409 taken. If you customise the variables in /etc/grml/grml-live.conf then the two
410 files will be adjusted during runtime automatically.
411
412 If MIRROR_DIRECTORY and MIRROR_SOURCES are specified the local mirror will be
413 taken as first entry in the generated sources.list so it's prefered over
414 non-local mirrors. Using a fallback mirror (via providing several mirrors in
415 GRML_LIVE_SOURCES as used by default) is a recommended setting.
416
417 How do I add additional Debian package(s) to my CD/ISO?
418 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
419
420 Just create a new class (using the package_config directory):
421
422   # cat > /etc/grml/fai/config/package_config/MIKA << EOF
423   PACKAGES aptitude
424
425   vim
426   another_name_of_a_debian_package
427   and_another_one
428   EOF
429
430 and specify it when invoking grml-live then:
431
432   # grml-live -c GRMLBASE,GRML_SMALL,I386,MIKA
433
434 I fscked up my grml-live configuration. How do I reset it to the defaults?
435 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
436
437 Notice: this deletes all your grml-live configuration files. If that's really
438 what you are searching for just run:
439
440   rm -rf /etc/grml/fai /etc/grml/grml-live.conf
441   dpkg -i --force-confnew --force-confmiss /path/to/grml-live_..._all.deb
442
443 [NOTE]
444
445 If you don't control your /etc using a version control system (VCS) yet it's a
446 good chance to start using it now. Check out
447 link:http://michael-prokop.at/blog/2007/03/14/maintain-etc-with-mercurial-on-debian/[http://michael-prokop.at/blog/2007/03/14/maintain-etc-with-mercurial-on-debian/]
448 for more details how to maintain /etc using the mercurial VCS.
449
450 How do I create a base.tgz for use as NFSROOT?
451 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
452
453 First of all build the chroot system:
454
455   mkdir /tmp/nfsroot && cd /tmp/nfsroot
456   debootstrap etch /tmp/nfsroot/ http://ftp.de.debian.org/debian
457   tar zcf base.tgz ./
458
459 Then check out where your NFSROOT is located:
460
461   # grep '^NFSROOT' /etc/grml/fai/make-fai-nfsroot.conf
462   NFSROOT=/grml/fai/nfsroot
463
464 So as /grml/fai/nfsroot is your NFSROOT place the file under
465 /grml/fai/nfsroot/live/filesystem.dir/var/tmp/:
466
467   mv base.tgz /grml/fai/nfsroot/live/filesystem.dir/var/tmp/base.tgz
468
469 or even better use /etc/grml/fai/config/basefiles/$CLASSNAME.tar.gz instead.
470 Use I386 as $CLASSNAME for i386 builds and AMD64 for amd64 builds.
471
472 Now running "grml-live ..." will use this file as main system instead of
473 executing debootstrap. Check out the output for the following lines if using
474 NFSROOT:
475
476   [...]
477   Calling task_extrbase
478   Unpacking Debian base archive
479   Extracting /grml/fai/nfsroot/live/filesystem.dir/var/tmp/base.tgz
480   Calling task_mirror
481   [...]
482
483 or if using /etc/grml/fai/config/basefiles/$CLASSNAME.tar.gz for:
484
485   [...]
486   ftar: extracting /etc/grml/fai/config/basefiles///AMD64.tar.gz to
487   /grml-live/grml-live_20071029.22138/grml_chroot//
488   [...]
489
490 Set up apt-cacher for use with grml-live
491 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
492
493 Make sure /etc/grml/grml-live.conf provides according GRML_LIVE_SOURCES and
494 FAI_DEBOOTSTRAP:
495
496   # cat /etc/grml/grml-live.conf
497   [...]
498   GRML_LIVE_SOURCES="
499   deb http://localhost:3142/deb.grml.org grml-stable  main
500   deb http://localhost:3142/deb.grml.org grml-testing main
501   deb http://localhost:3142/ftp.de.debian.org/debian etch main contrib non-free
502   "
503   [...]
504   FAI_DEBOOTSTRAP="etch http://localhost:3142/ftp.de.debian.org/debian etch main contrib non-free"
505
506 Make sure apt-cacher is running (/etc/init.d/apt-cacher restart). That's it.
507 All downloaded files will be cached in /var/cache/apt-cacher/ now.
508
509 Set up approx for use with grml-live
510 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
511
512 Make sure /etc/grml/grml-live.conf provides according GRML_LIVE_SOURCES and
513 FAI_DEBOOTSTRAP:
514
515   # cat /etc/grml/grml-live.conf
516   [...]
517   GRML_LIVE_SOURCES="
518   deb http://localhost:9999/grml            grml-stable  main
519   deb http://localhost:9999/grml            grml-testing main
520   deb http://localhost:9999/debian etch     main contrib non-free
521   "
522   FAI_DEBOOTSTRAP="etch http://localhost:9999/debian"
523
524 Configure approx:
525
526   # cat /etc/approx/approx.conf
527   [...]
528   debian http://ftp.at.debian.org/debian
529   grml   http://deb.grml.org/
530
531 Don't forget to restart approx (/etc/init.d/approx restart). That's it.
532 All downloaded files will be cached in /var/cache/approx now.
533
534 I've a question which isn't answered by this document
535 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
536
537 Don't hesitate to ask on IRC (channel #grml on irc.freenode.org) or just drop me
538 a mail: <mika@grml.org>
539
540 Download / install grml-live as a Debian package
541 ------------------------------------------------
542
543 Debian packages are available through the grml-repository at
544 link:http://deb.grml.org/pool/main/g/grml-live/[deb.grml.org].  If you want to
545 build a Debian package on your own (using for example a specific version or the
546 current development tree), just execute:
547
548   hg clone http://hg.grml.org/grml-live
549   cd grml-live
550   debuild -us -uc
551
552 Source
553 ------
554
555 The source of grml-live is available at
556 link:http://hg.grml.org/grml-live/[http://hg.grml.org/grml-live/]
557
558 TODO list
559 ---------
560
561 Check out link:http://wiki.grml.org/doku.php?id=grml-live[grml-live@grml-wiki]
562 for details.
563
564 Bugs
565 ----
566
567 Please report feedback, link:http://grml.org/bugs/[bugreports] and wishes
568 link:http://grml.org/contact/[to the grml-team]!
569
570 Authors
571 -------
572 Michael Prokop <mika@grml.org>.
573
574 /////////////////////////////////////
575 // vim:ai tw=80 ft=asciidoc expandtab
576 /////////////////////////////////////