du weisst bestimmt noch welches dateisystem die partitionen haben. das ist wichtig. wir hätten da zur auswahl ext2, ext3, reiserfs, xfs, ntfs und ....
um herauszufinden welchen partitionen man hat reicht schon ein
"dmesg | grep hd" oder "dmesg | grep sd"
Deine erste festplatte müsste dann hda oder sda sein und die zweite hdb oder sdb
die ausgabe vom befehl sieht bei mir so aus, damit du verstehst was ich meine:
[code:1]
ide0: BM-DMA at 0xd000-0xd007, BIOS settings: hda
MA, hdb
MA
ide1: BM-DMA at 0xd008-0xd00f, BIOS settings: hdc
MA, hdd
MA
hda: IC35L040AVER07-0, ATA DISK drive
hdb: Maxtor 4R060J0, ATA DISK drive
hdc: Pioneer DVD-ROM ATAPIModel DVD-105S 013, ATAPI CD/DVD-ROM drive
hdd: HL-DT-ST GCE-8481B, ATAPI CD/DVD-ROM drive
hda: max request size: 128KiB
hda: 80418240 sectors (41174 MB) w/1916KiB Cache, CHS=65535/16/63, UDMA(100)
hda: cache flushes not supported
hda: hda1 hda2 hda3 hda4 < hda5 hda6 hda7 hda8 >
hdb: max request size: 128KiB
hdb: 120103200 sectors (61492 MB) w/2048KiB Cache, CHS=65535/16/63, UDMA(100)
hdb: cache flushes supported
hdb: hdb1 hdb2 hdb3
hdc: ATAPI 40X DVD-ROM drive, 512kB Cache, UDMA(33)
hdd: ATAPI 40X CD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Adding 506036k swap on /dev/hda3. Priority:-1 extents:1 across:506036k
EXT3 FS on hda1, internal journal
EXT3 FS on hda5, internal journal
EXT3 FS on hda6, internal journal
EXT3 FS on hda7, internal journal
EXT3 FS on hda8, internal journal[/code:1]
wenn du möchtest das partitionen beim start automatisch geladen werden, musst du sie in die /etc/fstab eintragen.
das schema ist dort ziemlich einfach:
[code:1]# <fs> <mountpoint> <type> <opts> <dump/pass>[/code:1]
schau einfach mal in deine /etc/fstab
fs = das device also /dev/hd?? oder /dev/sd??
mountpoint = der "ordner" wohin die partition gemountet werden soll
type = ext3, ext2, reiser was auch immer
opts = da gibts ne menge. defaults, noatime, noauto, user
dump/pass = 0 2 ist da okay.
wenn das jetzt zu kurz war gib einfach mal in eine konsole man fstab ein. dort ist es noch ausführlicher beschrieben.
von hand mounten macht man, wenn die partitionen in die fstab eingetragen sind und bei opts user steht
einfach mit "mount mountpoint" ansonsten als root "mount -t fstype /dev/??? /wo/es/hin/soll