mount: wrong fs type, bad option, bad superblock on //192.168.10.58/test/,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount.<type> helper program)
當出現這個問題的時候,是新版本的軟件包升級了。升級新版本的軟件包即可。
apt-get install cifs-util
mkdir /win
mount -t cifs -o username=zhangsan,passwd=123 //192.168.10.58/test /win
umount /win
fstab掛載方法
//192.168.10.58/test /win cifs default,username=zhangsan,password=123 0 2 (0代表不做備份,2代表fsck做檢查)