在ubuntu上挂载windows上的共享文件夹的代码格式:
输入
mount -t cifs -o username=*****,password=******* //192.168.3.24/with_ubuntu /mnt/
//192.168.3.24/with_ubuntu 指你要挂载的共享文件夹的具体地址
/mnt/ 指你要将共享文件夹挂载到的目录
-------------------------------------------------------------------
如果出错的话,那就把cifs-client装了再试试看
sudo apt-get install -y cifs-client
谢谢观看