From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Tue, 18 Jan 2011 08:53:40 -0500 To: 9fans@9fans.net Message-ID: In-Reply-To: <125317bb829b1e9a2afe41e7a8ce02f6@gmail.com> References: <125317bb829b1e9a2afe41e7a8ce02f6@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] how to make hardware work? Topicbox-Message-UUID: 9e607c5a-ead6-11e9-9d60-3106f5b1d025 > And starts usb/disk > > term% ls /dev/*u* > /dev/sdU6.0/ctl > /dev/sdU6.0/data > /dev/sdU6.0/raw > term% cat /dev/sdU6.0/ctl > /dev/usb/ep6.0 lun0: inquiry geometry 1990407 512 > > No partitions. Checked in Linux this one's easy. unlike the braindamage in linux, plan 9 allows you to partition the drive when and if you wish. the kernel doesn't have partition table reading software. you have to partition this disk with d=/dev/sdU6.0 disk/fdisk -p $d/data>$d/ctl for(i in $d/plan9*) disk/prep -p $i>$d/ctl this is all distilled into a script diskparts (sic.). - erik