Right, and I think I need an entry in the fstab file in /etc.
Been working out what this should be, my current fstab looks like this;
# Entry for /dev/sda2 :
UUID=7f464a30-d8bd-4e80-b646-4fabcd5ff820 / ext3 defaults 1 1
none /proc proc defaults 0 0
none /dev/pts devpts defaults 0 0
Not sure what the "none" specifies?
"none" here means "none device" in fact proc and devpts are virtual filesystems representing kernels structures.
My partition is sda3 and I want to mount it to /media/data
/media in PCLinuxOS is a mountpoint whose use is reserved to auto-mounting utility, like you have seen.
I would suggest a different mountpoint, may be something like
/home/username/dataShould my new entry be the following?
/sda3 /dev/media/data defaults 0 0
or do I have to specify it by UUID?
Derek
the correct syntax for fstab entries, mandatory:
device mountpoint filesystem-type options dump check
Use of UUID or LABEL instead of DEVICE is greatly suggested in case of removable device, because the device may change depending on the order several device could have been plugged in, in you case the partition /dev/sda3 will always remain /dev/sda3, unless you repartition the disk.
Your new fstab entry should like this:
/dev/sda3 /home/username/data ext4 defaults 1 2
only substitute
username with your current username id, and substitute
ext4 with the filesystem type you are using.
About the last two fields:
dump could be used from
dump program, this is really ancient

The flag
check will tell to fsck when automatically run at boot, in which order the filesystems need to be checked,
the important thing is that the root filesystem must be the first (flag = 1), all other follow (flag = 2) or don't need check (flag = 0)