Samba: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
No edit summary
Line 24: Line 24:
=== smb.conf ===
=== smb.conf ===
삼바 설정 파일이다. /etc/samba/smb.conf 에 위치한다.
삼바 설정 파일이다. /etc/samba/smb.conf 에 위치한다.
== Erros ==
=== close_cnum ===
<pre>
Aug  7 21:47:20 raspberrypi smbd[5149]: [2016/08/07 21:47:20.615483,  1] smbd/service.c:1114(make_connection_snum)
Aug  7 21:47:20 raspberrypi smbd[5149]:  mygalaxy (192.168.100.12) connect to service pchero_home initially as user pchero (uid=1001, gid=100) (pid 5149)
Aug  7 21:47:21 raspberrypi smbd[5149]: [2016/08/07 21:47:21.534851,  1] smbd/service.c:1378(close_cnum)
Aug  7 21:47:21 raspberrypi smbd[5149]:  mygalaxy (192.168.100.12) closed connection to service pchero_home
</pre>


== See also ==
== See also ==

Revision as of 19:59, 7 August 2016

Overview

Linux/Windows file system sharing manager Samba 내용 정리

Installation

<source lang=bash> $ sudo apt-get install samba </source>

Configuration

User add

삼바 사용을 위해서는 반드시 사용자를 추가해야 한다. Linux 사용자로 등록되어 있는 사용자만 삼바 이용자로 추가할 수 있다. <source lang=bash> $ sudo smbpasswd -a test_user New SMB password: Retype new SMB password: Added user test_user.

$ sudo smbpasswd -a notExists New SMB password: Retype new SMB password: Failed to add entry for user notExists. </source>

smb.conf

삼바 설정 파일이다. /etc/samba/smb.conf 에 위치한다.

Erros

close_cnum

Aug  7 21:47:20 raspberrypi smbd[5149]: [2016/08/07 21:47:20.615483,  1] smbd/service.c:1114(make_connection_snum)
Aug  7 21:47:20 raspberrypi smbd[5149]:   mygalaxy (192.168.100.12) connect to service pchero_home initially as user pchero (uid=1001, gid=100) (pid 5149)
Aug  7 21:47:21 raspberrypi smbd[5149]: [2016/08/07 21:47:21.534851,  1] smbd/service.c:1378(close_cnum)
Aug  7 21:47:21 raspberrypi smbd[5149]:   mygalaxy (192.168.100.12) closed connection to service pchero_home

See also