> When I read files off a floppy, they are often all copied with 
> their executable bit set (which is annoying).

You should be able to control this by adding the "noexec" or "exec" 
option to the floppy entry in your /etc/fstab file:

  /dev/fd0  /floppy  auto   noauto,user,noexec 0   0


Or from the command line (as root) :

  umount /floppy
  mount -o noexec /floppy
  ls /floppy 
  umount /floppy
  mount -o exec /floppy
  ls /floppy



__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

_______________________________________________
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to