I want to use my 1TB Hard disk in ubuntu. I have dual-booted Windows And Ubuntu. I can't see D in Ubuntu, in disks
it says unmounted. I'm booting from SSD(C:)

- 1,013
2 Answers
The "disk D" letter you see in Windows isn't a consistent naming. For example, if your "disk D" has another Windows installation and then you boot it, you'll see that your D
became C
, and the former C
turned into D
. If you unplug D
and plug in a new one, it will become the new D
. Etc.
Another thing to note: "disk D" is actually a partition, not a disk.
Linux has similar concept: there are disks /dev/sda
, /dev/sdb
, etc; and then they have partitions sda1
, sda2
, sda3
, etc. Similarly to those in Windows, their names may change, depending on circumstances.
So you need to figure out which disk currently refers to the HDD you wanted (spoiler: if you only have two devices, and your "disk C" has a Linux installation as well, then most likely the "disk D" would be sdb
, and its partitions are sdb1
, sdb2
, etc).
You may do that by looking for your disk implicit or explicit properties. Such as: the disk size — if you only have one disk of certain size, then you know which one you wanted to use. Or by partitions layout. Or by data in those partitions.
Or just execute lsscsi
, which will show you the model names of the disks, so you can figure out which one you want. For example:
λ lsscsi
[0:0:0:0] disk ATA Netac SSD 1TB XKR /dev/sda
[1:0:0:0] cd/dvd PLDS DVD+-RW DU-8A5LH 6D11 /dev/sr0

- 3,702
- 1
- 29
- 36
-
I know his name for
sdb4
but in the output oflsscsi
it callssdb
– Oven Kravecki Nov 05 '22 at 13:39 -
@OvenKravecki right, the
sdb
is a disk name, and thensdb1
,sdb2
,sdb3
,sdb4
are all partitions. I omitted that part in my answer because I presumed that identifying the disk is enough for you, but to eliminate your confusion let me clarify: in WIndows the "disk D" is really not a disk but a partition. So yeah, you want asdbX
withX
being a number, if you want, for example, to retrieve data that is on that "disk D", or whatever you want to do with it. – Hi-Angel Nov 05 '22 at 13:53 -
@OvenKravecki I added a clarification to my post, hopefully now it answers your question. – Hi-Angel Nov 05 '22 at 13:58
Thanks for all help. Console was saying reverse but when i go to disks and when i select the HDD part, in the desription below NTFS — Mounted at /media/username/2224252824250081
clicked that one and realize its already mounted and i can use it as well.
sudo mount /dev/sdb4 /storage -- when i try this (found on google) not allowed:
Mount is denied because the NTFS volume is already exclusively opened. The volume may be already mounted, or another software may use it which could be identified for example by the help of the 'fuser' command.
– Oven Kravecki Nov 05 '22 at 11:33lsblk -f
And then when mounted they will use that label. Better still if internal drive to create mount point & add to fstab to always mounted when you reboot. ` – oldfred Nov 05 '22 at 14:18