系统相关
首页 > 系统相关> > linux挂载 CIFS 文件系统

linux挂载 CIFS 文件系统

作者:互联网

前段时间在linux下面编译安卓程序,目录在windows下面,共享到linux下面的。提示输入/输出错误,不知道什么原因,后来问了同事说要用samba挂载。记录一下挂载的方式和错误的原因。

mount -t cifs -o username=administrator,password=123456 ‘//172.22.50.1/firmware’ '/mnt/share’

将//172.22.50.1/firmware挂载到/mnt/share’上,并指定了用户名和密码。如果不需要认证,可以不指定用户名和密码。
需要先把目录在windows下面开启共享。
unmount /mnt/share
卸载

标签:下面,CIFS,mnt,share,文件系统,linux,挂载,50.1
来源: https://blog.csdn.net/weixin_43866967/article/details/114311712