Try to remove (or temporarily rename) your Samba config file: /storage/.config/samba.conf
I removed the file and after boot all is OK. but....
I had the .kodi folder defined in the sambe.conf file so I took the samba.conf.sample file below (showing only [global] part:
[global]
server string = LibreELEC
workgroup = WORKGROUP
browseable = yes
writeable = yes
printable = no
deadtime = 30
mangled names = no
name resolve order = host bcast
printcap name = /dev/null
load printers = no
encrypt passwords = true
enable core files = no
passdb backend = smbpasswd
smb encrypt = disabled
# samba share options
map to guest = Bad User
guest account = root
security = user
# samba tuning options
socket options = TCP_NODELAY IPTOS_LOWDELAY
min receivefile size = 16384
aio read size = 16384
aio write size = 16384
use sendfile = yes
# The following are default values for the master selection process
# local master = yes
# preferred master = auto
# domain master = auto
# os level = 20
# "strict allocate = yes" breaks large network transfers to external hdd
# Force this to "no" in case "yes" becomes the default in future
strict allocate = no
allocation roundup size = 0
Display More
and added the following at the end (after all other shared paths):
[kodi]
path = /storage/.kodi
available = yes
browsable = yes
public = yes
writable = yes
root preexec = mkdir -p /storage/.kodi
After reboot the problem reappeared and the samba.conf [global] part now looks like this:
[global]
server string = LibreELEC
workgroup = WORKGROUP
netbios name = %h
security = share
guest account = root
socket options = TCP_NODELAY IPTOS_LOWDELAY
max protocol = SMB2
min receivefile size = 16384
deadtime = 30
mangled names = no
syslog only = yes
syslog = 2
name resolve order = host bcast wins
printcap name = /dev/null
load printers = no
browseable = yes
writeable = yes
printable = no
encrypt passwords = true
enable core files = no
passdb backend = smbpasswd
smb encrypt = disabled
use sendfile = yes
# The following are default values for the master selection process
# local master = yes
# preferred master = auto
# domain master = auto
# os level = 20
# "strict allocate = yes" breaks large network transfers to external hdd
# Force this to "no" in case "yes" becomes the default in future
strict allocate = no
allocation roundup size = 0
Display More
I see 2 main changes:
* new line: netbiso name = %h
* changed line: security = share instead of security = user
Why did it change and could this be the reason?