Share your love
Install Samba File Sharing on Debian 12 | Comprehensive Guide
This tutorial intends to teach you to Install Samba File Sharing on Debian 12 Booworm. Also, you will learn to Set up Samba Clients on both Windows and Linux. Samba is a powerful tool that allows you to create seamless file and printer sharing to SMB/CIFS clients from a Linux server/desktop.
Debian 12 ships with the Samba version 4.17. Now follow the steps below on the Orcacore website to Install Samba File Sharing on Debian 12.
Table of Contents
Install and Configure Samba File Sharing on Debian 12 Booworm
To Install Samba File Sharing on Debian 12, you must have access to your server as a non-root user with sudo privileges and set up a basic firewall. To do this, you can follow this guide on Initial Server Setup with Debian 12 Bookworm.
Now proceed to the following steps to Install Samba File Sharing on Debian 12.
Step 1 – How To Install Samba File Sharing on Debian 12 with APT?
The smbclient is a tool that allows you to access Samba from the command line. You can Install Samba File Sharing on Debian 12 with APT.
First, run the system update with the following command:
sudo apt update
Then, use the following command to Install Samba File Sharing on Debian 12:
sudo apt install samba smbclient cifs-utils
This will install all the dependencies and required packages for Samba.
Verify your installation by checking its version:
samba --version
Output
Version 4.17.9-Debian
Step 2 – How To Configure Samba Share on Debian 12?
At this point, you need to make some changes to the Samba config file and create shared Samba directories.
Where is the Samba file on Debian?
The Samba configuration file can be found at the /etc/samba/smb.conf directory.
Set Samba Global Settings
At this point, you need to open the Samba configuration file with your favorite text editor, here we use vi editor:
sudo vi /etc/samba/smb.conf
Under the Global section, find the line below and make sure it is like this:
workgroup = WORKGROUP
When you are done, save and close the file.
Create a Shared Samba Directory
At this point, you can share both public and private directories. So you can create the two directories by using the following commands:
# sudo mkdir /public
# sudo mkdir /private
Now you need to open the Samba config file again and add the shares and authentication methods to the end of the file.
sudo vi /etc/samba/smb.conf
[public]
comment = Public Folder
path = /public
writable = yes
guest ok = yes
guest only = yes
force create mode = 775
force directory mode = 775
[private]
comment = Private Folder
path = /private
writable = yes
guest ok = no
valid users = @smbshare
force create mode = 770
force directory mode = 770
inherit permissions = yes
When you are done, save and close the file.
Create a Samba Share User Group
At this point, you need the Samba share user group to access the Private share as specified in the config file above.
Create the group by using the command below:
sudo groupadd smbshare
Set the correct permissions for the private and public share by using the commands below:
# sudo chgrp -R smbshare /private/
# sudo chgrp -R smbshare /public
Next, set the correct permissions for the directories:
# sudo chmod 2770 /private/
# sudo chmod 2775 /public
Note: The value 2 at the beginning of the above commands, stands for the SGID bit. This allows newly created files to inherit the parent group.
Now you should create a no-login local user to access the private share by using the command below:
sudo useradd -M -s /sbin/nologin sambauser
Then, add the user to the Samba share group on Debian 12 with the following command:
sudo usermod -aG smbshare sambauser
Finally, set a password for your Samba user:
sudo smbpasswd -a sambauser
Output
New SMB password:
Retype new SMB password:
Added user sambauser.
Enable the created account by using the following command:
sudo smbpasswd -e sambauser
Output
Enabled user sambauser.
Verify Samba Configuration
When you are done with the above steps, you can test your Samba configuration on Debian 12 that is working correctly or not with the following command:
sudo testparm
This means that everything is configured appropriately.
Create Demo Files in Samba Share
At this point, you can create demo files in the Samba shares. To do this. you can run the following commands:
# sudo mkdir /private/demo-private /public/demo-public
# sudo touch /private/demo1.txt /public/demo2.txt
How To Restart Samba Service?
To apply the changes, restart the Samba service on Debian 12:
sudo systemctl restart nmbd
Configure Firewall for Samba
If you have a firewall running, you need to allow remote access from the specified IP range as shown below:
sudo ufw allow from 192.168.205.0/24 to any app Samba
Access Share Files From Local Machine
Before you set up Samba clients, you can try accessing your share files with the command below on Debian 12:
smbclient '\\localhost\private' -U sambauser
Step 3 – Set up Samba Share Windows Client
At this point, we want to show you access to the share from Windows. First, open a run box using Win+R and enter your Debian 12 IP address in the box and click Ok:
Then, the Samba shared folders on Debian 12 should appear as below:
You can open one of the files, and create a new file there. You should see the file on your server machine too.
Mount Samba Share Permanently
At this point, you can mount the Samba share permanently on your Windows system. Click on This PC->Map Network Drive. This will open a window for you, provide the Path details and click Finish.
Then, enter the Samba user credentials and click ok.
You will have the share available on your This PC.
Step 4 – Set up Samba Linux Client
At this point, you can access the share folders from a Linux client. To do this, you need to have Samba packages installed on your server. Here our Linux client is Debian 12:
sudo apt install samba-client cifs-utils
Then, navigate to File Manager ->Other locations and add your share using the syntax below.
smb://server-name/Share_name
Enter the credentials for the Samba user. That is it! You have your Samba share on your Linux client machine.
For more information, you can visit the Samba Documentation page.
Conclusion
At this point, you have learned to Install Samba File Sharing on Debian 12 Bookworm. And also, you have learned to set up Samba clients on both Windows and Linux machines. Hope you enjoy it. You may also interested in these articles: