欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux挂载windows共享

程序员文章站 2022-07-12 21:18:06
...
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