linux系统挂载windows2016共享目录

Posted 宋鹏超

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux系统挂载windows2016共享目录相关的知识,希望对你有一定的参考价值。

一、在windows主机设置共享目录

​1.更改高级共享设置

linux系统挂载windows2016共享目录_共享目录

2.更改以太网属性

linux系统挂载windows2016共享目录_windows共享目录_02

3.重启虚拟机并验证,右键选择共享-->特定用户

linux系统挂载windows2016共享目录_共享目录_03

linux系统挂载windows2016共享目录_共享目录_04

二、在linux系统设置

yum install cifs-utils -y
mkdir /data
mount -t cifs -o username=clouduser,password=Password1! //172.190.113.176/data /data
参数:
//172.190.113.176/data #表示windows主机172.190.113.176的C盘下data目录
username=clouduser #clouduser是windows登陆账号
password=Password1! #Password1!是windows登陆

三、定义开机自动挂载(下面两种方法任选一个)

1、在/etc/fstab里面定义

vim /etc/fstab
//172.190.113.176/data /data cifs defaults,username=clouduser,password=Password1!,sec=ntlmssp 0 0

注意:因为内核版本的问题需要添加参数sec=ntlmssp

2、在/etc/rc.d/rc.local里面定义

vim  /etc/rc.d/rc.local
mount -t cifs -o username=clouduser,password=Password1! //172.190.113.176/data /data

chmod +x /etc/rc.d/rc.local

以上是关于linux系统挂载windows2016共享目录的主要内容,如果未能解决你的问题,请参考以下文章

WIN10旗舰版怎么挂载NFS共享目录

WIN10旗舰版怎么挂载NFS共享目录?

Linux下挂载Windows共享文件

VMware:Windows系统给虚拟机系统共享文件虚拟机里Linux系统挂载共享文件镜像做yum源

如何将linux的文件夹挂载到windows

linux挂载(mount)和取消挂载(umount)windows系统文件夹