Page 1 of 1

How to mount hard disks on F2-NAS2/F2-NAS21/F4-NAS/F4-NAS11?

Posted: 09 Aug 2022, 10:40
by TMzethar
After the device shows that it has entered initialization, it needs to mount the hard disk. The steps are as follows:
1. Shut down and remove all hard disks;
2. Start the empty machine and enter the initialization page;
3. Start the PUTTY program, enter the IP address of the NAS, select "telnet", and click "open";
PUTTY download address:https://dl.terra-master.com/en/NAS/putty.exe
putty.png
4. Enter the user name root and password admin (please note: the password is not displayed, just press Enter after the input is complete)
username.png
username.png (8.88 KiB) Viewed 2339 times
password.png
password.png (17.96 KiB) Viewed 2339 times
5. Keep the N device powered on and insert all hard disks
6. After the hard disk indicator is on, enter the mount command
1) If the hard disk has formed a RAID array, please enter the following command (press Enter after each line)

Code: Select all

mdadm -A /dev/md0 /dev/sd[a-z]2 --force
mdadm -A /dev/md9 /dev/sd[a-z]1 --force
/usr/init.d/userspace
/usr/init.d/dataspace
2) If it is a single mode, and there is only one disk

Code: Select all

mdadm -A /dev/md0 /dev/sda2 --force
mdadm -A /dev/md9 /dev/sda1 --force
/usr/init.d/userspace
/usr/init.d/dataspace
3) If it is single mode, and need to mount two hard disks

Code: Select all

mdadm -A /dev/md0 /dev/sda2 --force
mdadm -A /dev/md0 /dev/sdb2 --force
mdadm -A /dev/md9 /dev/sd[a-z]1 --force
/usr/init.d/userspace
/usr/init.d/dataspace
4) If it is single mode, and need to mount three hard disks

Code: Select all

mdadm -A /dev/md0 /dev/sda2 --force
mdadm -A /dev/md0 /dev/sdb2 --force
mdadm -A /dev/md0 /dev/sdc2 --force
mdadm -A /dev/md9 /dev/sd[a-z]1 --force
/usr/init.d/userspace
/usr/init.d/dataspace
5) If it is single mode, and need to mount four hard disks

Code: Select all

mdadm -A /dev/md0 /dev/sda2 --force
mdadm -A /dev/md0 /dev/sdb2 --force
mdadm -A /dev/md0 /dev/sdc2 --force
mdadm -A /dev/md0 /dev/sdd2 --force
mdadm -A /dev/md9 /dev/sd[a-z]1 --force
/usr/init.d/userspace
/usr/init.d/dataspace
If the above methods cannot successfully mount the hard disk, please replace the host or hard disk!