I have Ubuntu 18.04.1 LTS. I have plugged an HDD into my Ubuntu machine through a SATA to USB 3.0 adapter a few days ago. This HDD is formatted with NTFS, its label is "D HDD" and it has some data on it.
This disk is listed by blkid
(/dev/sdk1
) and /proc/mounts
shows a path that points to a location where I can see the files (/media/warden/D HDD
, which indicates that it got automatically mounted there).
Console commands
Even the Explorer-equivalent finds the drive and I can see its files:
Explorer-thingie
So far so good.
But: A program called "Disks" is supposed to show all disks that are attached to the machine. It finds all other disks that are currently attached but it does not find /dev/sdk1
.
Disks
None of the disks in that list are /dev/sdk*
. All other disk are properly found. (/dev/sdj2
as a random example.)
Why?
Interesting point:
The Explorer-thingie also shows another drive with the same label. It claims that its mount point is at /media/nas/D Temp D HDD
.
Explorer-thingie 2
That's actually where it should be according to my script:
mount -o rw,uid=1000,gid=1000 -U C20A3F620A3F52A1 "/media/nas/D Temp D HDD"
But opening that folder and doing ls -la
gives "Input/output error":
Input/output error
But I'm actually not sure whether I ran that script when I plugged the HDD in.
So this might be connected to the problem but I am, for now, just concerned about the fact that the Disks program does not show all disks.