I have one attached to another Fedora box. It's shared using Samba. It's accessible through normal network browsing. Nothing needed in terms of an /etc/fstab entry. Share the drive by adding something like this to your /etc/samba/smb.conf
Code:
[FreeAgent]
Comment = Witty comment
path = /media/FreeAgent
browseable = yes
writeable = yes
public = yes
Then run
testparm to check the file for errors Next create a password for the user that will access the drive.
Code:
smbpasswd -a (name of user to access the drive)
Restart samba
Code:
/sbin/service smb restart
/sbin/service nmb restart