2.linux samba 客户端访问linux samba 服务器
[root@localhost ~]# smbclient //192.168.10.10/tom -U tom
1.在linux samba客户端手动挂载 把服务器上的共享文件挂到挂载点上
创建挂载点
[root@localhost ~]# mkdir /mnt/smb
[root@localhost ~]# mount -t cifs //192.168.10.10/tom /mnt/smb -o user=tom%123
#%后面是tom的密码
查看如下:
[root@localhost ~]# mount
//192.168.10.10/tom on /mnt/smb type cifs (rw,mand)
[root@localhost ~]# cd /mnt/smb
[root@localhost smb]# ll
总计 4
-rw-r--r-- 1 506 root 9 12-20 02:31 tom.txt 已经挂载上了
2.设置开机启动挂载
[root@localhost ~]# vim /etc/fstab
etc/fstab文件对所有用户可见,用户名和密码不安全。
下面将用户名密码写入一个普通文件,修改其权限,使文件设置为对其他用户不可见。
//192.168.10.10/tom /mnt/smb cifs defaults,credentials=/etc/samba/u1.txt 0 0
创建文件/etc/samba/u1.txt
[root@localhost ~]# vim /etc/samba/u1.txt
username=tom
password=123
修改权限如下:
[root@localhost ~]# chmod 600 /etc/samba/u1.txt
执行命令mount -a 自动挂载文件系统表,或者重启系统
[root@localhost ~]# mount -a
使用mount命令查看是否挂载