Thanks again for your suggestions. By way of overview, some output of the commands I have tried. This is in /etc/fstab:
Code:
# Device Mountpoint FStype Options Dump Pass#
/dev/ad0s1b none swap sw 0 0
/dev/ad0s1a / ufs rw 1 1
/dev/ad0s1e /tmp ufs rw 2 2
/dev/ad0s1f /usr ufs rw 2 2
/dev/ad0s1d /var ufs rw 2 2
/dev/acd0 /cdrom cd9660 ro,noauto 0 0
These are the commands I executed to arrive at the error message:
Code:
# mount the USB flash drive
sysctl vfs.usermount=1
mount_msdosfs /dev/da0s1 /mnt
# mount the iso on /dist
mkdir -p /dist
mdconfig -a -f /usr/FreeBSD/6.2-RC1-i386-disc1.iso
# output at this point is: md0
mount -t cd9660 /dev/md0 /dist
# create BSD slice and apply disklabel
fdisk -BI /dev/da0
bsdlabel -B -w da0s1
# create a filesystem
newfs -U -L FreeBSDonUSB /dev/da0s1a
# error output lead me to initiate this thread
By the way, the USB drive is new and empty.
For unmounting da0, I have the following output:
Code:
[root@athens /dev]# umount /dev/da0
umount: /dev/da0: unknown file system
Not sure where it is going wrong or how it should be corrected. Thanks again in advance