Quote:
where do i create a directory?
|
You need to be root, then create the directory where your FAT disk will be mounted, then mount the disk, then you can access the files on it.
Try this code:
su -
give the root password
md /mnt/fat
mount -t fat /dev/hdb1 /mnt/fat
cd /mnt/fat
ls
If you can now see your files, all is well and you should do as oneandoneis2 suggests and create an entry in /etc/fstab so normal users can access the disk. The entry will probably look like this:
/dev/hda1 /mnt/fat fat iocharset=iso8859-15,codepage=850,umask=0 0 0
When you reboot, the disk will be mounted automatically for you, and you can access it as a normal user.