Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

Create A Shared Folder On Linux With Samba

sudo apt install samba #Installing Samba
sudo service smbd status #Check Samba Service
mkdir /home/<username>/mysambafolder #create your shared folder
sudo nano /etc/samba/smb.conf #edit this file with nano

#add this to the end of the smb.conf file
[mysambafolder]
    comment = My Samba Folder
    path = /home/<username>/mysambafolder
    readonly = no
    writeable = yes
    browsable = yes
Comment

PREVIOUS NEXT
Code Example
Shell :: hugo documentation 
Shell :: Remove Files and Directories 
Shell :: how to change your bash setup 
Shell :: lighthouse 
Shell :: authentication failed github 
Shell :: update centos kernel version yum 
Shell :: check intellij version 
Shell :: aws s3 change bucket region 
Shell :: git repo 
Shell :: how add ssh 
Shell :: take a screenshot linux terminal 
Shell :: vim set paste 
Shell :: android studio not running ios simulator 
Shell :: crontab mac 
Shell :: angular extract i18n 
Shell :: vba run shell command with arguments 
Shell :: linux shutdown no password 
Shell :: meterial ui installesions 
Shell :: how to add characters before a line 
Shell :: ansible ssh on different port 
Shell :: powerhsell write to output file from multiple jobs 
Shell :: grep string in file 
Shell :: printing in capital letter linux 
Shell :: nativescript/theme with nativescript 8 
Shell :: git by nouman 
Shell :: /lib/systemd/system/gammu-smsd.service:9: Neither a valid executable name nor an absolute path: ${CMAKE_INSTALL_FULL_BINDIR}/gammu-smsd 
Shell :: pip install -U "yarl<1.2" 
Shell :: cancel jobs related to one name 
Shell :: ubonto change lang switch commad 
Shell :: mac terminal split text file 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =