A basic Samba server on Ubuntu
For our development environment, we are recently switched to a common LAMP server on Ubuntu OS.
To access the server space from developer machines, we have to install & configure the Samba suite on the Server.
Install Samba server
sudo apt-get install samba
Configure Samba
Copy default Samba configuartion file as back up
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.backup
Edit Samba configuarion file with minumum configuration
sudo nano /etc/samba/smb.conf
Replace current content with below one
[global]
log file = /var/log/samba-log.%m
lock directory = /var/lock/samba
share modes = yes
[homes]
comment = Home Directories
browseable = no
read only = no
create mode = 0750
Set a psswaord for Samba user
sudo smbpasswd -a <user_name>
Create a home folder for user
mkdir /home/<user_name>/<folder_name>
Restart Samba
sudo service smbd restart
Now you can use the file explorer window like \\<your_server_ip>\<user_name>\
in Windows Machine or smb:\\<your_server_ip>\<user_name>\
in Linux & MAC.
Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.
Recent Posts
- Disabling Payment Methods in WooCommerce Based on Conditions
- How to Update Product Quantity in WooCommerce Using Custom Code
- Dynamically Generating a Table of Contents in WordPress
- Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
- Understanding the Impact of git reset --hard Command
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.