Open up a console and type 'su' to get into root. As root, make a folder you want to mount your usb drive, then make it writable for the user you want to give access:
Code:
#mkidr /mnt/usbdrive
#chown <username> /mnt/usbdrive
then open up your /etc/fstab in a text editor and make sure the line that mounts this drive is correct, if there is none, add it.
Code:
/dev/sda1 /mnt/usbdrive vfat users,defaults,umask=000 0 0
this assumes a) your usb drive is fat32 (ntfs is read only), and b) the device name to your disk is /dev/sda1. Usb hard disks are usually called by this name but you can do 'fdisk -l' to be sure.
You can then issue the command 'mount /mnt/usbdrive' to mount it. Anything you save to this folder will be stored on the usb drive. If you don't want it to automatically mount at boot time, add the line 'noauto' to the options.
regards,
...drkstr