PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : [topf] 4TB Platte im Topfield



claus_ob
09.02.2015, 21:08
Hallo zusammen,

möchte mich hier zunächst kurz vorstellen: ich habe seit ca. 3 Jahren eine TF 7700, von Beginn an mit Enigma2.
Bin eigentlich zufrieden, der TOPF dürfte manchmal etwas schneller sein :-).

Ich bin kürzlich von einer 2TB Platte auf eine 4TB Platte gewechselt. Musste dann leider bemerken, dass
der TF7700 nicht mit Platten >2GB wg. der 32-Bit Pointer in der Partitionstabelle zurecht kommt. Nun,
habe nun eine Partionierung wie folgt vorgenommen:


TOPF:~# fdisk -lu
fdisk: device has more than 2^32 sectors, can't use all of them

Disk /dev/sda: 2199.0 GB, 2199023255040 bytes
255 heads, 63 sectors/track, 267349 cylinders, total 4294967295 sectors
Units = sectors of 1 * 512 = 512 bytes

Device Boot Start End Blocks Id System
/dev/sda1 1 4209029 2104514+ 83 Linux
/dev/sda2 4210688 4739072 264192+ 82 Linux swap
Partition 2 does not end on cylinder boundary
/dev/sda3 4741120 3519076352 1757167616+ 83 Linux
/dev/sda4 3519078400 3487432704 2131660800+ 83 Linux




Der Trick ist, die letzte Partiion innerhalb des ersten 32-bit Pointer beginnen zu lassen
und auch kleiner als 2TB zu machen. Habe nun zwar zwei Datenpartitionen
(zweite Partition über link eingebunden), es läuft aber. Trick hatte ich hier
im Forum gefunden, nicht schlecht!!!!!! :-)

Bis auf eine Punkt: beim booten wird die zweite Partition nicht korrekt eingebunden,
ich muss Sie per hand einbinden:


#!/bin/sh

/sbin/fsck.jfs /dev/sda4
/bin/mount /hdd2



Der fsck findet keine Fehler, der Mount läuft. (fs-entry ist entsprechend).

Habt Ihr eine Idee, was schief laufen könnte?

Viele Grüße

Claus

joeuser
11.02.2015, 19:26
Sounds /hdd2 is not being unmounted properly. Maybe you need a script (or modify umountfs) to explicitly unmount it.

claus_ob
11.02.2015, 20:26
Thanks a lot for your hint. Never really thought about that because the first data-partition works alwas (even
after a crash) out of the box. After unmount and rebooting, mount was possible without fsck. Feel kind of stupid :-)

It seems that the fsck which is necessary on the first data-partition takes not as long as the one for the second data
partition.