how to install samba on debian 10 buster
#Before installing Samba, you will need to make sure that your packages are up-to-date with the Debian repositories.
$ sudo apt-get update
# Now that your system is up-to-date, you can run the “apt-get install” command on the “samba” package.
$ sudo apt-get install samba
# When installing Samba, you will be presented with a screen "Samba server and utilities"
# you can select the “No” option. Fore more information take a look at the source link ↓
# After the installation, you can check the version used on your system by running the “samba” command with the “-v” option
$ samba -V
# You can also verify that the Samba server is running by checking the status of the Samba SMB Daemon with systemctl.
$ systemctl status smbd
# Great, Samba is now correctly installed on your Debian server!