C: #Ifs= 1 Cfg#= 1 Atr=c0 MxPwr=100mA
I: If#= 0 Alt= 0 #EPs= 2 Cls=08(stor.) Sub=06 Prot=50 Driver=usb-storage
this means that the driver is loaded. There must be a reason why mount fails
We can try to mount it manully, which format is used on the disk 9ext3, ntfs, fat32...)
Connect vi ssh server of the nwsp2 (for example using putty) username: root password: giveit2me
at linux command line give command
- Code: Select all
fdisk -l
As this is a 3TB disk fdisk might not be able to read the partiton table.
In that case use
- Code: Select all
gdisk -l /dev/sdb
if it finds sdb besides sda and sdb has at least a 1 partition then we can proceed to try to mount it
create a mount point and mount it
- Code: Select all
mkdir /sdb1
mount /dev/sdb1 /sdb1
if this succeeds than we can trouble shot further, if it fails we need to error message
ps To see which disk are already mounted you can give the command
- Code: Select all
mount