BTW, the google group thread is here:

http://groups.google.com/group/linuxusersgroup/browse_thread/thread/f1a93555fdf0da3f

The error could be in a number of places: fsck, blkid,
fsck.{jfs,reiserfs}, some place else.

Some things to try with example code:

- look at  /etc/rcS.d/S30checkfs.sh 
  lexx -iX /etc/rcS.d/S30checkfs.sh

- run an strace on fsck
  strace fsck -C -R -A -a >& /tmp/fsck.trace.txt

- query UUIDs using blkid:
  awk '/UUID/ {print $1}' /etc/fstab | xargs -n 1 blkid -t

- run fsck.* using UUID
  awk '/UUID/ && /ext3/ {print $1}' /etc/fstab | xargs -n 1 fsck.ext3

- look at /etc/blkid.tab for UUID entries
  cat /etc/blkid.tab

Regards,
- Robert

-- 
checkfs & fsck command options don't work with fsck.jfs at boot
https://bugs.launchpad.net/bugs/106782
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to