环境:windows8.1 with update (IP:192.168.80.135)
centos6.5 最小化安装的系统
步骤:
1.在windows的E盘创建了一个文件夹myhome,在myhome下随便新建一个文件,然后把该文件夹设置共享。windows下如何共享文件夹步骤请自行百度。
2.在linux下安装cifs软件
yum install cifs-utils
3.挂载命令
mount.cifs -o username="administrator",password="111111" //192.168.80.135/myhome /mnt/winF/
4.查看挂载是否成功
[[email protected] winF]# df -h
Filesystem Size Used Avail Use% Mounted on
·······
//192.168.80.135/myhome 248G 101G 148G 41% /mnt/winF
[[email protected] winF]# ls
sadas.txt
[[email protected] winF]# pwd
/mnt/winF
挂载成功,可以访问windows共享文件夹的文件了。
时间: 2024-10-14 02:58:55