Date: Sun, 12 Jan 2014 14:11:17 GMT From: Keve Nagy <keve@safe-mail.net> To: freebsd-gnats-submit@FreeBSD.org Subject: docs/185686: Two typos in chapter 8 of the faq (disks) Message-ID: <201401121411.s0CEBHCS091477@oldred.freebsd.org> Resent-Message-ID: <201401121420.s0CEK0cl089228@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 185686 >Category: docs >Synopsis: Two typos in chapter 8 of the faq (disks) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-doc >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Jan 12 14:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Keve Nagy >Release: Not applicable >Organization: N/A >Environment: Not applicable >Description: I noticed two typing errors in section 8.20 of the FreeBSD FAQ. "8.20. How do I let ordinary users mount CD-ROMs, DVDs, USB drives, and other removable media?" http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#idp67591856 Typo #1 is in the first example code snippet (the grey rounded box): # Allow all users to mount a USB drive. own /dev/da0 root:operator perm /dev/da00 0666 The "perm" line should refer to "/dev/da0" instead of "/dev/da00", so there is an extra tailing 0 in the device name. Typo #2 is in the brown command block following the above example: % mkdir ~/my-mount-point % mount -t msdosfs /dev/da0~/my-mount-point Here, the "mount" line has one space less than it should. The space between "/dev/da0" and "~/my-mount-point" is missing. >How-To-Repeat: Not applicable. >Fix: Replace the line "perm /dev/da00 0666" with "perm /dev/da0 0666". Replace the line " % mount -t msdosfs /dev/da0~/my-mount-point" with " % mount -t msdosfs /dev/da0~ /my-mount-point" >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401121411.s0CEBHCS091477>