I bought a brand new 3TB external drive for my birthday coming up, It's a WD My Book, it came as NTFS, and I'm trying to make it mount using a simple script on boot. (Not /etc/fstab
, I ruined my comp. using that by accident and had to re-install).
I'm instead having a script run in /etc/init.d
. The thing is, it's under /dev/sdf
and I want it to mount in /exhd
, the script seems to run, but it doesn't mount it.
Any help here, please?
/dev/sdf
refers to the entire disk as a single file. It will fail to mount because it does not point to the beginning of a partition with FS information. The OS automatically reads the partition table of/dev/sdf
to determine the number/location of partitions and populates them as/dev/sdfX
. More Info – crasic Jun 10 '14 at 16:10