On Wed, Jul 11, 2007 at 08:32:21PM +0200, André Glücksmann wrote: > nun hat es die 1: > > $ cat /var/log/boot.msg | grep check > * Skipping root filesystem check (fstab's passno == 0) ... > > $ cat /etc/fstab > ... > UUID=63f7ca27-faee-4361-adba-227db5bf2d97 /boot ext2 noauto,noatime 1 2 > UUID=ac31b6a8-d1c5-4133-8ae9-edddfda8572b / reiserfs noatime 0 1 > ... Hi, das ist ja wohl echt mal ein "magischer" Fehler .. Ich weiss nicht welches baselayout du hast, aber bei meinem (1.12.10-r4) und dem x86-stable (1.12.9-r2) schaut das in der /etc/init.d/checkroot so aus: # Obey the fs_passno setting for / (see fstab(5)) # - find the / entry # - make sure we have 6 fields # - see if fs_passno is something other than 0 if [[ -n $(awk '($1 ~ /^(\/|UUID|LABEL)/ && $2 == "/" \ && NF == 6 && $6 != 0) { print }' /etc/fstab) ]] then ebegin "Checking root filesystem" fsck -C -T -a / retval=$? else ebegin "Skipping root filesystem check (fstab's passno == 0)" retval=0 fi Das Problem muss also wohl irgendwie mit dem awk zusammenhängen. Evtl schaust du einfach mal ob die checkroot bei dir auch so aussieht, und was awk '($1 ~ /^(\/|UUID|LABEL)/ && $2 == "/" && NF == 6 && $6 != 0) { print }' /etc/fstab bei dir ausspuckt. MfG Emil -- Emil Beinroth 83059 Kolbermoor | Germany Emacs, n.: A slow-moving parody of a text editor.