Table of Contents

Issues regarding grml 0.7

You found a bug in grml 0.7 not yet mentioned on this page? Please report it via grml.org/bugs/! (Please don't forget to add your name and mailadress so we contact you if we have further questions.) The grml-team will add bug-reports (plus their possible fixes) to this page then. Please do not add bug reports on your own to this page if you do not provide contact information, thanks.

losetup

isolinux fails with 'Could not find kernel image: grml'

some PCMCIA WLAN cards don't work out of the box

running grml-lang with unknown parameter fails

/usr/include/linux does not link to /usr/src/linux/include/linux/

If you get errors like (for example when running 'make menuconfig' on kernel-source):

In file included from /usr/include/bits/posix1_lim.h:153,
                 from /usr/include/limits.h:144,
                 from /usr/lib/gcc/i486-linux-gnu/4.0.3/include/limits.h:122,
                 from /usr/lib/gcc/i486-linux-gnu/4.0.3/include/syslimits.h:7,
                 from /usr/lib/gcc/i486-linux-gnu/4.0.3/include/limits.h:11,
                 from scripts/basic/fixdep.c:113:
/usr/include/bits/local_lim.h:36:26: error: linux/limits.h: No such file or directory
[...]

fix it via running:

cd /usr/include/
mv linux/ivtv.h /usr/src/linux/include/linux/
rm -rf linux
ln -s /usr/src/linux/include/linux linux

Problem reported by Roberto Murer, thanks! [mika]

symlink /dev/cdrom does not exist

The symlink /dev/cdrom does not exist. This is not a serious problem in live-CD mode. If you are running a harddisk-installation activate the udev-rules running either:

# cd /etc/udev/rules.d/
# ln -s ../cd-aliases-generator.rules   z75_cd-aliases-generator.rules

or update the udev package running 'apt-get update ; apt-get install udev'. Problem reported by Gebi, fix by mika, updated udev-package by tklauser.