# Samba 설치
yum install samba* -y
# samba, samba-client Package 가 설치 되어야 한다.
service smb start|stop
chkconfig --list smb
chkconfig smb on|off
# 설정파일
/etc/samba/smb.conf
# 현재 공유 중인 디렉토리 열람
smbclient -L hostname
smbclient -L hostname -U username%password
# 원하는 디렉토리에 연결
smbclient //hostname/directoryPath -U username%password
# fstab에 등록
vim /etc/fstab
1)
//hostname/dirPath /mountpoint cifs user=username, pass=password 0 0
2)
vim /dirPaht/credentials # credentials 는 계정 정보를 담은 파일명
user=username
pass=password
//hostname/dirPath /mountpoint cifs credentials=credentialsPath 0 0
# Samba Account 생성
useradd -s /sbin/nologin username
# Samba 전용 Password 생성
smbpasswd -a username
reference
Samba
http://www.samba.org/samba/what_is_samba.html
http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Managing_Confined_Services/chap-Managing_Confined_Services-Samba.html