Linux挂在windows共享目录命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux挂在windows共享目录命令相关的知识,希望对你有一定的参考价值。
挂载:例如,把windows服务器上的一个共享文件夹,挂载到linux /dev/windows目录下
1、首先在能ping通的windows服务器上建立一个“gongxiang”目录,设置administrator和everyone权限;
2、检查,开始-运行-输入:\\192.168.1.110 能访问到;
3、在linux /mnt 目录下建立一个“windows”目录;
4、在Linux命令行输入:
mount -t cifs -o user=administrator,[email protected] //10.9.3.45/gongxiang /dev/windows/
(或者:mount.cifs -o username="Administrator",password="PasswordForWindows" //10.10.0.192/test /mnt/share)
5、查看是否挂载 “df -h”
卸载:umount /mnt/share
本文出自 “技术大牛帮你搞定” 博客,请务必保留此出处http://zhaoshilei.blog.51cto.com/6455149/1923174
以上是关于Linux挂在windows共享目录命令的主要内容,如果未能解决你的问题,请参考以下文章