ok, i'm going to try and help you find your device
but the one thing is, are you sure that your device label is "WD Passport"? spaces are not allowed in device labels
but anyway,
plug ur hd in
go to : /dev/disk/by-label and find the device file (in linux, all devices are represented as files in /dev) with "WD Passport" for a name
it will be a link to another file. don't worry about this
if you can't find it, just go to /dev/disk/by-id
there will be a bunch of crap in this folder, but find the device that has usb- in the begining and ends in -part1
a mount point is a folder where a device's contents are read and placed into that folder.
so if i mount /dev/hda1 (fake) on /mnt/hard, then the contents on /dev/hda1 will replace anything inside /mnt/hard
the best place to mount stuff is /mnt (yeah)
so you can run this from the command line:
mkdir is "make directory" or make a new folder
the -p aurgument means make parent directories, make any folders that aren't there already.
so if you wanted to make a folder in /mnt/hard/good, you would normally have to run mkdir twice, but if you just run mkdir -p /mnt/hard/good, it makes the parent directories that aren't already there
and you can change /mnt/usb to anything you want, maybe you want it to be mounted under /mnt/jackson or something
then, all you need to do is run to mount command:
Code:
mount -t ntfs-3g /dev/disk/by-id/<device> /mnt/usb
replace <device> with the device file you found in /dev/disk/by-id
so if your device in that folder was usb-123456789-part1 (fake), then you can run:
Code:
mount -t ntfs-3g /dev/disk/by-id/usb-123456789-part1 /mnt/usb
assuming that you want to mount at /mnt/usb
good luck,
rabbit2345 ^_^