% Serveur de fichiers samba # Installation et configuration ## Installation ```bash sudo apt update && sudo apt install -y samba samba-vfs-modules ``` ## Configuration ```conf [global] ## Browsing/Identification ### # Change this to the workgroup/NT-domain name your Samba server will part of workgroup = AEZI #### Debugging/Accounting #### # This tells Samba to use a separate log file for each machine # that connects log file = /var/log/samba/log.%m # Cap the size of the individual log files (in KiB). max log size = 1000 # We want Samba to only log to /var/log/samba/log.{smbd,nmbd}. # Append syslog@1 if you want important messages to be sent to syslog too. logging = file # Do something sensible when Samba crashes: mail the admin a backtrace panic action = /usr/share/samba/panic-action %d ####### Authentication ####### # Server role. Defines in which mode Samba will operate. Possible # values are "standalone server", "member server", "classic primary # domain controller", "classic backup domain controller", "active # directory domain controller". # # Most people will want "standalone server" or "member server". # Running as "active directory domain controller" will require first # running "samba-tool domain provision" to wipe databases and create a # new domain. server role = standalone server obey pam restrictions = yes # This boolean parameter controls whether Samba attempts to sync the Unix # password with the SMB password when the encrypted SMB password in the # passdb is changed. unix password sync = yes # For Unix password sync to work on a Debian GNU/Linux system, the following # parameters must be set (thanks to Ian Kahan < for # sending the correct chat script for the passwd program in Debian Sarge). passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* . # This boolean controls whether PAM will be used for password changes # when requested by an SMB client instead of the program listed in # 'passwd program'. The default is 'no'. pam password change = yes # This option controls how unsuccessful authentication attempts are mapped # to anonymous connections map to guest = bad user #[global] #======== From https://serverfault.com/a/1085863/139286 ======== allow dns updates = disabled client min protocol = SMB3_11 dcerpc endpoint servers = rpcecho delete veto files = Yes disable netbios = Yes disable spoolss = Yes dns forwarder = 192.168.1.1 dns proxy = No enhanced browsing = No # Next line requires catia (needed if no Windows clients?) fruit:encoding = native fruit:metadata = stream # Do not use NFS access control entries fruit:nfs_aces = No # Enable extended attributes (requires streams_xattr) fruit:resource = xattr # Next line is already the default ;fruit:zero_file_id = Yes host msdfs = No inherit acls = Yes inherit permissions = Yes lm announce = No load printers = No log file = /var/log/samba/log.smbd log level = 1 logging = file max log size = 10000 # Next 2 lines defer mDNS config to Avahi (better for icon and Time Machine) mdns name = mdns multicast dns register = No name resolve order = host bcast pam password change = Yes panic action = /usr/share/samba/panic-action %d passwd chat = "*New Password:*" %n\n "*Reenter New Password:*" %n\n "*Password changed.*" passwd program = /usr/bin/passwd %u printcap cache time = 0 printcap name = /dev/null printable = No printing = bsd restrict anonymous = 2 rpc_daemon:spoolssd = disabled rpc_server:epmapper = disabled rpc_server:winreg = disabled rpc_server:lsarpc = disabled rpc_server:samr = disabled rpc_server:netlogon = disabled rpc_server:netdfs = disabled rpc_server:dssetup = disabled rpc_server:wkssvc = disabled rpc_server:spoolss = disabled rpc_server:svcctl = disabled rpc_server:ntsvcs = disabled rpc_server:eventlog = disabled rpc_server:initshutdown = disabled rpc_server:mdssvc = disabled server max protocol = SMB3_11 server min protocol = SMB3_11 # Next line experimental until 4.15 - macOS clients support multi-channel SMB3 server multi channel support = Yes server role = standalone server server services = rpc, smb server string = %h server (Samba , Debian RockPi4B+) show add printer wizard = No smb ports = 445 unix password sync = Yes use sendfile = Yes veto files = /._*/.DS_Store/ vfs objects = catia fruit streams_xattr #======================= Share Definitions ======================= [homes] comment = Home Directories browseable = no # By default, the home directories are exported read-only. Change the # next parameter to 'no' if you want to be able to write to them. read only = yes # File creation mask is set to 0700 for security reasons. If you want to # create files with group=rw permissions, set next parameter to 0775. create mask = 0700 # Directory creation mask is set to 0700 for security reasons. If you want to # create dirs. with group=rw permissions, set next parameter to 0775. directory mask = 0700 # By default, \\server\username shares can be connected to by anyone # with access to the samba server. # The following parameter makes sure that only "username" can connect # to \\server\username # This might need tweaking when using external authentication schemes valid users = %S # Un-comment the following and create the netlogon directory for Domain Logons # (you need to configure Samba to act as a domain controller too.) ;[netlogon] ; comment = Network Logon Service ; path = /home/samba/netlogon ; guest ok = yes ; read only = yes # Un-comment the following and create the profiles directory to store # users profiles (see the "logon path" option above) # (you need to configure Samba to act as a domain controller too.) # The path below should be writable by all users so that their # profile directory may be created the first time they log on ;[profiles] ; comment = Users profiles ; path = /home/samba/profiles ; guest ok = no ; browseable = no ; create mask = 0600 ; directory mask = 0700 ;[printers] ; comment = All Printers ; browseable = no ; path = /var/tmp ; printable = yes ; guest ok = no ; read only = yes ; create mask = 0700 # Windows clients look for this share name as a source of downloadable # printer drivers ;[print$] ; comment = Printer Drivers ; path = /var/lib/samba/printers ; browseable = yes ; read only = yes ; guest ok = no # Uncomment to allow remote administration of Windows print drivers. # You may need to replace 'lpadmin' with the name of the group your # admin users are members of. # Please note that you also need to set appropriate Unix permissions # to the drivers directory for these users to have write rights in it ; write list = root, @lpadmin [toshiba_4_noir] comment = Share to serve path = /path/to/directory/to/serve browseable = yes read only = no guest ok = no spotlight = no veto files = /._*/.DS_Store/ delete veto files = yes writable = yes ``` ## Redémarrage ```bash sudo systemctl enable smbd sudo systemctl restart smbd ```