%general-entities; ]> $Date$ Samba-&samba-version; Samba Introduction to Samba The Samba package provides file and print services to SMB/CIFS clients and Windows networking to Linux clients. Samba can also be configured as a Windows Domain Controller replacement, a file/print server acting as a member of a Windows Active Directory domain and a NetBIOS (rfc1001/1002) nameserver (which among other things provides LAN browsing support). &lfs101_checked; Package Information Download (HTTP): Download (FTP): Download MD5 sum: &samba-md5sum; Download size: &samba-size; Estimated disk space required: &samba-buildsize; Estimated build time: &samba-time; Samba Dependencies Required , , , , and Recommended (for vfs_snapper, which is useful on systems that support Volume Shadow Copies on Windows), , , , , (for documentation), , , and Optional , , , , , , (required for ADS and testsuite), , , , , , , , , (included), , (optionally used by the test suite), , cmocka, cryptography, ctdb (included), cwrap, dnspython, FAM, Gamin, GlusterFS, Heimdal (included), iso8601, libunwind, ldb (included), M2Crypto (required for ADS), OpenAFS, pyasn1, PyGPGME (recommended for ADS), tevent (included), and tdb (included) Optional (for the Developer Test Suite) Install in listed order: , argparse, extras, py, enum34, hypothesis, pytest, coverage, pytest-cov, doctools, unittest2, testtools, fixtures, python-mimeparse, contextlib2, traceback2, linecache2, testscenarios, testresources, virtualenv, pbr, and python-subunit User Notes: Installation of Samba To support the test suite, set up a Python virtual environment for some Python modules out of the scope of BLFS: python3 -m venv pyvenv && ./pyvenv/bin/pip3 install cryptography pyasn1 iso8601 Fix a test that always fails: echo "^samba4.rpc.echo.*on.*ncacn_np.*with.*object.*nt4_dc" >> selftest/knownfail Install Samba by running the following commands: PYTHON=$PWD/pyvenv/bin/python3 \ CPPFLAGS="-I/usr/include/tirpc" \ LDFLAGS="-ltirpc" \ PATH=$PWD/pyvenv/bin:$PATH \ ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --with-piddir=/run/samba \ --with-pammodulesdir=/usr/lib/security \ --enable-fhs \ --without-ad-dc \ --without-systemd \ --enable-selftest && make PYTHON=$PWD/pyvenv/bin/python3 \ CPPFLAGS="-I/usr/include/tirpc" \ LDFLAGS="-ltirpc" \ ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --with-piddir=/run/samba \ --with-pammodulesdir=/usr/lib/security \ --enable-fhs \ --without-ad-dc \ --enable-selftest && make To test the results, as the root user, issue: PATH=$PWD/pyvenv/bin:$PATH make quicktest. The test suite will produce lines that look like failures, but these are innocuous. The last few lines of output should report "ALL OK" for a good test run. A summary of any failures can be found in ./st/summary. With Samba-4.14.4, many tests are known to fail. Additionally, developer test suites are available. If you've installed the optional python modules above in the Python virtual environment for building this package, you can run these tests with make test. It is not recommended for the average builder at around 290 SBU and over a gigabyte of disk space, and you should expect ~73 errors and ~30 failures from the 3000+ tests. Fix a hard coded path to Python 3 interpreter: sed '1s@^.*$@#!/usr/bin/python3@' \ -i ./bin/default/source4/scripting/bin/samba-gpupdate.inst If upgrading from an old version of samba, as the root user, remove the old Python support files to prevent some issues: rm -rf /usr/lib/python&python3-majorver;/site-packages/samba Still as the root user, install the package: make install && install -v -m644 examples/smb.conf.default /etc/samba && mkdir -pv /etc/openldap/schema && install -v -m644 examples/LDAP/README \ /etc/openldap/schema/README.LDAP && install -v -m644 examples/LDAP/samba* \ /etc/openldap/schema && install -v -m755 examples/LDAP/{get*,ol*} \ /etc/openldap/schema Command Explanations --enable-fhs: Assigns all other file paths in a manner compliant with the Filesystem Hierarchy Standard (FHS). --without-systemd: Disable systemd integration, since it is not built in the System V version of LFS/BLFS. --without-ad-dc: Disables Active Directory Domain Controller functionality. See Setup a Samba Active Directory Domain Controller for detailed information. Remove this switch if you've installed the Python modules needed for ADS support. Note that BLFS does not provide a samba bootscript or systemd unit for an Active Directory domain controller. : This option specifies the test suite work directory (default=./st). install -v -m644 examples/LDAP/* /etc/openldap/schema: These commands are used to copy sample Samba schemas to the OpenLDAP schema directory. install -v -m644 ../examples/smb.conf.default /etc/samba: This copies a default smb.conf file into /etc/samba. This sample configuration will not work until you copy it to /etc/samba/smb.conf and make the appropriate changes for your installation. See the configuration section for minimum values which must be set. Configuring Samba Config Files /etc/samba/smb.conf /etc/samba/smb.conf Printing to SMB Clients If you use CUPS for print services, and you wish to print to a printer attached to an SMB client, you need to create an SMB backend device. To create the device, issue the following command as the root user: install -dvm 755 /usr/lib/cups/backend && ln -v -sf /usr/bin/smbspool /usr/lib/cups/backend/smb Configuration Information Due to the complexity and the many various uses for Samba, complete configuration for all the package's capabilities is well beyond the scope of the BLFS book. This section provides instructions to configure the /etc/samba/smb.conf file for two common scenarios. The complete contents of /etc/samba/smb.conf will depend on the purpose of Samba installation. You may find it easier to copy the configuration parameters shown below into an empty /etc/samba/smb.conf file instead of copying and editing the default file as mentioned in the Command Explanations section. How you create/edit the /etc/samba/smb.conf file will be left up to you. Do ensure the file is only writeable by the root user (mode 644). Scenario 1: Minimal Standalone Client-Only Installation Choose this variant if you only want to transfer files using smbclient, mount Windows shares and print to Windows printers, and don't want to share your files and printers to Windows machines. A /etc/samba/smb.conf file with the following three parameters is sufficient: [global] workgroup = MYGROUP dos charset = cp850 unix charset = ISO-8859-1 The values in this example specify that the computer belongs to a Windows workgroup named MYGROUP, uses the cp850 character set on the wire when talking to MS-DOS and MS Windows 9x, and that the filenames are stored in the ISO-8859-1 encoding on the disk. Adjust these values appropriately for your installation. The unix charset value must be the same as the output of locale charmap when executed with the LANG variable set to your preferred locale, otherwise the ls command may not display correct filenames of downloaded files. There is no need to run any Samba servers in this scenario, thus you don't need to install the provided bootscripts. systemd units. Scenario 2: Standalone File/Print Server Choose this variant if you want to share your files and printers to Windows machines in your workgroup in addition to the capabilities described in Scenario 1. In this case, the /etc/samba/smb.conf.default file may be a good template to start from. Also, you should add the dos charset and unix charset parameters to the [global] section as described in Scenario 1 in order to prevent filename corruption. For security reasons, you may wish to define path = /home/alice/shared-files, assuming your user name is alice and you only want to share the files in that directory, instead of your entire home. Then, replace homes by shared-files and change also the comment if used the configuration file below or the /etc/samba/smb.conf.default to create yours. The following configuration file creates a separate share for each user's home directory and also makes all printers available to Windows machines: [global] workgroup = MYGROUP dos charset = cp850 unix charset = ISO-8859-1 [homes] comment = Home Directories browseable = no writable = yes [printers] comment = All Printers path = /var/spool/samba browseable = no guest ok = no printable = yes Other parameters you may wish to customize in the [global] section include: server string = security = hosts allow = load printers = log file = max log size = socket options = local master = Reference the comments in the /etc/samba/smb.conf.default file for information regarding these parameters. Since the smbd and nmbd daemons are needed in this case, install the samba bootscript. systemd unit. Be sure to run smbpasswd (with the option to add users) to enable and set passwords for all accounts that need Samba access. Using the default Samba passdb backend, any user you attempt to add will also be required to exist in the /etc/passwd file. Advanced Requirements More complex scenarios involving domain control or membership are possible. Such setups are advanced topics and cannot be adequately covered in BLFS. Many complete books have been written on these topics alone. Note that in some domain membership scenarios, the winbindd daemon and the corresponding bootscript systemd unit are needed. Guest account The default Samba installation uses the nobody user for guest access to the server. This can be overridden by setting the parameter in the /etc/samba/smb.conf file. If you utilize the parameter, ensure this user exists in the /etc/passwd file. Boot Script For your convenience, boot scripts have been provided for Samba. There are two included in the package. The first, samba, will start the smbd and nmbd daemons needed to provide SMB/CIFS services. The second script, winbind, starts the winbindd daemon, used for providing Windows domain services to Linux clients. samba winbind make install-samba make install-winbindd Systemd Units To start the Samba daemons at boot, install the systemd units from the package by running the following command as the root user: samba make install-samba To start the winbindd daemon at boot, install the systemd unit from the package by running the following command as the root user: winbindd make install-winbindd This package comes with two types of units: A service file and a socket file. The service file will start the smbd daemon once at boot and it will keep running until the system shuts down. The socket file will make systemd listen on the smbd port (Default 445, needs to be edited for anything else) and will start the smbd daemon when something tries to connect to that port and stop the daemon when the connection is terminated. This is called socket activation and is analogous to using {,x}inetd on a SysVinit based system. By default, the first method is used - the smbd daemon is started at boot and stopped at shutdown. If the socket method is desired, you need to run the following commands as the root user: systemctl stop smbd && systemctl disable smbd && systemctl enable smbd.socket && systemctl start smbd.socket Note that only the smbd daemon can be socket activated. Contents Installed Programs Installed Libraries Installed Directories cifsdd, dbwrap_tool, dumpmscat, eventlogadm, findsmb,gentest, ldbadd, ldbdel, ldbedit, ldbmodify, ldbrename, ldbsearch, locktest, masktest, mdfind, mvxattr, ndrdump, net, nmbd, nmblookup, ntlm_auth, oLschema2ldif, pdbedit, profiles, regdiff, regpatch, regshell, regtree, rpcclient, samba, samba_dnsupdate, samba_downgrade_db, samba_kcc, samba-gpupdate, samba-regedit, samba_spnupdate, samba-tool, samba_upgradedns, sharesec, smbcacls, smbclient, smbcontrol, smbcquotas, smbd, smbget, smbpasswd, smbspool, smbstatus, smbtar, smbtorture, smbtree, tdbbackup, tdbdump, tdbrestore, tdbtool, testparm, wbinfo, and winbindd libdcerpc-binding.so, libdcerpc-samr.so, libdcerpc-server-core.so, libdcerpc-server.so, libdcerpc.so, libndr-krb5pac.so, libndr-nbt.so, libndr.so, libndr-standard.so, libnetapi.so, libnss_winbind.so, libnss_wins.so, libsamba-credentials.so, libsamba-errors.so, libsamba-hostconfig.so, libsamba-passdb.so, libsamba-policy.cpython-38-x86_64-linux-gnu.so, libsamba-util.so, libsamdb.so, libsmbclient.so, libsmbconf.so, libsmbldap.so, libtevent-util.so, libwbclient.so, and winbind_krb5_locator.so; the pam_winbind.so PAM library; and assorted character set, filesystem and support modules under /usr/lib/{python&python3-majorver;,samba} /etc/samba, /run/samba, /usr/include/samba-4.0, /usr/lib/python&python3-majorver;/site-packages/samba, /usr/libexec/samba, /usr/{lib,share}/samba, and /var/{cache,lib,lock,log,run}/samba Short Descriptions cifsdd is the dd command for SMB cifsdd dbwrap_tool is used to read and manipulate TDB/CTDB databases using the dbwrap interface dbwrap_tool eventlogadm is used to write records to eventlogs from STDIN, add the specified source and DLL eventlog registry entries and display the active eventlog names (from smb.conf) eventlogadm findsmb is used to list info about machines that respond to SMB name queries on a subnet findsmb gentest is used to run random generic SMB operations against two SMB servers and show the differences in behavior gentest ldbadd is a command-line utility for adding records to an LDB database ldbadd ldbdel is a command-line program for deleting LDB database records ldbdel ldbedit allows you to edit LDB databases using your preferred editor ldbedit ldbmodify allows you to modify records in an LDB database ldbmodify ldbrename allows you to rename LDB databases ldbrename ldbsearch searches an LDB database for records matching a specified expression ldbsearch locktest is used to find differences in locking between two SMB servers locktest masktest is used to find differences in wildcard matching between Samba's implementation and that of a remote server masktest mdfind runs Spotlight searches against a SMB server mdfind mvxattr is used to recursively rename extended attributes mvxattr ndrdump is a DCE/RPC Packet Parser and Dumper ndrdump net is a tool for administration of Samba and remote CIFS servers, similar to the net utility for DOS/Windows net nmbd is the Samba NetBIOS name server nmbd nmblookup is used to query NetBIOS names and map them to IP addresses nmblookup ntlm_auth is a tool to allow external access to Winbind's NTLM authentication function ntlm_auth oLschema2ldif converts LDAP schema's to LDB-compatible LDIF oLschema2ldif pdbedit is a tool used to manage the SAM database pdbedit profiles is a utility that reports and changes SIDs in Windows registry files. It currently only supports Windows NT profiles regdiff is a Diff program for Windows registry files regdiff regpatch applies registry patches to registry files regpatch regshell is a Windows registry file browser using readline regshell regtree is a text-mode registry viewer regtree rpcclient is used to execute MS-RPC client side functions rpcclient samba is a server to provide AD and SMB/CIFS services to clients samba samba_dnsupdate is used to update the DNS names using TSIG-GSS samba_dnsupdate samba_downgrade_db downgrades the Samba AD database to be compatible with a previous version of Samba samba_downgrade_db samba_kcc is a script used to compute your KCC (Knowledge Consistency Checker) topology samba_kcc samba-gpupdate allows you to edit Microsoft Group Policy Objects (GPOs) samba-gpupdate samba-regedit is a ncurses based tool to manage the Samba registry samba-regedit samba_spnupdate is a script to update the servicePrincipalName names from spn_update_list samba_spnupdate samba-tool is the main Samba administration tool samba-tool samba_upgradedns upgrades the DNS records in a Samba server to a newer version samba_upgradedns sharesec manipulates share ACL permissions on SMB file shares sharesec smbcacls is used to manipulate Windows NT access control lists smbcacls smbclient is a SMB/CIFS access utility, similar to FTP smbclient smbcontrol is used to control running smbd, nmbd and winbindd daemons smbcontrol smbcquotas is used to manipulate Windows NT quotas on SMB file shares smbcquotas smbd is the main Samba daemon which provides SMB/CIFS services to clients smbd smbget is a simple utility with wget-like semantics, that can download files from SMB servers. You can specify the files you would like to download on the command-line smbget smbpasswd changes a user's Samba password smbpasswd smbspool sends a print job to an SMB printer smbspool smbstatus reports current Samba connections smbstatus smbtar is a shell script used for backing up SMB/CIFS shares directly to Linux tape drives or a file smbtar smbtorture is a testsuite that runs several tests against a SMB server smbtorture smbtree is a text-based SMB network browser smbtree tdbbackup is a tool for backing up or validating the integrity of Samba .tdb files tdbbackup tdbdump is a tool used to print the contents of a Samba .tdb file tdbdump tdbrestore is a tool for creating a Samba .tdb file out of a ntdbdump tdbrestore tdbtool is a tool which allows simple database manipulation from the command line tdbtool testparm checks an smb.conf file for proper syntax testparm wbinfo queries a running winbindd daemon wbinfo winbindd resolves names from Windows NT servers winbindd libnss_winbind.so provides Name Service Switch API functions for resolving names from NT servers libnss_winbind.so libnss_wins.so provides API functions for Samba's implementation of the Windows Internet Naming Service libnss_wins.so libnetapi.so provides API functions for the administration tools used for Samba and remote CIFS servers libnetapi.so libsmbclient.so provides API functions for the Samba SMB client tools libsmbclient.so libwbclient.so provides API functions for Windows domain client services libwbclient.so