You don't need to put an entry in fstab if you tell the kernel where to mount it. If you make a folder /mnt/usb2 you can mount it there.
mount /dev/sda2 /mnt/usb2
if you want to automatically mount it when you reboot you could put something like this in /etc/fstab, but you might get an error if it's not plugged in when you reboot.
/dev/sda1 /mnt/usb1 ntfs umask=0 0 0
/dev/sda2 /mnt/usb2 ext2 defaults 1 1
I use the supermount patch to allow users to mount removable media. All my USB things (camera, mp3 player, portable hard disk) get mounted on /dev/sda1 so this entry in /etc/fstab catches them all
none /mnt/mp3 supermount dev=/dev/sda1,fs=auto,--, 0 0
|