1、在windows下(即宿主机)下创建并共享一个文件夹。
2、在linux下创建挂接文件夹:
命令格式:mkdir /mnt/win
3、利用linux中的命令mount实现共享文件夹的挂接
挂接命令为:sudo mount //192.168.0.1/linux /mnt//win
-o username=abc,password= ,dmask=777,fmask=777(此行紧接上行)
其中:
(宿主机)ip:192.168.0.1
(宿主机)共享文件夹:linux
(宿主机)用户名:abc
(宿主机)密码:NULL(表示没有密码)
ubuntu挂接文件夹:/mnt/win
方法/步骤mount -t cifc "windows共享文件夹" "Linux /mnt路径"
i.e. mount -t cifs //16.187.190.60/test /mnt/
Linux 会要求输入访问Windows 共享文件夹上的密码。
注意:
Linux中提示:
Unable to find suitable address.
说明远程共享文件夹路径不存在。请仔细检查,并更正目录路径。
mount -t cifc "windows共享文件夹" "Linux /mnt路径"
i.e. mount -t cifs //16.187.190.50/test /mnt/
注意:
Linux中提示:
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
解决方案:将访问Windows共享目录的用户名和密码直接加入到命令中。
mount -t cifs -o username=WindowsLogin,password="passwordinWindows"
//16.187.190.50/test /mnt/
注意:该命令中,username为windows上的用户;password为window用户对应的密码
步骤3的命令也可以使用以下方式实现:
mount.cifs -o username="Administrator",password="PasswordForWindows" //16.187.190.50/test /mnt/
通过步骤3和步骤4可以成功将windows共享文件夹挂载在/mnt目录下。不过由于mount命令只能由root权限用户使用。其挂载文件夹的默认owner和group都为root,并且不能通过chmod命令更改权限。
使用mount命令,给挂载共享文件夹指定owner和group.
mount.cifs -o username="Administrator",password="PasswordForWindows",uid=Mysa,gid=Mysa //16.187.190.50/test /mnt/
检查/mnt/中文件夹的owner和group。
更改文件夹权限。给mount共享文件夹所在组的写权限。
mount.cifs -o username="Administrator",password="PasswordForWindows",Mysa,gid=Mysa,dir_mode=0777 //16.187.190.50/test /mnt/
泰坦软件挂接方法:泰坦软件电子文件挂接到你打开软件的图标,点击右键,属性,打开文件位置就能找到你安装软件的子目录,然后再向上找到总的软件根目录,然后复制粘贴到其他盘符中就行了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)