Here is the relevant line from my /etc/fstab file:
UUID=f51aa298-9ce4-4a19-a323-10df333f34f5 / ext4 data=writeback,noatime,barrier=0,errors=remount-ro,commit=100,nobh,nouser_xattr 0 1
Here is what happens when I type the command "mount":
/dev/sda1 on / type ext4 (rw,noatime,data=writeback,barrier=0,errors=remount-ro,commit=100,nobh,nouser_xattr,commit=0)
Why does it specify "commit=0" at the end? Does it mean that my commit=100 option is not used?
I am using Ubuntu 10.10, 32-bit with the latest updates.
grep ' / ' /proc/mountsshow? The information in/proc/mountscomes directly from the kernel, whereasmountuses information in/etc/mtab, which might not be up-to-date for/. – Gilles Jul 16 '11 at 19:36/etc/mtabis updated bymount, if it can./is normally mounted read-only by the kernel or the initrd/initramfs, the remounted read-write as part of the boot process. I'm not sure if the final mount options (from/etc/fstab) are always recorded correctly. – Gilles Jul 16 '11 at 23:11