Date: Sun, 28 Mar 2004 10:59:20 +0100 From: Matthew Seaman <m.seaman@infracaninophile.co.uk> To: freebsd-questions@freebsd.org Subject: Re: automounting cd-rom & cd-rw devices Message-ID: <20040328095920.GA33245@happy-idiot-talk.infracaninophile.co.uk> In-Reply-To: <4066871B.8010005@users.sourceforge.net> References: <200403272013.40447.jaymo@cromagnon.cullmail.com> <200403281614.53868.malcolm.kay@internode.on.net> <4066871B.8010005@users.sourceforge.net>
next in thread | previous in thread | raw e-mail | index | archive | help
--1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 28, 2004 at 05:04:43PM +0900, Rob wrote: > Remotely, I was following this discussion; I'm suprised by this solution > and I wonder how I ever would be able to find out myself about this=20 > misterious > sysctl-magic. >=20 > I did 'apropos usermount', 'man sysctl' and 'man sysctl.conf', and all di= d=20 > not > give me any hint to the above vfs.usermount solution. > Also 'sysctl -ad | grep vfs.usermount' outputs no info. >=20 > Actually, I had this feeling with other answers on this list: 'set=20 > this-or-that > sysctl variable'. I never could find any info on my FreeBSD box, to help = me > further understand. >=20 > What is this sysctl-black-magic about and where is more information? You're right that finding which sysctl is required to achieve whatever purpose can be tricky. Finding what sysctls exist is as easy as typing 'sysctl -a', but working out what they actually do -- that's a different story. sysctls are generally documented in man pages which may or may not have a title related to the name of the sysctl. Plus they are usually documented in the *programming* section of the manual, rather than the user or system administration commands sections, whose man pages come up by default if there's more than one page under the same name. Let's take the vfs.usermount sysctl as an example. That is actually documented in mount(2) -- the page describing the mount() (and umount()) syscall, not mount(8) -- the program for mounting partitions. If you type 'man mount' you'll get the mount(8) man page by default. However if you type 'man 2 mount' you find this timeless wisdom hidden within that page: By default only the super-user may call the mount() function. This restriction can be removed by setting the sysctl vfs.usermount to a no= n- zero value. How do I know where vfs.usermount is documented? Only by the rather unsatisfactory means of grepping the whole collection of man pages: % cd /usr/share/man % find . -name '*.gz' -print | xargs zgrep -l vfs.usermount (It would be really nice if the text produced by 'sysctl -d' gave you a reference to the man page(s) where the sysctl was documented.) There is a project underway to create better documentation for sysctls -- see http://lists.freebsd.org/pipermail/freebsd-doc/2004-January/003315.html See also sysctl(3) and the various header files referenced from there. --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAZqH4dtESqEQa7a0RAv5bAJ9my/cVH67ud3rjn2teOTAeeiANxwCaArsf MLUNcINf9XA8CHPDVRIe2W8= =Vt+i -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040328095920.GA33245>