Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

It seems that smbmount is not available in Kubuntu 12.10:

 - neptune():~$ smbmount //192.168.0.100/ samba/ -o rw
smbmount: command not found
 - neptune():~$ apt-file search smbmount
manpages-zh: /usr/share/man/zh_CN/man8/smbmount.8.gz
manpages-zh: /usr/share/man/zh_TW/man8/smbmount.8.gz
 - neptune():~$ aptitude search smbmount
 - neptune():~$

Furthermore, I cannot seem to use smbfs to mount:

 - neptune():~$ sudo mount -t smbfs //192.168.0.100/ samba/ -o rw
mount: unknown filesystem type 'smbfs'
 - neptune():~$ aptitude search smbfs
 - neptune():~$  

Any ideas how to continue?

share|improve this question
Lamentably, the Debian samba package installs a "man samba" page that still talks about smbmount instead of mount.cifs - thanks for the more up-to-date information ! – Edward Welbourne Apr 16 at 15:26

1 Answer

up vote 3 down vote accepted

smbmount has been deprecated in favor of mount.cifs. I want to say "since at least 2008" but I can't find a reference.

Here's the accompanying manpage. You would use these parameters instead:

 sudo mount -t cifs //192.168.0.100/ samba/ -o rw

You might also need to install the cif-utils Install cif-utils package.

share|improve this answer
Thank you Jorge! This works perfect. – dotancohen Dec 26 '12 at 20:52
The package name is cifs-utils. Thanks anyway – Ninsuo May 2 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.