uhm no... actually hell noA reboot is required after you make the change to the mtab and fstab.

any edit in /etc/fstab can be effectuated by running the command
Code: Select all
mount -a
Now for helping mpopomeni (read through this completely before you start):
the /etc/fstab and /etc/mtab files are not executables but files you will need to edit (as the root user).
make sure you login as root, and you have the line you need from your /etc/mtab (you can get it with cat /etc/mtab)
Code: Select all
cd /etc
cp fstab fstab.old
vi fstab
/dev/sdb1 /media/sdb1 vfat rw,noexec,nosuid,nodev 1 2
you can do this by pressing Shift+G (to go to the end of the file) and Shift+A in the editor (insert mode at the end of the line), press enter and add the line above. Instead of the "rw,noexec,nosuid,nodev" you could also type the word "defaults"
when you're done press Esc, then ":wq" without the quotes. You should be in your root shell again.
Now unmount the drive you've just entered in /etc/fstab, check if /mnt/sdb1 still exists and mount everything in /etc/fstab again:
Code: Select all
umount /dev/sdb1
ls /media/ <this should list "sdb1", if not, create it like this: mkdir sdb1>
mount -a
If you do get errors copy the fstab.old file back to the original file like this:
Code: Select all
cp /etc/fstab.old /etc/fstab
good luck... it sounds harder than it is
