1: install the required packages
apt-get install smbclient smbfs samba-common
2: use smdclient to get the remote host's shared fold list
smbclient -L \\remote_host_namenfs
3: use mount command to mount the shared fold to local
mount -t cifs/smbfs -o username=domain_name\\user_name,password='xxx' //remote_host_namenfs/ /mnt
note: add ' ' among password, use shared fold in the shared list got step 2 as the remote fold.