id: 12777    nodeId: 12777    type: General    point: 30.0    linkPoint: .0    maker: cella    permission: linkable    made at: 2020.03.24 05:09    edited at: 2023.07.08 05:32
network folder sharing with Samba on Ubuntu
https://www.makeuseof.com/set-up-network-shared-folder-ubuntu-with-samba/

$ sudo apt update
$ sudo apt install samba
$ smbd --version

$ sudo vim /etc/samba/smb.conf
$ cd ~
$ mkdir -p sambashare
$ sudo groupadd --system smbgroup
$ sudo useradd --system --no-create-home --group smbgroup -s /bin/false smbuser
$ sudo chown -R smbuser:smbgroup ~/sambashare
$ sudo chmod -R g+w ~/sambashare
$ sudo systemctl restart smbd
$ sudo systemctl status smbd

Return to network folder sharing with Samba on Ubuntu