ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • samba 계정 추가 및 변경 ~~
    IT_n_Programs 2019. 2. 17. 22:07

    1) 먼저 아래 3가지 package가 설치되어 있어야 한다.

    - samba, cifs-utils, system-config-samba

    2) 환경 설정 -- 아래 경로 파일에 설정을 해 주어야 한다.
    - /etc/samba/smb.conf
    이 파일 제일 마지막 부분에 추가할 내용. 특히, test_home 부분 만 넣으면 됨.

    [hello_home]
    dos charset = cp949
    unix charset = cp949
    netbios name = WEB_SERVER
    comment= Web Server Home
    path=/var/www/
    read only = no
    writable = yes
    printable = no
    public = no
    browsable = yes
    guest ok = no
    create mask = 0770
    directory mask = 0770
    guest account = hello_home

    [test_home]
    dos charset = cp949
    unix charset = cp949
    netbios name = keres User
    comment= keres Home

    path=/home/keres/
    read only = no
    writable = yes
    printable = no
    public = no
    browsable = yes
    guest ok = no
    create mask = 0770
    directory mask = 0770
    valid users = keres
    ; guest account = root

    3) Samba 서비스는 계정 추가.
    root, 와 사용자 계정 2가지가 추가되어야 한다.
    사용자 계정에서 pass word 를 바꾸고 samba 에 진입 못하는 경우가 생긴다. ~~
    samba 서비스를 사용할때는 samba 계정으로 ~~

    === samba 계정 생성
    smbpasswd -a [계정이름]
    ex) smbpasswd -a root

    ==== samba 계정 변경 및 삭제
    smbpasswd -x : 계정 사용자 삭제
    -d 계정 사용자 사용중지.
    ex) smbpasswd -d root

    ==== 작업 후에는 serice restart ~~ 해야 반영됨.
    service smb restart
    service smbd restart : 서비스 이름이 smbd 일 수 있음.
    참고) 잘 안먹는 경우가 많고 그냥 reboot 이 확실 함.
      


    반응형

    'IT_n_Programs' 카테고리의 다른 글

    free, top, linux 명령어  (0) 2019.03.02
    SVN 명령어 (리눅스에서 ~~)  (0) 2019.02.17
    Open source License  (0) 2019.02.17
    Git 명령어 및 사용 법  (0) 2019.02.17
    PC의 HDD/SDD가 포멧이 안될 경우.  (0) 2019.02.06

    댓글

Designed by Tistory.