linux访问windows共享


假设windows机器上有个共享文件夹"share"ip地址为xxxx,用户名:administrator,密码:0000

则在linux*问"share"文件夹为:


格式一:

mount -t cifs -o username=administrator,password=0000 //xxxx/share /home/win_share


格式二:

mount -t cifs //xxxx/share /home/win_share -o username=administrator,password=0000,iocharset=gb2312


//将windows上的共享文件夹share挂载到linux上的/home/win_share下


本文出自 “点滴记录与你分享” 博客,请务必保留此出处http://xkai20.blog.51cto.com/854040/1563077

linux访问windows共享

上一篇:BZOJ 3675 APIO2014 序列分割 斜率优化


下一篇:C# 接口中能否定义字段?