直接密码
mount -t cifs //192.168.x.x/home /mnt/nfsdir-o username=xxxx,password=xxxx
将密码等信息存储在文件中
# 安装依赖
apt-get install cifs-utils -y
# 创建配置文件
vim /root/nfs.conf
username=xxx
password=xxx
# 手动挂载
mount -t cifs //192.168.x.x/home /mnt/ulsc_nfs_zhangjb -o credentials=/root/nfs.conf
# 使用fstab 开机自动挂载 /etc/fstab
//192.168.x.x/home /mnt/ulsc_nfs_zhangjb cifs credentials=/root/nfs.conf 0 0
# 检查fstab
mount -a