This guide might be of some help. Is your user name a member of the sambashare group?
You may fare better setting up samba file sharing via your file manager. Thunar has thunar-shares-plugin. It is fine for basic file sharing between my various Manjaro systems. Maybe Dolphin/KDE has something similar?
Well, I do have a samba.conf (see below) and I have gone through a bunch of sources to try to identify what is wrong. WERR_ACCESS_DENIED seems to be a permissions issue, not a configuration issue, but I’d sure appreciate any review of the .conf file to see if anything is wrong there that could be driving it.
[global]
workgroup = WORKGROUP
dns proxy = no
log file = /var/log/samba/%m.log
max log size = 1000
client min protocol = SMB2
server role = standalone server
passdb backend = tdbsam
obey pam restrictions = yes
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *New*UNIX*password* %n\n *ReType*new*UNIX*password* %n\n *passwd:*all*authentication*tokens*updated*successfully*
pam password change = yes
map to guest = Bad Password
usershare allow guests = yes
name resolve order = lmhosts bcast host wins
security = user
guest account = nobody
usershare path = /var/lib/samba/usershare
usershare max shares = 100
usershare owner only = yes
force create mode = 0070
force directory mode = 0070
load printers = no
printing = bsd
printcap name = /dev/null
disable spoolss = yes
show add printer wizard = no
include = registry
[homes]
comment = Home Directories
browseable = yes
read only = no
create mask = 0700
directory mask = 0700
valid users = %S
[printers]
comment = All Printers
browseable = no
path = /var/spool/samba
printable = yes
guest ok = no
read only = yes
create mask = 0700
[print$]
comment = Printer Drivers
path = /var/lib/samba/printers
browseable = yes
read only = yes
guest ok = no
OK, followed that with new smb.conf, now I’m at the point where I have a new error, ‘var/lib/samba/usershares’ has its group owner inappropirately set to ‘root,’ which is not allowed… need to change folder’s group owner to ‘sambashares.’ I recognize that should use ‘sudo chown’ in some manner, but trying to figure out how, exactly… something like chown -hR sambashares /var/lib/samba/usershares ?