icodding愛程式 - CentOS 掛載 samba storage

Mounting NAS Storage in Linux

1. 安装 smbclient 和 cifs-utils

yum install -y cifs-utils smbclient

2. 检测连接

smbclient -U USERNAME -L //192.168.1.10

3.挂载

mount -t -o username="USERNAME",password="PASSWORD" cifs //192.168.1.10/ /mnt/nas

4. 查看磁盘空间

df -h

5. 自动挂载

vim /etc/fstab
//192.168.1.10   /mnt  smbfs   defaults   0 0

检测一下

mount -a