2020年5月26日 星期二

[Linux CentOS 7] samba 安裝以及win10登入samba一直出現密碼錯誤問題

$ dnf install samba samba-client samba-common -y
安裝好之後查看這是samba 4.10.4版

修改smb.conf
$ cd /etc/samba
$ cp smb.conf smb.conf.org
$ vi smb.conf

[global]
        workgroup = tiogapass
        security = user
        ntlm auth = true
        passdb backend = tdbsam

[homes]
        comment = Home Directories
        valid users = %S
        browseable = no
        read only = no
其中 ntlm auth = true 這行可以讓win10登入samba的時候不會出現帳號密碼錯誤的訊息

重啟smba service
# systemctl restart smb.service
# systemctl restart nmb.service

設定防火牆

firewall-cmd --permanent --zone=public --add-service=samba
firewall-cmd --zone=public --add-service=samba
完成

沒有留言:

張貼留言

[Ubuntu 14.04] 遠端桌面使用原生ubuntu14.04桌面

方法1:  1. 要先在原始VGA下打開terminal console 2. 輸入     $  gsettings set org.gnome.Vino require-encryption false                                     ...