From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: From: "Russ Cox" To: 9fans@cse.psu.edu Subject: Re: [9fans] disappearing partitions. MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Tue, 14 May 2002 11:48:27 -0400 Topicbox-Message-UUID: 90f674b8-eaca-11e9-9e20-41e7f4b1d025 This code in termrc for(disk in /dev/sd??) { if(test -f $disk/data && test -f $disk/ctl) disk/fdisk -p $disk/data >$disk/ctl >[2]/dev/null for(part in $disk/plan9*) if(test -f $part) disk/prep -p $part >$disk/ctl >[2]/dev/null } is supposed to create the in-memory partition map. Perhaps you are booting a cpu kernel, which is missing the code? Russ