AW: Probleme mit interner Festplatte
Dann ist dein Flash voll ?
Welches Images genau !
Nicht unbedingt. Es ist bereits bekannt dass Enigma2 sich manchmal mit fehlerhaften Partitionen, defekten Sektoren etc. sehr schwer macht. Insbesondere wurde schon sehr oft mit problemen bei Newnigma gepostet... In dem Fall reicht die HDD mit fdisk (unter bash) )vorzubereiten.
Hier ein kleines Howto:
Als erstes eine Bemerkung:
Nicht alle images kennen Befehl "fdisk" (z.B. OpenPLI). In dem Fall muß man den nachinstallieren:
Code:
opkg update && opkg install util-linux-fdisk
Und jetzt auf gehts
...
1.) HDD aushängen:
2.) alte Partition löschen:
"m" drücken um alle Optionen anzuzeigen. Es sollte sowas kommen:
Command (m for help): m
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
Um die Partition zu löschen "d" drücken
Command (m for help): d
Selected partition 1
Partition 1 is deleted
3. Neue partition erstellen mit "n"
Command (m for help): n
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p):
"p" drücken für primäre Partition und es erscheint:
Partition number (1-4, default 1):
also "1" für erste Partition.
Danach kommen noch Fragen zu Start- und Endsektor, die man einfach mit "Enter" (Standardvorgabe) erledigen kann...
Jetzt nur noch mit "w" abspeichern.
Formatieren mit Label hdd (Namen vergeben):
Code:
mkfs.ext3 -L hdd /dev/sda1
... und ein paar Minuten abwarten.
Zum Schluss nur noch mit
neustarten und unter Enigma ganz normal mounten (einhängen).
P.S. sollte es schon am Anfang Probleme mit umounten geben, vorerst Enigma2 und alle Prozesse mit
anhalten...
So vorbereitete Festplatte sollte keine Schwierigkeiten mehr bereiten...
Viel Spass...