How to Install and Configure Samba Share with Windows and CentOS 7

28/12/2020
Samba is a windows compatible file sharing system. It is used to set up windows share on Linux systems. Samba is a Linux implementation of the SMB/CIFS protocol.

Samba can be used to set up storage server or sharing files and directories on the Linux system.

In this article, I will show you how to install and configure Samba share with Windows and CentOS 7. Let’s get started.

Network Diagram for the Samba Storage Server:

The Samba server and client computers are set up the following way:

The Samba Storage Server (based on CentOS 7) has the hostname smb-server and IP address 10.0.1.11

The Samba CentOS 7 Client has the hostname smb-client and IP address 10.0.1.14

The Samba Windows 7 Client has the IP address 10.0.1.12

These computers are in the same network 10.0.1.0/24

Configuring DNS for Samba Server:

Before you get started, make sure your DNS server is configured correctly. Otherwise, Samba may fail to start.

Configuring a full DNS server is out of the scope of this article, so I edited the /etc/hosts file of every CentOS 7 machine and added the following line there.

10.0.1.11              smb-server

On the smb-server and smb-client machine, you can simply run the following command to add the above line to the /etc/hosts file:

$ echo "10.0.1.11 smb-server" | sudo tee -a /etc/hosts

For Windows client, I used Notepad to edit C:WindowsSystem32Driversetchosts file and added the following line there:

10.0.1.11              smb-server

Step 1:

Go to the Start menu and search for notepad. Now right click on Notepad icon and click on Run as administrator.

Step 2:

Now press <Ctrl> + o to go to File > Open… and select the file C:WindowsSystem32Driversetchosts

Step 3:

Now add the above line to the end of the file. Now press <Ctrl> + s or go to File > Save to save the file.

Installing Samba Server:

Samba server is not installed by default on CentOS 7. So you have to install it on the smb-server machine.

Before installing Samba server, run the following command to update the YUM package repository cache:

$ sudo yum makecache

Now update your CentOS 7 system with the following command:

$ sudo yum update

If update is available, you should see the following window. Press y and then press <Enter> to continue.

The update process should take a while to finish. Once completed, run the following command to reboot your system.

$ sudo reboot

Now install Samba server with the following command:

$ sudo yum install samba

Now press y and then press <Enter> to continue.

Samba server should be installed.

The samba services smb and nmb are stopped by default. You must start them before doing anything.

Start the smb service with the following command:

$ sudo systemctl start smb

Start the nmb service with the following command:

$ sudo systemctl start nmb

Now you have to add the smb and nmb services to the system startup so that they start when the server computer boots.

Add the smb service to the system startup with the following command:

$ sudo systemctl enable smb

Add the nmb service to the system startup with the following command:

$ sudo systemctl enable nmb

Adding and Listing Samba Users:

Windows users have different files and directory permission schemes than Linux. To add these additional parameters to the existing Linux users, pdbedit command is used.

You can add your login user to Samba with the following command:

$ sudo pdbedit -a -u $(whoami)

Now you have to set up a Samba password. This is the password you will use when login in a Samba share.

Type in your Samba password for the user and press <Enter>.

Re-type your Samba password and press <Enter>.

Your login user should be added.

You can add other Linux users to Samba as well with the following command:

$ sudo pdbedit -a -u USERNAME

Note: Here, USERNAME can be any Linux username.

Now you can list all the Samba users with the following command:

$ sudo pdbedit -L

Allowing Samba Traffic:

Now allow the samba traffic to the smb-server machine with the following Firewalld command:

$ sudo firewall-cmd –add-service=samba –permanent

Apply the new Firewalld configuration with the following command:

$ sudo firewall-cmd –reload

Accessing Samba Shares from CentOS 7 Client:

You can install Samba client utilities to your CentOS 7 machines from which you want to mount the Samba shares from smb-server machine.

Run the following command to install the Samba client utilities on CentOS 7 client:

$ sudo yum install samba-client

Now press y and then press <Enter> to continue.

Samba client utilities should be installed.

Now you can list all the available share for your login USERNAME on smb-server machine with the following command:

$ smbclient -U USERNAME> -L //HOSTNAME

Note: Here USERNAME is your Samba username and HOSTNAME is the DNS name or IP of your smb-server.

Now type in your Samba password and press <Enter>.

All your shares should be listed. By default, only the user’s home directory is shared. If you want, you can add more shares.

Now you can mount your share with the following command:

$ sudo mount -t cifs -o username=USERNAME,password=SAMBA_PASSWORD
//SERVER_IP/SHARENAME MOUNTPOINT

Note: USERNAME and SAMBA_PASSWORD are Samba login details, SERVER_IP is the IP address of the smb-server, SHARENAME is the name of the share and MOUNTPOINT is the location/path where you want to mount your share SHARENAME on CentOS 7.

The share is mounted.

Accessing Samba Shares from Windows Client:

From windows, just open the File Explorer and type in \HOSTNAMESHARENAME in your location as marked in the screenshot below. Once you’re done, press <Enter>.

Now type in your Samba USERNAME and PASSWORD and click on OK.

You should be logged in to your share as you can see.

Adding More Shares:

If you need to add more shares, read Creating a File Share section of the article at https://linuxhint.com/install-samba-on-ubuntu/

Note: I did everything while SELinux was disabled. Working with SELinux is out of the scope of this article. Please check the SELinux documentation for more information on SELinux and how to set it up for Samba.

So that’s how you install and configure Samba share with Windows and CentOS 7. Thanks for reading this article.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Mattermost – Hướng dẫn cài đặt

Giới thiệu Mattermost Mattermost là giải pháp phần mềm thay thế cho các doanh nghiệp vừa và nhỏ...
30/12/2020

How to Install and Configure iSCSI Storage Server on CentOS 7

Internet Small Computer Systems Interface or iSCSI in short is used to share block devices on the network. It provides...
28/12/2020

Check Disk Space Usage on CentOS

Users need to know the used and available size of disk space.  There are many built-in tools and commands for Linux based...
29/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

SỰ KHÁC BIỆT GIỮA RESIDENTIAL PROXY VÀ PROXY DATACENTER
17/02/2024

Mua Proxy v6 US Private chạy PRE, Face, Insta, Gmail
07/01/2024

Mua shadowsocks và hướng dẫn sữ dụng trên window
05/01/2024

Tại sao Proxy Socks lại được ưa chuộng hơn Proxy HTTP?
04/01/2024

Mua thuê proxy v4 nuôi zalo chất lượng cao, kinh nghiệm tránh quét tài khoản zalo
02/01/2024