ich habe einen Laptop übernommen mit Debian 4 drauf. Die Platte ist partitioniert, es gibt ext3 und FAT-Partitionen. Ich möchte, daß alle User automatisch nach dem Starten Zugriff auf alle Partitionen haben.
Zur Zeit ist das nicht der Fall. Insbesondere auf die Partition /ext3data komme ich als "normaler" User nicht drauf, ich versuche dorthin ein .iso Image downzuloaden und bekomme stets die Meldung daß mir die Rechte fehlen. Als root in /ext3data "chmod a=777" gemacht (war das das richtige?), half aber nix.
Die fstab sieht wie folgt aus:
Code: Alles auswählen
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda5 / ext3 defaults,errors=remount-ro 0 1
/dev/hda4 /ext3data ext3 rw,users 0 2
/dev/hda2 /fat32data vfat defaults 0 0
/dev/hda8 /fat32share vfat defaults 0 0
/dev/hda7 /home ext3 defaults 0 2
/dev/hda6 none swap sw 0 0
/dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
Wie kann ich das automatisieren?
Danke! Oliver