Quote:
|
Originally Posted by RubbeRNL
telnet to the dreambox:
umount /hdd
mkfs.ext3 /dev/ide/host0/bus0/target0/lun0/part1
mount /dev/ide/host0/bus0/target0/lun0/part1 /hdd
mkdir /hdd/movie
|
Yes that should work. Although you may need to do an fdisk before the mkfs.
Only it may be that a format from the image passes some more parameters to the mkfs.ext3 command.
The sources I have at hand here seem to use this:
mkfs.ext3 -T largefile -m0
This is reasonable. Without the -T largefile the filesystem will have a ridiculous number of inodes on large disks. However, that will still work fine.