How to Install and Configure Samba Server? | LetsTalkAbout | Hindi | Linux

Опубликовано: 03 Январь 2022
на канале: LetsTalkAbout
108
5

Hello All, In this video we configure the samba server on ubuntu OS.
Kindly share, subscribe our channel

1. Install Samba packages
#apt install samba*

2. chek your service status

#systemctl status smbd
#systemctl status nmbd

3. start your service
#systemctl start smbd
#systemctl start nmbd

4. Allow samba in local firewall
#ufw allow samba

5. Create user
#adduser user1

6. set samba password to created user
#smbpasswd -a letstalkabout

7. Create New Group
#groupadd letstalkabout

8. add user to the perticular group
#gpasswd -a letstalkabout letstalkabout

9. Creatd Directory that you want to share / may be your existing directory
#mkdir -p /data

10. set permission to group for the directory
#setfacl -R -m "g:letstalkabout:rwx" /data/
Note : if you are not able to execute above command then install below and run above command again
#apt install acl

11. smb file configuration

#vim /etc/samba/smb.conf

[data]

path = /data/
browseable = yes
guest ok = no
writable = yes
valid users = @letstalkabout

12. restart samba servives

#systemctl restart smbd
#systemctl restart smbd


Смотрите видео How to Install and Configure Samba Server? | LetsTalkAbout | Hindi | Linux онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь LetsTalkAbout 03 Январь 2022, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 108 раз и оно понравилось 5 людям.