본문 바로가기
ubuntu/developement

우분투에 Samba 를 설치하자

by lifeseed 2009. 6. 23.
1. Samba 설치
sudo apt-get install samba smbfs samba-common-bin 명령을 통해서 samba를 설치한다.

sooya@sooya-ls50:~$ sudo apt-get install samba smbfs
...
  samba
...
--------- IMPORTANT INFORMATION FOR XINETD USERS ----------
The following line will be added to your /etc/inetd.conf file:

#<off># netbios-ssn    stream    tcp    nowait    root    /usr/sbin/tcpd    /usr/sbin/smbd

If you are indeed using xinetd, you will have to convert the
above into /etc/xinetd.conf format, and add it manually. See
/usr/share/doc/xinetd/README.Debian for more information.
Suggested entry (automatically converted using itox):

-----------------------------------------------------------

 * Starting Samba daemons                                                [ OK ]

sooya@sooya-ls50:~$


2. 환경 설정
 sudo gedit /etc/samba/smb.conf

[global] 및 [homes] 에 한글 관련 설정 추가
[global]
   dos charset = cp949
   display charset = UTF8
   unix charset = UTF8


#[homes] 를 찾아서 주석 제거, 내용 수정 및 추가
# Home Directory 공유
[homes]
comment = Home Directories
browseable = yes
writable = yes
valid users = %S
create mode = 0644
directory mode = 0775

#  지정 Directory를 공유하고 싶을 경우... ... 제일 아래 부분에 아래 내용 추가 ... ...
# 지정 Directory 공유
[공유이름]
comment = Project Folder
path=/공유디렉토리/위치
writable = yes

#   create mask = 0700              (??)
#   directory mask = 0700          (??)

3. Password 설정
userID 추가::
$ sudo smbpasswd -a userID
기존 userID 의 passwd 수정
$smbpasswd

4. Samba 재시작
/etc/init.d/smbd
-> service라는 명령어를 사용하기를 권장한다.
sooya@sooya-ls50:~$ sudo service smbd stop
smbd stop/waiting
sooya@sooya-ls50:~$ sudo service smbd start
smbd start/running, process 2044
sooya@sooya-ls50:~$


윈도우에서 \\IP_ADDR\ 에 접속하면 project폴더가 보인다. ^^;;;

5. 윈도우 공유 폴더 마운트
1)  기본 명령 (User가 권한을 가지고 한글이 지원가능)
$ sudo mount -t cifs -o uid=<자신의uid>,gid=<자신의gid>,iocharset=utf8,codepage=cp949 //컴퓨터이름/공유이름 /공유할/디렉토리

- cf) ls -n 을 통하여 uid 및 gid 확인 가능함.

2) ID 및 PW 설정이 필요한 경우
$ sudo mount -t cifs -o username=<계정이름>,password=<암호>,uid=<자신의uid>,gid=<자신의gid>,iocharset=utf8,codepage=cp949 //컴퓨터이름/공유이름 /공유할/디렉토리


CF) 프린터 공유 설정
1. Print 설치
2. 공유 설정
[시스템]-[관리]-[인쇄] 에서 프린트 명령 확인    ex) print01
[시스템]-[관리]-[인쇄] 에서 프린트 공유 설정

3. Client PC에서 Network Print 추가
-> PORT :: http://IP_ADDRESS/printers/print01