个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
第5行: 第5行:
 
* Only the user who mounted it can write to 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.
 
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  
+
Change the floppy diskette drive entry in /etc/fstab file <pre><nowiki>
<pre><nowiki>
+
 
sudo nano --nowrap /etc/fstab</nowiki></pre> from:
 
sudo nano --nowrap /etc/fstab</nowiki></pre> from:
 
<pre><nowiki>
 
<pre><nowiki>
 
/dev/fd0        /media/floppy0  auto    rw,user,noauto  0      0
 
/dev/fd0        /media/floppy0  auto    rw,user,noauto  0      0
</nowiki></pre> to  
+
</nowiki></pre> to <pre><nowiki>
<pre><nowiki>
+
 
/dev/fd0        /media/floppy0  auto rw,users,noauto,fmask=111,dmask=000  0  0
 
/dev/fd0        /media/floppy0  auto rw,users,noauto,fmask=111,dmask=000  0  0
 
</nowiki></pre>
 
</nowiki></pre>

2007年12月6日 (四) 10:42的版本

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.