Hallo!
Bei jedem Bootvorgang wird die Festplattenprüfung durchgeführt. Bisher konnte ich nicht herausfinden, woran das liegt.
Hier die Einträge aus /etc/fstab:
1 2 3 4 5 6 7 8 9 10 11 12 | # /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc nodev,noexec,nosuid 0 0 # / was on /dev/sda16 during installation UUID=3f2ce441-f94f-4c0d-8fe5-66ee54a9e99e / ext2 errors=remount-ro 0 1 /dev/sda17 none swap sw 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0 |
Der "mount count" steht jedoch die ganze Zeit auf 1 von 30:
1 2 3 | sudo tune2fs -l /dev/sda16 | grep -i "mount count" Mount count: 1 Maximum mount count: 30 |
Und die zeitbasierte Prüfung ist deaktiviert:
1 2 3 | sudo tune2fs -l /dev/sda16 | grep -i "check" Last checked: Thu Aug 30 19:29:27 2012 Check interval: 0 (<none>) |
Hat jemand eine Idee, warum die Plattenprüfung bei jedem Systemstart durchgeführt wird? Ich hätte es gerne so, dass die Prüfung nach 30 Bootvorgängen stattfindet.
Danke Euch!
Grüße, WD