Fedora core 5的smbclient 的RPM中已經沒有了smbmount這支程式了。事實上,smbmout就等於mount -t smbfs。所以沒有了也無所謂,只是在FC5 kernel 中也沒有將smbfs的support加入。所以,當打入

%mount -t smbfs -o username=xxx.password=xxx //hostname/dir /mnt/dir
mount: unknown filesystem type 'smbfs
就會出現上面的這行訊息

其實,是因為FC5現在改用 Common Internet File Systemcifs(cifs)取代了原有的smbfs,所以指令就必須改成

%mount -t cifs -o username=xxx.password=xxx //hostname/dir /mnt/dir

如果你還是習慣用smbmount,在/root/.bashrc 中加一行

alias smbmount='mount -t cifs'

即可