From owner-cvs-all@FreeBSD.ORG Fri Nov 9 19:51:29 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 376AD16A417; Fri, 9 Nov 2007 19:51:29 +0000 (UTC) (envelope-from keramida@freebsd.org) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id B421813C4B3; Fri, 9 Nov 2007 19:51:28 +0000 (UTC) (envelope-from keramida@freebsd.org) Received: from kobe.laptop (vader.bytemobile-rio.ondsl.gr [83.235.57.37]) (authenticated bits=128) by igloo.linux.gr (8.14.1/8.14.1/Debian-9) with ESMTP id lA9JowSG004505 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 9 Nov 2007 21:51:11 +0200 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.1/8.14.1) with ESMTP id lA9Joqdl020947; Fri, 9 Nov 2007 21:50:52 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from keramida@localhost) by kobe.laptop (8.14.1/8.14.1/Submit) id lA9JoqdI020946; Fri, 9 Nov 2007 21:50:52 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Fri, 9 Nov 2007 21:50:52 +0200 From: Giorgos Keramidas To: Pawel Jakub Dawidek , Ruslan Ermilov Message-ID: <20071109195052.GA20808@kobe.laptop> References: <200711091802.lA9I2q5R060293@repoman.freebsd.org> <20071109182623.GA37371@garage.freebsd.pl> <20071109185557.GA19905@kobe.laptop> <20071109192229.GC37371@garage.freebsd.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20071109192229.GC37371@garage.freebsd.pl> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.121, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.28, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@freebsd.org X-Spam-Status: No Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sbin/mdconfig mdconfig.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Nov 2007 19:51:29 -0000 On 2007-11-09 20:22, Pawel Jakub Dawidek wrote: >>> Another trick is to just skip '-t vnode' as it is assumed when -f is >>> used. >> >> Nice to know :) Should I update mdconfig.8 again? I was a bit worried >> about thhe `backquoted command` length, but it seems to fit nicely even >> in console windows. Reducing the line-length a bit more is not strictly >> necessary, but it's worth considering. Unless it would make the example >> more cryptic than useful, I guess :) > > Yeah, that's my concern too. On the other hand it's a nice hint to show > in example. Well, I'll let you decided on that:) The default type of `vnode' is explicitly described in the -f option help. I was just a bit careless when reading the manpage, and expected the description to be near -t type instead of -f file: -f file Filename to use for the vnode type memory disk. Options -a and -t vnode are implied if not specified. We can probably reduce the command-length, but expand the description of the example. How about this change? %%% Index: mdconfig.8 =================================================================== RCS file: /home/ncvs/src/sbin/mdconfig/mdconfig.8,v retrieving revision 1.38 diff -u -r1.38 mdconfig.8 --- mdconfig.8 9 Nov 2007 18:02:51 -0000 1.38 +++ mdconfig.8 9 Nov 2007 19:49:36 -0000 @@ -216,9 +216,15 @@ mount /dev/md0c /mnt .Ed .Pp -To mount an ISO 9660 CD image file: +To mount an ISO 9660 CD image file using the default +.Ar type +of +.Cm vnode , +for the memory disk and the first available +.Xr md 4 +device node: .Bd -literal -offset indent -mount -t cd9660 /dev/`mdconfig -a -t vnode -f cdimage.iso` /mnt +mount -t cd9660 /dev/`mdconfig -a -f cdimage.iso` /mnt .Ed .Sh SEE ALSO .Xr md 4 , %%%