First partition of your USB drive is /dev/sda1. Second partition maybe is /dev/sda5 (or /dev/sda2?).
Append this to /etc/fstab:
Code:
/dev/sda1 /media/usb_sda1 vfat auto,users,noatime,async,iocharset=utf8,codepage=855,fmask=111,dmask=000 0 0
/dev/sda5 /media/usb_sda5 vfat auto,users,noatime,async,iocharset=utf8,codepage=855,fmask=111,dmask=000 0 0
make directory and mount:
Code:
# mkdir /media/usb_sda1
# mkdir /media/usb_sda5
# mount /media/usb_sda1
# mount /media/usb_sda5
Options „noatime“ and „async“ will extend memory life.
Before removing memory you must type:
Code:
# umount /media/usb_sda1
# umount /media/usb_sda5
If you prefer not edit /etc/fstab:
Code:
# mount /dev/sda1 /media/usb_sda1 -o noatime,async
# mount /dev/sda5 /media/usb_sda5 -o noatime,async