FC5,找不到smbmount,mount -t smbfs也不认了
# mount -t smbfs -o username=xxx,password=xxx //hostname/dir /mnt/tmp
mount: unknown filesystem type 'smbfs'
查了一下,Fc5已经没有smbmount了,而fc5的kernel也没有支持smbfs,而改用了Common Internet File Systemcifs(cifs)取代了原有的smbfs,所以命令就改为:
# mount -t cifs -o username=xxx,password=xxx //hostname/dir /mnt/tmp

