挂载:例如,把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
时间: 2024-10-30 15:16:23