perfect.
The disks 2TB seems to be formatted in ntfs. That we will need to change to ext3 but I guess that will be after your return.
Its time consuming to format 4 TB disks.
Ps there is no need to dismount the disk for this we can do it using ssh connecting and the linux available in the firmware.
This will be the commands needed
Change partition type
for each disk to be formatted use fdisk, for example sdb
- Code: Select all
fdisk /dev/sdb
It will repsond with
- Code: Select all
Command (m for help):
type command "t" behind this prompt (without the quotes)
it will ask which partition you want to change type, choose: 1
then choose the right id, in this case choose: 83 ( this is linux type)
then enter the command: "w" (without the quotes to write the new partition table to disk
repeat for the other 3 disks
Now format them
- Code: Select all
mke2fs -j -m 1 /dev/sdb1
mke2fs -j -m 1 /dev/sdc1
mke2fs -j -m 1 /dev/sdd1
mke2fs -j -m 1 /dev/sde1
Note all data (if present on those disks will be erased but I guess these will be empty
ps ntfs is not a linux format and will give a very poor writing performance, it cannot be used for system disk in our firmware on this moment , ext3 format is standard we use in our firmware.