linux挂载windows共享

1,需要linux内核支持smbfs,需要root权限测试:modprobe smbfs,lsmod|grep smbfs如下显示:
[root@portal /]# lsmod|grep smbfs
smbfs                  44368   5

表示支持smbfs
2,使用mount连接挂栽windows共享文件,
mount -t smbfs -o username=username,password=password //windows_Ip/share /mnt/share


smbmount //windows_Ip/share /mnt/share -o username=windows_name

你可能感兴趣的:(windows,linux)