We have a build system on OSX where we mount a remote volume using:
mount -t smbfs //userid:pwd@srver02/TestDataFiles /Users/Shared/test
We are setting up an Ubuntu 18.04.3 LTS system where we need to mount the same volume. Using the command:
mount -t cifs -o user=userid,pass=pwd //srver02/TestDataFiles /mnt/test
gives an error:
mount error(95): Operation not supported
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
Which isn't very helpful. Yes, I did install the cifs-util package. I've done a lot of searches, finding lots of suggestions for random command line changes, none of which has worked. (vers=1.0 or 2.0 or 3.0, and a few other misc options.)
Is there any way to find out exactly WHAT the command is complaining about? The suggested dup question doesn't help, as I've already tried the various vers settings, and running as root.