I'm a relative BSD newb. I have a small server running OpenBSD 4.4. I'm trying to plug in a 16GB USB flash drive to move some files. I followed the guidance of the Disk Setup documentation, and found the label and filesystem of the desired partition. But when trying to mount the partition, I get the following:
# mount -t ext2fs /dev/sd1i /mnt/flash
mount_ext2fs: /dev/sd1i on /mnt/flash: specified device does not match mounted device
I googled a bit, but nothing I found was particularly helpful. Can anyone shed some light on this message?
Edit:
Additional Info
# disklabel sd1
disklabel: warning, DOS partition table with no valid OpenBSD partition
# /dev/rsd1c:
type: SCSI
disk: SCSI disk
label: SanDisk Ultra
flags:
bytes/sector: 512
sectors/track: 63
tracks/cylinder: 255
sectors/cylinder: 16065
cylinders: 1946
total sectors: 31266816
rpm: 3600
interleave: 1
trackskew: 0
cylinderskew: 0
headswitch: 0 # microseconds
track-to-track seek: 0 # microseconds
drivedata: 0
16 partitions:
# size offset fstype [fsize bsize cpg]
c: 31266816 0 unused 0 0
i: 31262427 63 ext2fs
mount -t auto /dev/sd1i /mnt/flashand see what happens. If it works you can view the fs type of the mounted part. withfdisk -lorblkid– htor Mar 12 '12 at 14:40mount: no mount helper program found for auto: No such file or directory– glibdud Mar 12 '12 at 23:47