Can't Mount as ext3?

/etc/fstab is fine, and /dev/hda3 mounts without errors... but it appears it's mounting as ext2 instead of ext3. Have I forgotten something? Thanks.

Code:
root@s2 [~]# mount -a
root@s2 [~]# cat /etc/fstab
LABEL=/                 /                       ext3    defaults,usrquota        1 1
LABEL=/boot             /boot                   ext3    defaults        1 2
none                    /dev/pts                devpts  gid=5,mode=620  0 0
none                    /proc                   proc    defaults        0 0
none                    /dev/shm                tmpfs   defaults        0 0
/dev/hda2               swap                    swap    defaults        0 0
/dev/hda3               /backups                ext3    defaults        1 0

root@s2 [~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/hdb1              76G  3.1G   69G   5% /
/dev/hda1              99M  7.8M   86M   9% /boot
none                 1006M     0 1006M   0% /dev/shm
/dev/hda3              74G   20K   70G   1% /backups

root@s2 [~]# mount
/dev/hdb1 on / type ext3 (rw,usrquota)
none on /proc type proc (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/hda1 on /boot type ext3 (rw)
none on /dev/shm type tmpfs (rw)
/dev/hda3 on /backups type ext2 (rw)

root@s2 [~]#

 

 

 

 

Top