【CentOS7】開発用仮想マシンに設定するsmb.conf

samba_settingHyper-V上にある仮想マシンのSamba設定ファイルsmb.confの覚書。

環境: CentOS7, Samba 4.4.4

全文はGistに置いた。

今まで使ってたのからoplocksの設定を追記している。

確認してsamba再起動するコマンド
# testparm

[global]
         server string = Samba %v
         workgroup = VM
         log file = /var/log/samba/log.%m
         max log size = 50
         disable spoolss = Yes
         printcap name = /dev/null
         guest account = node
         map to guest = Bad User
         security = USER
         idmap config * : backend = tdb
         level2 oplocks = No
         oplocks = No
         guest ok = Yes
         hosts allow = 127. 192.168.


[opt]
         comment = Option Directory
         path = /opt
         read only = No


[httpd]
         comment = httpd
         path = /home/httpd
         read only = No


# systemctl restart smb
# systemctl restart nmb


< Related Posts >