二、另一种实现linux访问windows的共享 linux做客户机 windows做服务器
1.Windows需要共享一个文件,并设置权限,还要创建一个账号,用于登录
2.[root@mail ~]# smbclient -L //192.168.30.100
这个是来宾用户匿名的,需要开启guest账号
3.[root@mail ~]# smbclient -L //192.168.30.100/public -U user1 (用user1登录此smb服务器)
4.使其能够挂载到本地
[root@mail ~]# mount -t cifs //192.168.30.100/public /mnt/hua/ -o username=user1,password="123"
[root@mail ~]# mount (查看挂载的)
//192.168.30.100/public on /mnt/hua type cifs (rw,mand) (已经显示)
5.去实现开机自动挂载到本地
[root@mail ~]# umount /mnt/hua/ (先卸掉原来的)
[root@mail ~]# vim /etc/fstab
[root@mail ~]# mount -a
[root@mail ~]# mount 这样就可以看到了
6.为了安全起见可以再/etc/fstab里不写用户密码而是写到一个文件中去。
7.去创建h.txt,b并输入账号信息就可以了
[root@mail ~]# touch /root/h.txt
[root@mail ~]# chmod 400 /root/h.txt (为了安全)
[root@mail ~]# vim /root/h.txt
[root@mail ~]# mount -a
[root@mail ~]# mount
这样就显示了