0. samba 설치되어있는지 확인
$ sudo dpkg -l |grep samba
1. Samba 설치
$ sudo apt-get install samba smbfs
2.1. 시스템 사용자 등록(useradd) 및 패스워드 등록 (passwd)
※ samba 접속용 계정과 비밀번호 설정을 하기 전에 반드시 시스템 사용자를 등록 해줘야하는 절차를 거쳐야한다.
$ sudo useradd chpark
$ sudo passwd chpark
Changing password for user chpark
New UNIX password: 패스워드입력
Retype new UNIX password: 패스워드확인
passwd: all authentication tokens updated successfully.
2.1.1 계정관련 파일 확인
$ sudo cat /etc/passwd
2.1.2 계정관련 확인 (해당 id)
$ sudo id chpark
2.2. 공유할 디렉토리에 Samba 접속용 계정과 비밀번호 설정
$ sudo smbpasswd -a chpark
New SMB password: 패스워드입력
Retype new SMB password: 패스워드확인
==========================================================
※ /etc/samba/smb.conf 파일을 설정하기 전에 백업시켜놓자. (설정파일 매우 중요하므로)
# mkdir /chpark/data/bakup
# cp smb.conf /chpark/data/backup
# cd /chpark/data/backup
# mv smb.conf smb.conf.bak
==========================================================
3. 공유 폴더 생성 및 권한 설정
3.1 (공유할) 디렉터리 생성
$ sudo mkdir -p /srv/samba/share
3.2 디렉터리 권한 설정 (change owner)
$ sudo chown nobody:nogroup /srv/samba/share/
4. smb.conf 설정
$ sudo vi /etc/samba/smb.conf
#======================= Global Settings =======================
[global]
## Browsing/Identification ###
# Change this to the workgroup/NT-domain name your Samba server will part of
workgroup = WORKGROUP
# server string is the equivalent of the NT Description field
server string = %h server (Samba, Ubuntu)
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
# wins support = no
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z
; security = user
; encrypt passwords = yes
; smb passwd file = /usr/bin/smbpasswd
# This will prevent nmbd to search for NetBIOS names through DNS.
dns proxy = no
# This will allow access hosts for Using Samba Server
hosts allow = 192.168.71.
// 접근하는 호스트의 ip or 호스트의 네트워크대역
// 상황에 따라서 ~! 71번 네트워크 대역에 있는 호스트에 대하여 전부 허용
#======================= Share Definitions ======================
5. smb.conf 설정 후 반드시 데몬을 재시작해야 설정파일이 반영된다.
$ sudo /etc/init.d/smbd restart
or
$ sudo /etc/init.d/smbd stop 후에 $ /etc/init.d/smbd start
■ 참고 :
https://help.ubuntu.com/lts/serverguide/samba-fileserver.html
■ 참고해볼만한 주소:
http://se.uzoogom.com/120
http://hamonikr.org/board_bFBk25/16679
http://mslee89.tistory.com/71
http://anti1346.egloos.com/v/4863483
'Linux' 카테고리의 다른 글
리눅스 기본사용법 (번외) (0) | 2017.06.23 |
---|---|
Linux Ubuntu 16.04.2 LTS samba(삼바서버) 설치 해보기 (2) (0) | 2017.06.23 |
(30)★ ssh key 를 사용하여 로그인 없이 로그인하기 (0) | 2017.05.16 |
(29)★ rsync - 인터넷을 통한 서버간 동기화 (0) | 2017.05.14 |
(28) 원격제어(ssh) (0) | 2017.05.14 |