O'Reilly
oreilly.com › openbook › samba › book › ch04_04.html
[Chapter 4] 4.4 Server Configuration
The netbios name option allows you to set the NetBIOS name of the server. For example: ... The default value for this configuration option is the server's hostname; that is, the first part of its complete DNS machine name. For example, a machine with the DNS name ruby.ora.com would be given ...
Samba
samba.org › samba › docs › using_samba › ch06.html
Chapter 6. The Samba Configuration File
Table 6-4 summarizes the server configuration options introduced previously. All three of these options are global in scope, so they must appear in the [global] section of the configuration file. The netbios name option allows you to set the NetBIOS name of the server.
Videos
Samba
samba.org › samba › docs › current › man-html › smb.conf.5.html
smb.conf
Typically the path specified is that of a world-writeable spool directory with the sticky bit set on it. A typical [printers] entry looks like this: [printers] path = /var/tmp guest ok = yes printable = yes · All aliases given for a printer in the printcap file are legitimate printer names as far as the server is concerned.
Samba
samba.org › samba › docs › using_samba › ch07.html
Chapter 7. Name Resolution and Browsing
When set to yes, this option is mutually exclusive with the wins server parameter. Samba will use an existing WINS server on the network if you specify the wins server global option in your configuration file. The value of this option is either the IP address or DNS name (not NetBIOS name) ...
MIT
web.mit.edu › darwin › src › modules › samba › docs › htmldocs › smb.conf.5.html
smb.conf
This option allows smbd to create the required UNIX users ON DEMAND when a user accesses the Samba server. In order to use this option, smbd must be set to security = server or security = domain and add user script must be set to a full pathname for a script that will create a UNIX user given one argument of %u, which expands into the UNIX user name to create.
Linux-training
linux-training.be › servers › ch10.html
Chapter 10. getting started with samba
Server role: ROLE_STANDALONE Press enter to see a dump of your service definitions [global] dos charset = CP850 unix charset = UTF-8 display charset = LOCALE workgroup = WORKGROUP realm = netbios name = TEACHER0 netbios aliases = netbios scope = server string = Samba 3.0.28-1.el5_2.1 ... There were about 350 default values for smb.conf parameters in Samba 3.0.x. This number grew to almost 400 in Samba 3.5.x. The samba daemons are constantly (once every 60 seconds) checking the smb.conf file, so it is good practice to keep this file small. But it is also good practice to document your samba configuration, and to explicitly set options that have the same default values.
Samba
samba.org › samba › docs › using_samba › appa.html
Appendix A. Example Configuration Files
Here is a configuration file that does this: [global] # replace "mixtec" with your system's hostname netbios name = mixtec # replace "METRAN" with your workgroup name workgroup = METRAN security = user encrypt passwords = yes # Replace "172.16.1.1" with the IP address # of your WINS server. If there is none, # omit this line. wins server = 172.16.1.1 # The OS level is set to 17 to allow # this system to win over all Windows # versions, but not the Samba server # that uses the configuration file # in the previous section.
Debian
debian-handbook.info › browse › squeeze › sect.windows-file-server-with-samba.html
11.5. Setting Up Windows Shares with Samba
The requirements at Falcot require other options to be modified in the /etc/samba/smb.conf configuration file. The following excerpts summarize the changes that were effected in the [global] section. [global] ## Browsing/Identification ### # Change this to the workgroup/NT-domain name your Samba server will part of workgroup = FALCOTNET # server string is the equivalent of the NT Description field server string = %h server (Samba %v) # Windows Internet Name Serving Support Section: # WINS Support - Tells the NMBD component of Samba to enable its WINS Server wins support = yes [...] ####### Authentication ####### # "security = user" is always a good idea.
Samba
samba.org › samba › docs › using_samba › appb.html
Appendix B. Samba Configuration Option Quick Reference
The command is passed the name of the Samba configuration file, the name of the share to be modified, the full pathname of a directory on the Samba server (which must already exist), and a string to use as a comment for the share, in that order. The command modifies the share definition for the share in smb.conf. See also add share command and delete share command. Allowable values: ISO8859-1, ISO8859-2, ISO8859-5, KOI8-R ... If set, translates from DOS code pages to the Western European (ISO8859-1), Eastern European (ISO8859-2), Russian Cyrillic (ISO8859-5), or Alternate Russian (KOI8-R) character set.
ArchWiki
wiki.archlinux.org › title › Samba
Samba - ArchWiki
May 26, 2026 - Note smbtree uses SMB1 and NetBIOS, which means they must be enabled on the servers and you need to set client min protocol = NT1 in smb.conf on the client. Otherwise, smbtree will show empty output. Samba clients handle NetBIOS host names automatically by default (the behavior is controlled by the name resolve order option in smb.conf).
Red Hat
docs.redhat.com › en › documentation › red_hat_enterprise_linux › 4 › html › reference_guide › s1-samba-servers
14.3. Samba Server Types and the smb.conf File | Reference Guide | Red Hat Enterprise Linux | 4 | Red Hat Documentation
[global] workgroup = DOCS netbios name = DOCS_SRV security = share [data] comment = Data path = /export force user = docsbot force group = users read only = No guest ok = Yes · The following smb.conf file shows a sample configuration needed to implement an anonymous print server. Setting browseable to no as shown does not list the printer in Windows Network Neighborhood.
Calculate Linux
wiki.calculate-linux.org › configuration_of_samba_server
Настройка Samba сервера - Calculate Wiki
January 14, 2020 - -n name sets the NetBIOS name for the Samba server.
Samba
samba.org › samba › docs › using_samba › ch03.html
Samba
To give your system computer a name and a workgroup, click the Properties button, which will bring up the Identification Changes dialog box, as in Figure 3-40. You need to identify your computer with a name and change the workgroup to the one you specified in the smb.conf file of your Samba server.
The Linux Documentation Project
tldp.org › HOWTO › SMB-HOWTO-6.html
SMB HOWTO: General Configuration (/etc/smb.conf)
; /etc/smb.conf ; ; Make sure and restart the server after making changes to this file, ex: ; /etc/rc.d/init.d/smb stop ; /etc/rc.d/init.d/smb start [global] ; Uncomment this if you want a guest account ; guest account = nobody log file = /var/log/samba-log.%m lock directory = /var/lock/samba share modes = yes [homes] comment = Home Directories browseable = no read only = no create mode = 0750 [tmp] comment = Temporary file space path = /tmp read only = no public = yes
O'Reilly
oreilly.com › library › view › using-samba-3rd › 0596007698 › ch04.html
4. The Samba Configuration File - Using Samba, 3rd Edition [Book]
January 23, 2007 - In the beginning, Samba servers were managed solely by a text configuration file named smb.conf. Today settings are mixed between the smb.conf file and local database files in /usr/local/samba/var/locks (or the location specified by the lock directory setting in smb.conf).
Authors Gerald CarterJay Ts…
Published 2007
Pages 450
Red Hat
docs.redhat.com › en › documentation › red_hat_enterprise_linux › 5 › html › deployment_guide › s1-samba-configuring
22.4. Configuring a Samba Server | Deployment Guide | Red Hat Enterprise Linux | 5 | Red Hat Documentation
Using a Samba server as a domain member in an ADS realm assumes proper configuration of Kerberos, including the /etc/krb5.conf file. Domain — The Samba server relies on a Windows NT Primary or Backup Domain Controller to verify the user. The server passes the username and password to the Controller and waits for it to return. Specify the NetBIOS name of the Primary or Backup Domain Controller in the Authentication Server field. The Encrypted Passwords option must be set to Yes if this is selected.
DigitalOcean
digitalocean.com › community › tutorials › how-to-set-up-a-samba-share-for-a-small-organization-on-ubuntu-16-04
How To Set Up a Samba Share For A Small Organization on Ubuntu 16.04 | DigitalOcean
May 11, 2018 - The [global] section of this file will define the server’s name, role, and other details, including network interfaces: ... your_network_interface bind interfaces only = yes disable netbios = yes smb ports = 445 log file = /var/log/samba/smb.log max log size = 10000
SUSE
documentation.suse.com › sles › 15-SP6 › html › SLES-all › cha-samba.html
Samba | Storage Administration Guide | SLES 15 SP6
March 30, 2026 - You can change all settings later in the Samba Configuration dialog with the Start-Up, Shares, Identity, Trusted Domains, and LDAP Settings tabs. On clients running current versions of SUSE Linux Enterprise Server or other recent Linux versions, the insecure SMB1/CIFS protocol is disabled by default.
Red Hat
docs.redhat.com › en › documentation › red_hat_enterprise_linux › 5 › html › deployment_guide › s1-samba-servers
22.6. Samba Server Types and the smb.conf File | Deployment Guide | Red Hat Enterprise Linux | 5 | Red Hat Documentation
[global] workgroup = DOCS netbios name = DOCS_SRV security = share [data] comment = Documentation Samba Server path = /export read only = Yes guest only = Yes · The following smb.conf file shows a sample configuration needed to implement anonymous read/write file sharing. To enable anonymous read/write file sharing, set the read only directive to no.