You don't want the hard drive to show up in the Finder? I had a similar need in the past, and solved it by adding a line to /etc/fstab
:
LABEL=<disk label> <mount point> ntfs auto,nobrowse
where:
<mount point>
is the directory where you want to mount the hard drive, in your case /Volumes/Elements
. I'd recommend, though, that you mount the drive elsewhere to prevent name collisions, as /Volumes
is used by the Finder to mount removable drives. Let's say you choose /MyVolumes
.
<disk label>
is the hard drive name as it appears in the Finder, I guess Elements
.
So, in your case, the line should read:
LABEL=Elements /MyVolumes/Elements ntfs auto,nobrowse
Now, /etc/fstab
is a system file so care must be taken not to break anything:
Open Applications>Utilities>Terminal.
In Terminal, type:
sudo mkdir -p /MyVolumes/Elements
to create the folder /MyVolumes/Elements
.
Now type:
sudo cp -a /etc/fstab /etc/fstab.bak
sudo cp /etc/fstab ~/Desktop/fstab.txt
sudo chown $(whoami) ~/Desktop/fstab.txt
Type your password when asked.
These commands: 1) create a copy of /etc/fstab
you can fallback to if anything goes wrong, 2) copy /etc/fstab
to your Desktop, 3) change ownership of the copy on your Desktop so that you can edit it.
Switch to the Finder, double click fstab.txt
on your Desktop and add at the bottom of the file (the file is probably empty) the following:
LABEL=Elements /MyVolumes/Elements ntfs auto,nobrowse
Press ⌘S to save the file and ⌘Q to close the editor.
Back to Terminal, type:
sudo mv -f ~/Desktop/fstab.txt /etc/fstab
to overwrite /etc/fstab
with your modified version.
Plug in your drive. Does it work? Great! It doesn't? Something went wrong... type in Terminal:
sudo mv -f /etc/fstab.bak /etc/fstab
to restore the original /etc/fstab
.