> does anyone know of a way that I can accomplish what I want to?
> 
> Thanks
> Paul

Yep!

sudo nano /etc/fstab

In that file, put a line with the following info:

/dev/sda2       /media/disk     <fstype>        defaults        0 0

....where <fstype> is something like vfat, ntfs, ext2, ext3, ext4,
hfsplus, and the like. There is a full list in the description of the
'-t' option in the man page for mount(8).

Another tidbit: It's not advised that you put /dev links in the fstab
file. If you want a more permanent option, run the command

ls -l /dev/disks/by-uuid

and find the UUID that links to /dev/sda2. Then, in the fstab line,
instead of "/dev/sda2", put "UUID=<uuid>" where <uuid> is the huge hex
number you found.

Good luck!

-- 
MarkTraceur
marktrac...@gmail.com

_______________________________________________
LinuxUsers mailing list
LinuxUsers@socallinux.org
http://socallinux.org/cgi-bin/mailman/listinfo/linuxusers

Reply via email to