Linux Lite Forums

Hardware - Support => Hard Drives and SSDs => Topic started by: Dookus on August 27, 2018, 04:25:32 AM

Title: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Dookus on August 27, 2018, 04:25:32 AM
Have 2 of these.


https://www.ebay.com.au/p/SATA-IDE-HDD-USB-Dual-Dock-Docking-Station-eSATA-OTB-Hub-Card-Reader-Ds-0026/20020152753?iid=282990245717&chn=ps


Works in Windows 7 & 10.


Whether connected via Esata or USB the entry in thunar for the drive has a spiney thing appear next to it but never loads the contents of a 3.63gb (in real terms) sata drive (WD Green WD40EZRX)


Have updated iscsi and the result is the same.


Cheers.


J
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Jocklad on August 27, 2018, 05:49:30 AM
Have exactly the same Docking station.
Been using it on Linux Lite for last 18 months .
Currently booting LL 4.0 no problems at all.
I am connecting Dock with usb.
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Dookus on August 28, 2018, 05:30:39 AM
Just found out it's any spinning platten drive, thumb drives are the only external media to succesfully mount
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Jerry on August 28, 2018, 05:56:02 AM
Have you tried accessing them via Disks?
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Dookus on August 28, 2018, 06:11:08 AM
Yes, all seems as it should be except the drives entry is in red txt, the drives not set as bootable nor can Drives Mount them, they are all NTFS, have spent some time in gparted with this result on all drives


Could not mount /dev/sdb1 on /mnt/wwn-0x50014ee000d6b090-part1
[/size]
"# mount -v '/dev/sdb1' '/mnt/wwn-0x50014ee000d6b090-part1'
$MFTMirr does not match $MFT (record 24).
Failed to mount '/dev/sdb1': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.
# mount -v -t 'ntfs' '/dev/sdb1' '/mnt/wwn-0x50014ee000d6b090-part1'
$MFTMirr does not match $MFT (record 24).
Failed to mount '/dev/sdb1': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details."


No faults are found when checked in microsoft [/size]chkdsk
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Jerry on August 28, 2018, 10:56:25 AM
Give - https://askubuntu.com/questions/727218/cannot-mount-usb-stick-errors-out-with-mftmirr-does-not-match-mft a go.
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Dookus on August 29, 2018, 12:14:58 AM
A 265gb 2.5" drive was succesfully repaired by disks, the 4tb drive contues as unseable and disks fails to repair, perhaps the error the kernal detects yet Windows does not is something tolerable in Win yet intolerable in Linux.
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Jerry on August 29, 2018, 08:37:00 AM
Did you try the commands at the end of that page?
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Dookus on August 29, 2018, 05:39:48 PM
Drive still unuseable, the scan took 14 hours.

C:\WINDOWS\system32>chkdsk /r e:
The type of the file system is NTFS.
Volume label is 2nd3.63tb green.

Stage 1: Examining basic file system structure ...
  5888 file records processed.
File verification completed.
  62 large file records processed.
  0 bad file records processed.

Stage 2: Examining file name linkage ...
  2492 reparse records processed.
  6082 index entries processed.
Index verification completed.
  0 unindexed files scanned.
  0 unindexed files recovered to lost and found.
  2492 reparse records processed.

Stage 3: Examining security descriptors ...
Security descriptor verification completed.
  98 data files processed.
CHKDSK is verifying Usn Journal...
  12187240 USN bytes processed.
Usn Journal verification completed.

Stage 4: Looking for bad clusters in user file data ...
  5872 files processed.
File data verification completed.

Stage 5: Looking for bad, free clusters ...
  37340647 free clusters processed.
Free space verification is complete.

Windows has scanned the file system and found no problems.
No further action is required.

   3815317 MB total disk space.
1516979968 KB in 3654 files.
      8640 KB in 99 indexes.
         0 KB in bad sectors.
     95615 KB in use by the system.
     65536 KB occupied by the log file.
   2333790 MB available on disk.

     65536 bytes in each allocation unit.
  61045087 total allocation units on disk.
  37340647 allocation units available on disk.

C:\WINDOWS\system32>
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: kpanic on August 29, 2018, 06:00:27 PM
The disk is NTFS formatted, you should format it for Linux (eg. ext4).
If there is some data that you want to save, then use Windows and copy that
data into some other disk (or USB stick for example).

Then connect the drive to Linux and
Open terminal, then:
Code: [Select]
sudo su
Code: [Select]
umount /dev/sdb1 >/dev/null 2>&1; sync; mkfs.ext4 -t ext4 /dev/sdb1
And there you have it...

Unplug it and plug it back, it should work now

Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: kpanic on August 29, 2018, 06:37:32 PM
... from previous post:

If you want both Windows and Linux be able to see/read/write the drive, then format it as FAT
instead of ext4:

Code: [Select]
sync; umount /dev/sdb1 >/dev/null 2>&1; mkfs.vfat -F 32 /dev/sdb1
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Dookus on August 29, 2018, 06:47:42 PM
I will follow the instructions at the end of that page you left a link for and will report the outcome.
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: Dookus on August 29, 2018, 06:51:22 PM
The idea of formatting the drive ext4 even though there are windows drivers for Linux based formats is not what I need, the drive is close to full, I have another identical drive that is almost full, difficult as if I want to retain my data, the idea of Linux was to be an alternative to Windows? am I right? the idea of not being able to use hardware on both platforms makes it less so, at least for me!
Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: kpanic on August 29, 2018, 06:54:52 PM
I will follow the instructions at the end of that page you left a link for and will report the outcome.

Forget the link, this post will be a link too and people will refer to it.
It is funny how people follow instructions more likely when it's linked to some other page in the web
even though the answer is on this very page :)

It may be formatted as FAT, which is suggested if you want to use the drive in both Win and Lin.

Well, I did not know that the drive is full. Then it is not necessarily a good idea to copy it's contents
into a temporary location - but it may instead be necessary to do so

Title: Re: Esata/IDE dock with other USB/Card readers unable to use LL4
Post by: kpanic on August 29, 2018, 07:28:23 PM
The idea of formatting the drive ext4 even though there are windows drivers for Linux based formats is not what I need, the drive is close to full, I have another identical drive that is almost full, difficult as if I want to retain my data, the idea of Linux was to be an alternative to Windows? am I right? the idea of not being able to use hardware on both platforms makes it less so, at least for me!

"The idea of not being able to use hardware on both platforms makes it less so"?

Excuse me, but it is you, who want to use both platforms, am I right?
Then you must make the disk compatible for both platforms. USB connection does not
magically make the proprietary disk un-proprietary.