If you own the directory on which you want to mount a share, you can perform the mount operation yourself. If you do not own the directory, you must perform the mount operation as the owner of the directory or as superuser.
Verify that the network/smb/client service is enabled.
$ svcs network/smb/client STATE STIME FMRI online 19:24:36 svc:/network/smb/client:default |
This service is enabled by default, so the usual state for the service is online. To enable the service, type the following command:
$ svcadm enable network/smb/client |
Find the share that you want to mount from a server.
$ smbutil view //server |
Enter your password at the prompt.
Perform the mount on your directory.
$ mount -F smbfs //[workgroup;][user[:password]@]server/share mount-point |
For example, to mount the /tmp share from the solarsystem server on the /mnt mount point, type:
$ mount -F smbfs //solarsystem/tmp /mnt |