Select Page
This entry has been published on 2014-05-20 and may be out of date.

Last Updated on 2014-05-20.

Ubuntu 12.10 distros and above do not support the smbmount command any more to connect to Windows network shares.

Instead, use the “mount” command (run “apt-get cifs-utils” first):

Old:

smbmount //some/remote/dir /mnt/remotedir -o user=”domainnametestuser”,password=”pw”

New:

mount -t cifs //some/remote/dir /mnt/remotedir/ -o username=testuser,domain=domainname,password=pw