1

Today I bought and mounted my new HDD that I plan to use solely as a storage device. I started with formatting the drive to NTFS filesystem and then proceeded with transferring a couple of GB from an older drive to this new one. Up to this point it all worked without any glitches. But when I disconnected the drive and then connected it again I got this error msg: Error mounting /dev/sdb2 at /media/fz/Red 1TB: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdb2" "/media/fz/Red 1TB"' exited with non-zero exit status 12: NTFS signature is missing.Failed to mount '/dev/sdb2': Invalid argumentThe device '/dev/sdb2' doesn't seem to have a valid NTFS.Maybe the wrong device is used? Or the whole disk instead of apartition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

My questions:

  1. Why did this happen first of all? I safely removed the disk like I have done a million times, so this can't be the reason. But I did start with a slow formatting and aborted it right away when I realized it would take so long and did a quick formatting instead. Could this be the reason? I also changed the name of the disk and then quickly changed it back.

  2. Error mounting /dev/sda2 at /media According to the above page I should be able to resolve this by typing in mount -o ro /dev/sdb2 /media/fz/Red 1TB in the Terminal (ctrl+alt+T). Is this correct? And what should I expect when I enter that command? Do I have to do enter this command every time I disconnect and mount the disk (I use an external HDD reader so I do disconnect/connect disks all the time)?

  3. If I use this command as recommended, what does it mean for my data? Do I have to format the disk and start all over again again or does it just fix it and I can go on as normal?

  4. If I fix this and get access to my data again, what says that I won't run in to the same problem again? Right now I only transferred a couple of GB to the new disk, but if I transferred the intended 1 TB and run in to the same issue later down the line... the hassle with saving so much data will be too hard. So this goes back to the first question posed I guess. Not knowing what caused this issue in the first place is what worries me, I'm not asking for a seer.

I saw some threads/posts from others with the same issue but it seemed to be connected to Windows installations - I have Ubuntu 14.04 LTS. And they don't go in to detail to answer my questions above.

Clarification: I have two disks: a SSD 120 GB with Ext4 filesystem with Ubuntu 14.04 LTS OS and a HDD 1 TB with NTFS (the disk I have issue with now) that I use solely for storing data.

  • Before going deeper on your questions: did you try to fix the NTFS partition (e.g. using ntfsfix)? I remember NTFS is not native (limited only) on Linux, thus issues are around the corner... – mattia.b89 Jan 13 '19 at 11:27
  • Backing up a minute - why did you choose ntfs? – Organic Marble Jan 13 '19 at 12:49
  • Do I just write ntfsfix in Terminal?
  • I used NTFS because it works with "most systems" and thus saw no issue with using it with Ubuntu. Note that this disk is used only for storing data - not OS (which is Ext4). Should I have used Ext4 for such a disk too?
  • – FuriousUser Jan 13 '19 at 16:35
  • @OrganicMarble NTFS partitions are normally used in dual-boot Windows/Ubuntu so that files can be shared. Another example would be to store... say... movie/picture files on a NTFS partition, and then the drive could be disconnected, and connected to a Windows only machine and be used there. – heynnema Jan 14 '19 at 01:21
  • @heynnema, I know, I've done it (but got rid of it as quick as I could). I just wanted to pull at the possibility of using an ext filesystem which, at least in my experience, works a lot better. – Organic Marble Jan 14 '19 at 01:40
  • @FuriousUser if you don't anticipate using this disk in a Windows system I would highly recommend you use ext4 instead. – Organic Marble Jan 14 '19 at 01:41
  • Yes, I will do that, but now the mistake has been done. My main objective now is to save the data I managed to transfer to this new disk before it crashed. Kindly also read my answer to Compatico below for more information. – FuriousUser Jan 14 '19 at 02:10