From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Mon, 23 Dec 2013 01:03:31 +0100 From: cinap_lenrek@felloff.net To: 9fans@9fans.net In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] 9Front network (driver?) issue Topicbox-Message-UUID: a4d75c96-ead8-11e9-9d60-3106f5b1d025 thats strange. when you plug in the drive, the nusbrc script started the usb disk filesystem and run that fdisk command to register the partitions. for some reason, the partitions step failed. but when you run it manually later it wored. the drive might be sensitive to the timing? can you pull and replug the drive and see if there are any error messages on the console? as a work arround for now, you can try doing this manually: diskparts /dev/sdU6.0 dossrv mount -c /srv/dos /n/usb /dev/sdU6.0/dos cd /n/usb the dos filesystem does not do write buffering so there is no need to flush. (see dossrv(4)) mounts are local to the namespace. you can remove something from the namespace with the unmount command (see bind(1)) or you just close the whole namespace (close the rio window). for documentation on formating and partitioning disks see prep(8). -- cinap