sambaのインストール.
sambaをインストールします。
[root@www ~]# dnf install samba samba-client samba-common -y
sambaの初期設定.
sambaの設定ファイルをバックアップ。
[root@www ~]# mv /etc/samba/smb.conf /etc/samba/smb.conf.bk
[root@www ~]# vi /etc/samba/smb.conf
[global]
workgroup = WORKGROUP
server string = Samba Server %v
netbios name = fedora
security = user
map to guest = bad user
dns proxy = no
ntlm auth = yes
#==========================================================
[Share]
#共有フォルダ
path = /samba/share/
#マイネットワークに表示の有無
browsable = yes
#書き込み許可
writable = yes
#ゲストユーザのログイン許可
guest ok = yes
#読込みの許可
read only = no
#ファイル属性
force create mode = 0777
#ディレクトリ属性
force directory mode = 0777
root@www:~# mkdir /samba root@www:~# mkdir /samba/share root@www:~# chown nobody:nobody /samba/share root@www:~# chmod 0777 /samba/share
[root@www ~]# systemctl enable --now smb.service [root@www ~]# systemctl enable --now nmb.service
[root@www ~]# reboot
コメント