Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/5/84; site ll1.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxt!houxm!ihnp4!cuae2!ltuxa!ll1!mn From: mn@ll1.UUCP (Mark Nettleingham) Newsgroups: net.unix-wizards Subject: Re: Re: SVR2 Mount Points Message-ID: <423@ll1.UUCP> Date: Wed, 19-Feb-86 07:43:42 EST Article-I.D.: ll1.423 Posted: Wed Feb 19 07:43:42 1986 Date-Received: Fri, 21-Feb-86 05:12:54 EST References: <466@codas.ATT.UUCP> <266@hadron.UUCP> Distribution: net Organization: A.T.&T. Communications, Chicago Lines: 16 > >We use this in the project I'm working on, and someone (who's credibility > >I question) is telling me that this is improper, and causes the system to > >behave irrationally, and that they cannot use it. > We have been using nested file systems for many years on this system and so far haven't had a single problem because of it. The problem of unmounting in sequence during shutdown can be solved by using df instead of mount. Df reports the file systems in reverse order. So the line: df | sed -n -e '/\/tmp /d' -e '/\/ /d' -e 's/^.*(\(.*\)).*/umount \1/p' | sh - will correctly unmount all file systems in a single pass. Note: the above line of code was given to me by Jack Allen of Bell South. Mark Nettleingham ll1!mn