From mboxrd@z Thu Jan 1 00:00:00 1970 Message-Id: <200006131616.MAA14957@smtp3.fas.harvard.edu> To: randolph@cyber-dyne.com, 9fans@cse.psu.edu Subject: Re: [9fans] Beginner question and experiences From: "Russ Cox" Date: Tue, 13 Jun 2000 11:27:10 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: b9d53d12-eac8-11e9-9e20-41e7f4b1d025 If your 9fat partition is not on sdC0, replace /rc/bin/9fat: with the following fixed version, which will be in the next package. --- #!/bin/rc rfork e part=`{ls /dev/sd*/9fat >[2]/dev/null} if(~ $#part 0) { echo 'no 9fat partition found' >[1=2] exit no.9fat } part=$part(1) if(! test -f /srv/dos) dossrv >/dev/null [2]/dev/null unmount /n/9fat >/dev/null >[2]/dev/null mount -c /srv/dos /n/9fat $part --- Russ