X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=docs%2Fgrml-live.txt;h=dcfb14b2a56958b68de29cb798affca49e73817e;hp=3d94ea1a8d8529dafaca756721334e4f8caf146b;hb=956db16430d4c373008e9b1a3b0a33e020e117ab;hpb=285e5c377c479430760d43c0c1638e71c355f48d;ds=inline diff --git a/docs/grml-live.txt b/docs/grml-live.txt index 3d94ea1..dcfb14b 100644 --- a/docs/grml-live.txt +++ b/docs/grml-live.txt @@ -1046,6 +1046,23 @@ syslinux) then just execute: % isohybrid grml.iso +[[basetgz]] +How to I create a base tar.gz (I386.tar.gz or AMD64.tar.gz) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Execute the following commands (requires root): + + ARCH='amd64' # replace with i386 if necessary + SUITE='squeeze' # using the current stable release should always work + debootstrap --arch "$ARCH" --exclude=info,tasksel,tasksel-data "$SUITE" "$ARCH" http://debian.netcologne.de/debian + cd "$ARCH" + rm var/cache/apt/archives/*.deb + tar zcf ../"${ARCH}".tar.gz * + +And finally place the generated tarball in /etc/grml/fai/config/basefiles/ (note +that it needs to be uppercase letters matching the class names, so: AMD64.tar.gz +for amd64 and I386.tar.gz for i386). + [[question]] I've a question which isn't answered by this document ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~