| Is it detected in the hardware section? If so this worked for me
First you got to make a mnt point, I think it's
mkdir /mnt/mntName (replace mntName with the name you want)
mount -t vfat /dev/hdb1 /mnt/mntName
there is also a way for permissions, I think it's
mount -t vfat /dev/hdb1 /mnt/mntName -o iocharset=utf8,umask=000
And finally theres a way to mount Permanently, I think if you add this code to the end of /etc/fstab
/dev/hdb1 /mnt/mntName auto defaults 0 0
Where hdb1 is you got to replace it with correct location.
Where vfat is you might need to replace it with ntfs. depending on how you formated the drive.
Any way I hope that works for you, if not I'm sure someone else will help. |