On Sat, May 28, 2016 at 9:15 AM, Robert Campbell <r...@robert-campbell.com> wrote: >... > # bioctl -c C -l sd0a softraid0 > New passphrase: > Re-type passphrase: > sd3 at scsibus3 targ 1 lun 0: <OPENBSD, SR CRYPTO, 006> SCSI2 0/direct fixed > sd3: 114470MB, 512 bytes/sector, 234435953 sectors > softraid0: CRYPTO volume attached as sd3 > # dd if=/dev/zero of=/dev/rsd3c bs=1m count=1 > uid 0 on /: file system full > > /: write failed, file system is full > dd: /dev/rsd3c: No space left on device > 1+0 records in > 0+0 records out > 0 bytes transferred in 0.007 secs (0 bytes/sec)
The FAQ has another command between the bioctl and the dd...to create the device in /dev. /dev/rsd3c didn't exist when you ran the dd, so instead of opening and writing to a device, you created a normal file named "rsd3c" on the ramdisk, thus the error messages about "file system is full". Philip Guenther