📌  相关文章
📜  使用 Samba 在 Linux 上创建共享文件夹 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:36.257000             🧑  作者: Mango

代码示例1
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