====== Samba ======
윈도우와 리눅스의 자료를 공유하기 위한 프로토콜
===== 설치 =====
$ sudo apt-get install samba samba-common cifs-utils
$ sudo apt-get install system-config-samba
system-config-samba는 GUI를 통해 삼바를 설정할 수 있는 툴이다. 우분투 14.04부터 지원.
===== 설정 =====
/etc/samba/smb.conf 파일을 수정한다.
다음 부분 확인
usershare allow guests = yes
username map = /etc/samba/smbusers
security = user
===== 사용자 설정 =====
$ sudo smbpasswd -a [USER_ID] // 유저 추가
$ sudo smbpasswd -x [USER_ID] // 유저 삭제
===== 서버 시작 =====
$ service smbd start
===== 참고 =====
* [[http://logon.tistory.com/229|우분투 14.04 삼바 설정]]
* [[http://talkon.tistory.com/34|우분투 삼바서버 설치]]
* [[http://www.samba.org/samba/docs/|삼바 공식 문서]]