mount problem

Hi folks!

I have my WD USB external HD pocket drive:
Code:
$ ls /dev/da0s*
/dev/da0s1

When I try to mount, it gives the error:

Code:
$ mount -t msdosfs -o -m=644,-M=755 /dev/da0s1 /mnt/ester
mount_msdosfs: /dev/da0s1: Disk too big, try '-o large' mount option: Invalid argument
$ mount -t msdosfs -o large -m=644,-M=755 /dev/da0s1 /mnt/ester
mount: illegal option -- m

Any suggestions?
 
Here it is -- taking the comma didn't work yet:

Code:
$ mount -t msdosfs -o -m=644 -M=755 /dev/da0s1 /mnt/ester
mount: illegal option -- M
usage: mount [-adflpruvw] [-F fstab] [-o options] [-t ufs | external_type]
       mount [-dfpruvw] special | node
       mount [-dfpruvw] [-o options] [-t ufs | external_type] special node
$ mount -t msdosfs -o large -m=644 -M=755 /dev/da0s1 /mnt/ester
mount: illegal option -- m
usage: mount [-adflpruvw] [-F fstab] [-o options] [-t ufs | external_type]
       mount [-dfpruvw] special | node
       mount [-dfpruvw] [-o options] [-t ufs | external_type] special node
 
Thanks again for the feedback and comments! Here it goes...

Code:
$ mount -t msdosfs -o large -m 644 -M 755 /dev/da0s1 /mnt/ester
mount: illegal option -- m
 
Read the manual page once more, it states that:

Code:
Options that take a value are specified using the -option=value syntax:

      mount -t msdosfs -o -u=fred,-g=wheel /dev/da0s1 /mnt

is equivalent to

      /sbin/mount_msdosfs -u fred -g wheel /dev/da0s1 /mnt
 
Thanks @kpa!

I tried your suggestion:
Code:
# mount -t msdosfs -o -u=ester,-g=wheel /dev/da0s1 /mnt/ester
mount_msdosfs: /dev/da0s1: Disk too big, try '-o large' mount option: Invalid argument

Unfortunately I couldn't find anything in the manual about 'large'.

Sorry guys... for having to ask some hand.
 
Last edited by a moderator:
This should work:

# mount -t msdosfs -o large,-u=ester,-g=wheel /dev/da0s1 /mnt/ester

The "extra" options must be a comma separated list but options that don't take arguments can not have a leading dash, confusing enough?
 
Thanks a lot all comments and supporting feedback.

I usually do my best to first try and google all around before asking. On OpenBSD and Linux, I had never such issues about mounting any usb, large or small.

This time the posted suggestion from KPA works like a charm!
 
Back
Top