个人工具

“UbuntuHelp:MakeFloppyDriveAvailableToEveryone”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/MakeFloppyDriveAvailableToEveryone}}
 
{{From|https://help.ubuntu.com/community/MakeFloppyDriveAvailableToEveryone}}
 
{{Languages|UbuntuHelp:MakeFloppyDriveAvailableToEveryone}}
 
{{Languages|UbuntuHelp:MakeFloppyDriveAvailableToEveryone}}
By default, Edubuntu 5.10 configures the floppy diskette drive (/dev/fd0) so that <br>
+
By default, Edubuntu 5.10 configures the floppy diskette drive (/dev/fd0) so that <<BR>>
 
* Anyone can mount it, but only the user who mounted it can unmount it
 
* Anyone can mount it, but only the user who mounted it can unmount it
 
* Only the user who mounted it can write to it
 
* Only the user who mounted it can write to it
第14行: 第14行:
 
Note that `user` is changed to `users` and the permission masks are specified.  `fmask=111` means for regular files, deny execute permission to all (chmod a-x) and allow all other permissions.  `dmask=000` means for directories, do not deny any permission.
 
Note that `user` is changed to `users` and the permission masks are specified.  `fmask=111` means for regular files, deny execute permission to all (chmod a-x) and allow all other permissions.  `dmask=000` means for directories, do not deny any permission.
 
`man fstab` and `man mount` and `man chmod` for more information.
 
`man fstab` and `man mount` and `man chmod` for more information.
[[category:CategoryDocumentation]]
+
----
 +
[[category:CategoryHardware]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2008年10月19日 (日) 12:50的最新版本

By default, Edubuntu 5.10 configures the floppy diskette drive (/dev/fd0) so that <
>

  • Anyone can mount it, but only the user who mounted it can unmount it
  • Only the user who mounted it can write to it

This document explains how to configure Linux so that anyone can mount, unmount, or write to a floppy diskette without restriction, like some other popular operating systems.

Change the floppy diskette drive entry in /etc/fstab file
sudo nano --nowrap /etc/fstab
from:
/dev/fd0        /media/floppy0  auto    rw,user,noauto  0       0
to

/dev/fd0 /media/floppy0 auto rw,users,noauto,fmask=111,dmask=000 0 0

Note that `user` is changed to `users` and the permission masks are specified. `fmask=111` means for regular files, deny execute permission to all (chmod a-x) and allow all other permissions. `dmask=000` means for directories, do not deny any permission. `man fstab` and `man mount` and `man chmod` for more information.