• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

fstab Fehler OpenSuse 11

tommy tulpe

Hacker
Hallo!

Wenn ich mount -a eingebe, kommt immer:
mount: unbekannter Dateisystemtyp „“
Ich bekomme beim besten Willen nicht heraus, was damit gemeint ist, da ich keine Fehler finden kann.

tommy

fstab:
/dev/disk/by-id/scsi-SATA_ST3500630A_9QG3FGS1-part5 swap swap defaults 0 0
/dev/disk/by-id/scsi-SATA_ST3500630A_9QG3FGS1-part6 / ext3 acl,user_xattr 1 1
/dev/disk/by-id/scsi-SATA_ST3500630A_9QG3FGS1-part7 /home ext3 acl,user_xattr 1 2
/dev/disk/by-id/scsi-SATA_Maxtor_6Y080L0_Y2BCA7EC-part1 /windows/C ntfs-3g users,gid=users,fmask=133,dmask=022,locale=de_DE.UTF-8 0 0
/dev/disk/by-id/scsi-SATA_ST3500630A_9QG3F3HH-part3 /home/user/Daten ext3 acl,user_xattr
/dev/disk/by-id/scsi-SATA_ST3500630A_9QG3F3HH-part2 /home/user/Daten/user_Stammverzeichnis
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
#usbfs /proc/bus/usb usbfs auto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
Multi5:/home/user1 /home/user1/home nfs defaults 0 0
none /proc/bus/usb usbfs devgid=1000,devmode=664 0 0
 

Grothesk

Ultimate Guru
Code:
/dev/disk/by-id/scsi-SATA_ST3500630A_9QG3F3HH-part3 /home/user/Daten ext3 acl,user_xattr
Da fehlen die beiden Ziffern am Ende


Code:
/dev/disk/by-id/scsi-SATA_ST3500630A_9QG3F3HH-part2 /home/user/Daten/user_Stammverzeichnis
Hier fehlt das Dateisystem, die Optionen und die beiden Ziffern am Ende.
 

Grothesk

Ultimate Guru
Ja, man kann auch ohne die Werte auskommen.
Funktioniert der Rest denn nun?

man fstab

The fifth field, (fs_freq), is used for these filesystems by the dump(8) command to
determine which filesystems need to be dumped. If the fifth field is not present,
a value of zero is returned and dump will assume that the filesystem does not need
to be dumped.

The sixth field, (fs_passno), is used by the fsck(8) program to determine the order
in which filesystem checks are done at reboot time. The root filesystem should be
specified with a fs_passno of 1, and other filesystems should have a fs_passno of
2. Filesystems within a drive will be checked sequentially, but filesystems on
different drives will be checked at the same time to utilize parallelism available
in the hardware. If the sixth field is not present or zero, a value of zero is
returned and fsck will assume that the filesystem does not need to be checked.
 
Oben