2012-11-28 15 views
6

Ho appena installato Ubuntu 12.10 e stavo cercando di montare una cartella sul sistema Ubuntu. Così ho usato:smbmount non funziona su Ubuntu 12.10

sudo smbmount <folder> /path/to/my/folder -ouser=<my id>, dom=<my dom> 

ma lo smbmount non è stato trovato ... Tutto quello che ho ora è CIFS-utils.

Il comando precedente funziona in Ubuntu 12.04, ma non in 12.10.

Eventuali suggerimenti?

Thx in anticipo :)

risposta

12

Run questo: -

sudo apt-get install smbfs 

In futuro, se si dispone di un comando che non si trova, è possibile eseguire

apt-file search smbmount 
smbfs: usr/bin/smbmount 

a cercare per il file che ti serve. Naturalmente per installare apt-file, è necessario

sudo apt-get install apt-file 
apt-file update 
+0

Thnx aggiuntivo per la ricerca di file apt! – ton4eg