Study
Linux(리눅스) samba(삼바) 관련
메디츠
2024. 1. 7. 10:43
반응형
11년 6월 기준
# yum install samba
# rpm -qa | grep samba
samba-3.0.33-3.29.el5_6.2
samba-common-3.0.33-3.29.el5_6.2
samba-client-3.0.33-3.29.el5_6.2
// 설치하면 이렇게 세개가 보임
# vi /etc/samba/smb.conf
workgroup = ITGROUP
security = user
security = share로 변경
hosts allow = 192.168.0.
[data]
comment = Data
path = /data
read only = no
writable = yes
security = share
guest ok = yes
# netbios name is the name you will see in "Network Neighbourhood",
# but defaults to your hostname
; netbios name = <name_of_this_server>
반응형