uncategorized

How to mount Windows shares in OpenSolaris

Via http://dlc.sun.com/osol/docs/content/SSMBAG/smbclientusertaskstm.html#mountsharetask

1
mount -F smbfs //[workgroup;][user[:password]@]server/share mount-point

In my case I had to enable smb/client:

1
2
3
pfexec bash
svcadm enable smb/client
mount -F smbfs //192.168.1.221/public /mnt/221
Share