Falko Jeske wrote:
I wanna mount my fat32-HDs in Linux. I used "mount /hdax -t vfat /home/name/win". But after reboot, i need to mount again. How can i mount permanent?
Edit /etc/fstab as root, e.g.: # gedit /etc/fstab
Then add the following line to fstab (with the correct data of course):
/dev/hdax /home/name/win vfat defaults 0 0
You can mount then with: # mount -a
And it will be mounted at any boot of Fedora automatically.
Regards Markus