原文地址:http://blog.csdn.net/cyuyan112233/article/details/6545374
mount -t cifs //192.168.5.220/softs /mnt/cifs -o username=administrator,password=a,domain=WORKGROUP
mount -t cifs //192.168.6.247/nt_share /mnt/cifs -o username=administrator,password=mima,domain=WORKGROUP
Linux mount CIFS Windows Share
http://hi.baidu.com/chaojkonglong/blog/item/946715efabb891382df53489.html
Linux mount CIFS Windows Share
Q. How do I mount CIFS Windows Server / XP / Vista Shared folder under Linux operating systems?
A. Common Internet File System is an application-level network protocol mainly used to provide shared access to files, printers, serial ports, and miscellaneous communications between nodes on a network. You can easily access CIFS share from Linux and mount them as a regular filesystem.
Mount CIFS with the default local filesystem permissions:
# mkdir /mnt/cifs
# mount -t cifs //server-name/share-name /mnt/cifs -o username=shareuser,password=sharepassword,domain=nixcraft
# mount -t cifs //192.168.101.100/sales /mnt/cifs -o username=shareuser,password=sharepassword,domain=nixcraft
OR
# mount.cifs //192.168.101.100/sales /mnt/cifs -o username=shareuser,password=sharepassword,domain=nixcraft
Where,
another article:http://www.linuxsir.org/main/node/158