blob: 0dce3ae1218c18c8fe1053419993881b27f7006e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/usr/bin/env bash
# description: setup samba for logged in user and creat shared folder "shared"
# update package indexes
sudo apt update -y
# install samba
sudo apt install samba -y
# create a folder on local directory to share
mkdir -p /home/$USER/shared && chmod 777 /home/$USER/shared
# back up samba conf
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
# edit smb.conf to add new folder to its shared list
cat >> /etc/samba/smb.conf <<EOF
[Shared]
path = /home/$USER/shared
available = yes
valid users = $USER
read only = no
browsable = yes
public = yes
writable = yes
EOF
# add samba user
sudo smbpasswd -a $USER
# restart services to pick up new changes
sudo systemctl restart smbd
sudo systemctl restart nmbd
# allow external access through firewall
sudo ufw allow samba
cat <<EOF
use smb://ip-address/Shared to access folder on filemanager on linux or
\\ip-address\Shared on file explorer in windows
EOF
|