📅  最后修改于: 2022-03-11 14:51:36.257000             🧑  作者: Mango
sudo apt install samba #Installing Samba
sudo service smbd status #Check Samba Service
mkdir /home//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//mysambafolder
readonly = no
writeable = yes
browsable = yes