Is your drive a local drive or a network drive?
I have managed to mount my windows data drive (which is a local drive automatically) but my network drive is proving more stuborn.
To mount my local drive I first made a directory in media.
cd /media
mkdir WinXP
I then found out my UUID for my local drive:
sudo blkid - [See
http://www.cyberciti.biz/faq/linux-find ... ate-fstab/]
Edit your fstab file:
sudo gedit /etc/fstab
At the end of the file:
# Mount Windows Data drive on boot up
UUID=6E7025137024E415 /media/WinXP ntfs-3g defaults,windows_names,locale=en_GB.UTF-8 0 0
UUID is the unique id for the volume you would like to mount
/media/WinXP is the place you would like to mount the windows drive
ntfs-3g is the NTFS file system
locale is your local language set.
Hope that helps a bit.
For network drives I can get:
//192.168.0.103/drive1/usr /mnt/NASdrive1 cifs credentials=/home/usr/Documents/.NASdrive.txt,iocharset=utf8, 0 0
//server name or address/directory you want to mount
/mnt/NASdrive1 is the where I am mounting the network drive
cifs is the file system
credentials are the username, password and domain name I need to passover to the NAS drive [you can use -o username=YourName,password=YourPassword] Not keen on the latter as your username and password are in your fstab file for people to see
But I get an Input / output error which I can't understand. So it is not complete but I hope to get it sorted because without it I don't have all my data to work with. Hence late nights and early mornings.
Hope some of this helps you and best of luck. Maybe someone with more knowledge could shed more light, if this is not very helpful.