我的centos7是安装在vm虚拟机中笔记本系统windows7
现在想访问windows7中的数据。
实现步骤
1。共享windows7系统中的数据
2。设置挂载点我的是在/mnt/share下
创建目录 touch /mnt/share
3。mount 用法 mount必备的两个参数目录文件,挂载点
mount -t cifs -o username="Administrator",password="***" //192.168.1.117/dir目录 /mnt/share
查看挂载信息 df -h
到此还没有结束重启系统后发现挂载点没了
待续
挂载中遇到问题
[root@localhost /]# mount -t cifs -o username="Administrator",password="" //192.168.1.100/share /mnt/share
mount: 文件系统类型错误、选项错误、//192.168.1.100/share 上有坏超级块、
缺少代码页或助手程序,或其他错误
(对某些文件系统(如 nfs、cifs) 您可能需要
一款 /sbin/mount.<类型> 助手程序)
有些情况下在 syslog 中可以找到一些有用信息- 请尝试
dmesg | tail 这样的命令看看。
网上看了一些解决办法,尝试了没有解决。
[root@localhost /]# mount -t cifs -o username="Administrator",password="123" //192.168.1.100/share /mnt/share
[root@localhost /]# cd ..
[root@localhost /]# ls
bin boot dev etc home lib lib64 media mnt opt proc root run sbin srv sys tmp usr var
[root@localhost /]# cd mnt/share
[root@localhost share]# ls
jdk-7u79-linux-x64.rpm mysql-5.6.30.tar.gz MySQL-server-5.6.22-1.el6.x86_64.rpm
[root@localhost share]#
最后加上开机自动挂载
修改fstab文件 vim /etc/fstab
在文件的末尾加上一行
//192.168.1.101/share /mnt/share cifs username=administrator,password=123 0 0
要保障你的电脑ip地址固定