The Samba project provides file sharing and print services for computers on a network. It uses the Server Message Block and Common Internet File System (SMB/CIFS) protocol, so the services created by running Samba are available to Linux, macOS, and Windows clients. It's an essential service to run in organizations that support multiple operating systems, and it's even useful on homogenous networks.
It's not difficult to set up, and all you need is at least one server you want to designate as a file-share host (it doesn't have to be rack mounted and could even be a dedicated workstation). For client access, Samba is either built into the operating system or easily installed from a repository.
Install Samba
On your designated Samba server, install the Samba package:
$ sudo dnf install samba
This command also installs the samba-common-tools
and samba-libs
packages.
Next, start the SMB and NMB daemons. The SMB daemon manages most Samba services, while the NMB daemon provides NetBIOS services. Here are the commands:
$ systemctl enable --now smb
$ systemctl enable --now nmb
That's the installation. All that's left is a little configuration.
Configure your firewall
Make sure that your file-share server is accessible over your network by adding the samba
service to your firewall config:
$ sudo systemctl enable --now firewalld
$ sudo firewall-cmd --list-services
cockpit dhcpv6-client ssh
$ sudo firewall-cmd --add-service samba
success
Configure Samba
Create a directory on the server to hold your shared files and folders, and change the SELinux context to samba_share_t
:
$ sudo mkdir /sambashare
$ sudo chcon -t samba_share_t /sambashare/
To configure shares and users, edit the /etc/samba/smb.conf
file. The default file has several good examples of common options, including provisions for shared printers and home directories.
There's a global
section, which defines a workgroup. I arbitrarily set mine to SAMBA
. I have no other existing workgroups on my network, so the workgroup hardly matters for my setup. If your organization has a specific workgroup structure, then follow that.
[global]
workgroup = SAMBA
security = user
passdb backend = tdbsam
...
By default, your Samba server's NetBIOS name is the server's Linux hostname. If you don't have DNS configured on your local network, you can use the server's IP address when contacting the Samba server.
[ Download the Linux networking cheat sheet to get a list of Linux utilities and commands for managing servers and networks. ]
Create a shared location
To create a new share location, add a section to the /etc/samba/smb.conf
configuration file with these two definitions:
[sambashare]
path = /sambashare
read only = No
Each section of this configuration file defines a service. When users access a Samba server, they connect to a service named for one of the bracket sections in the config, such as [sambashare]
, [homes]
, [print$]
, and so on. Most users don't need to be aware of this subtlety, but you might see these service names when testing and troubleshooting.
You can test your Samba configuration with the testparm
command:
$ testparm /etc/samba/smb.conf
Add users
Users logging into a Samba share must either have accounts on the server or log in as a guest. You can also use standard Unix groups to manage access. For instance, run the following command to create a group of staff members who need access to the server:
[server]$ sudo groupadd staff
Assuming you need to add a staff member named tux
to your Samba server, the process is initially the same as usual:
[server]$ sudo adduser -g staff \
--create-home \
tux
[server]$ passwd tux
You must also set a dedicated Samba password:
[server]$ sudo smbpasswd -a tux
[ Keep essential commands close at hand. Download the Linux commands cheat sheet. ]
Restart and test Samba
To load in the new configuration, restart Samba:
[server]$ sudo systemctl restart {s,n}mb
Samba is now serving sambashare
to any authenticated user. You can test it using the smbclient
command:
[client]$ smbclient -L //sambaserver
Enter SAMBA\tux's password:
Sharename Type Comment
--------- ---- -------
sambashare Disk
print$ Disk Printer Drivers
IPC$ IPC IPC Service (Samba 4.14.5)
tux Disk Home Directories
Users can access their Samba shares through file managers, terminal commands, and other services that communicate over SMB. For instance, in KDE Dolphin:
Share files with Samba
Setting up file sharing with Samba is easy and provides flexible cross-platform collaboration. Additional configuration options are available when using workgroups and domains or when Samba is the Active Directory domain controller. It's built into all major operating systems, has rich terminal and GUI tools, and is quick to configure. Help your users break through silos and share data with Samba.
About the author
Seth Kenlon is a Linux geek, open source enthusiast, free culture advocate, and tabletop gamer. Between gigs in the film industry and the tech industry (not necessarily exclusive of one another), he likes to design games and hack on code (also not necessarily exclusive of one another).
Browse by channel
Automation
The latest on IT automation for tech, teams, and environments
Artificial intelligence
Updates on the platforms that free customers to run AI workloads anywhere
Open hybrid cloud
Explore how we build a more flexible future with hybrid cloud
Security
The latest on how we reduce risks across environments and technologies
Edge computing
Updates on the platforms that simplify operations at the edge
Infrastructure
The latest on the world’s leading enterprise Linux platform
Applications
Inside our solutions to the toughest application challenges
Original shows
Entertaining stories from the makers and leaders in enterprise tech
Products
- Red Hat Enterprise Linux
- Red Hat OpenShift
- Red Hat Ansible Automation Platform
- Cloud services
- See all products
Tools
- Training and certification
- My account
- Customer support
- Developer resources
- Find a partner
- Red Hat Ecosystem Catalog
- Red Hat value calculator
- Documentation
Try, buy, & sell
Communicate
About Red Hat
We’re the world’s leading provider of enterprise open source solutions—including Linux, cloud, container, and Kubernetes. We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.
Select a language
Red Hat legal and privacy links
- About Red Hat
- Jobs
- Events
- Locations
- Contact Red Hat
- Red Hat Blog
- Diversity, equity, and inclusion
- Cool Stuff Store
- Red Hat Summit