[Samba] CIFS mount

# samba 서버 공유상태 검사
smbclient -L 192.168.1.10 -U '(id)%(password)'

# Armbian
mount -t cifs \
//192.168.1.10/odroid_hc2 \
/storage \
-o rw \
-o username=(id) \
-o password='(password)' \
-o uid=1000 \
-o gid=1000 \
-o iocharset=utf8

# CentOS 7
yum -y install cifs-utils
mount -t cifs \
//10.10.10.2/share \
/mnt \
-o rw \
-o user=(id) \
-o pass='(password)' \
-o vers=1.0 \
-o uid=root \
-o gid=root \
-o iocharset=utf8


위로 스크롤