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

linux 挂载windows共享目录

程序员文章站 2022-07-14 16:14:35
...

1. linux安装cifs依赖包

环境CentOS 7.2

# yum install samba-client samba-common cifs-utils
# mount -t cifs -o username=administrator,password=123456 //192.168.128.154/iso /mnt/


# df -Th
//192.168.128.154/iso   cifs      100G   40G   61G  40% /mnt
挂载成功

参考:
1.Linux - Samba - How to mount/map a Windows Share on Linux