SAMBA客户端工具

SAMBA客户端工具

UNC路径: Universal Naming Convention,通用命名规范,格式如下

//sambaserver/sharename

使用smbclient 访问SAMBA服务器

smbclient -L instructor.example.com
smbclient -L instructor.example.com -U  smb用户%password
#可以使用-U选项来指定用户%密码,或通过设置和导出USER和PASSWD环境变量来指定
smbclient  //instructor.example.com/shared -U wang
>cd directory         
>get file1
>put file2
挂载CIFS文件系统

范例:手动挂载

mount -o user=wang,password=magedu //server//shared   /mnt/smb

范例:开机自动挂载

cat /etc/fstab 
#可以用文件代替用户名和密码的输入
//server/homes /mnt cifs credentials或cred=/etc/smb.txt 0 0

cat /etc/smb.txt
username=wang           #或 user=wang
password=password       #或 pass=password

chmod 600 /etc/smb.txt

#此方法需要安装cifs-utils包

本文链接:http://www.yunweipai.com/36004.html

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/52515.html

(0)
上一篇 2021年8月6日
下一篇 2021年8月6日

相关推荐

发表回复

登录后才能评论