1. Introduction Recently I found that there are many inconveniences in developing under centos. The code changes for windows/mac must be synchronized to the centos folder before they can be compiled. This results in low work efficiency, and a lot of time is spent on code synchronization between window/mac and centos systems. So I want to share the folder in centos to windows/mac, so that I can directly modify the code under centos on window/mac to quickly improve efficiency. The samba server can solve this problem very well. It allows Windows and Mac users to access folders under CentOS just like accessing shared folders on the LAN. 2. Configure the samba server 2.1 Installing the Samba Server $ yum install samba 2.2 Setting up a shared folder Open the smb configuration file: Add the shared folder at the end of the file $[centos_share_folder] comment = share folder#Shared folder path = /home/centos/share#Specify the shared folder path available = yes public = yes writable = yes valid users = centos create mask = 755 directory mask = 755 guest ok = no Then press wq to save and exit. 2.3 Add user (you can directly use the current user, so there is no need to add a user and password, skip this step) $ adduser centos Set password $ smbpasswd -a samba 3 Enable smb service 3.1 Turn off the firewall $ systemctl stop firewalld.service 3.2 Disable setlinux $ vi /etc/sysconfig/selinux Set SELINUX=enforcing to disabled $ setenforce 0 #Turn off selinux firewall 3.3 Enable samba service $ systemctl start smb.service $ systemctl stop smb.service $ systemctl restart smb.service 3. Verify smb service 3.1 Access centos shared folders on mac: Folder menu -> Connect to server -> Go to smb://192.168.1.53 After connecting, you will be prompted to enter your username and password. After verification, you will enter the centos shared folder. 3.2 Accessing shared folders under Windows //192.168.1.53 After connecting, you will be prompted to enter your username and password. After verification, you can enter the centos shared folder. 4. Set up a static IP During use, I found that the IP of centos often changes, which brings a lot of inconvenience to the connection on the windows/mac side. The solution is to set the centos IP to a static IP: $ vi /etc/sysconfig/network-scripts/ifcfg-$eth Note: $eth can be obtained by ifconfig. For example, ifconfig output is: eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 150..., then $eth=eth0. After opening, modify it to: After the modification, press wq to save and exit. After exiting, restart the network card driver: $ systemctl restart network At this point, the smb server has been created successfully, and you can start efficient encoding work! This is the end of this article about the detailed configuration of samba folder sharing server under centos. For more information about samba folder sharing service under centos, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to ensure transaction characteristics of MySQL InnoDB?
>>: Echarts tutorial on how to implement tree charts
Table of contents DML statements 1. Insert record...
Today, because I wanted to install MySQL, I went ...
For example, there is an input box <el-input r...
Table of contents Problem Description Rendering T...
Frame structure tag <frameset></frameset...
1. Problem Multiple floating elements cannot expa...
When installing a virtual machine, a prompt appea...
Requirements: The PC side and the mobile side are...
Dependence on knowledge Go cross-compilation basi...
Table of contents 1. MySQL compilation and instal...
This article shares the second article of using j...
Implementing process analysis (1) How to call rep...
1. IE browser mode Hack logo 1. CSS hack logo Copy...
URL rewriting helps determine the preferred domai...
In the horizontal direction, you can set the cell...