You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Unable to mount SMB share using GENERAL > MUSIC STORAGE > ADD OTHER SERVER
HiFiBerryOS version
20240523
HiFiBerry sound card
DAC+ DSP
To Reproduce
Steps to reproduce the behavior:
Go to 'GENERAL' > 'MUSIC STORAGE'
Click on 'ADD OTHER SERVER'
Enter 'IP Address' and 'Share'
See error > 'UNAVAILABLE'
Expected behavior
The Samba Share should be mounted
Screenshots
none
Browser (if applicable)
any
Additional context
See '/opt/hifiberry/bin/mount-smb.py' Line 25:
#Resolve .local hostnames
host = share.split('/')[2]
ip = ""
resolvhost = host
if not host.endswith(".local"):
resolvhost = host+".local"
That dosn't work in my setup.
In HiFiBerryOS UI, you are forced to enter an IP Address like '192.168.1.123' instead of the hosname (like 'myServer.local') with this script, HiFiBerryOS is trying to mount '192.168.1.123.local' which dosn't work.
I have removed the if statement ans everything works like a charm.
#Resolve .local hostnames
host = share.split('/')[2]
ip = ""
resolvhost = host
#if not host.endswith(".local"):
#resolvhost = host+".local"
Please fix this in the next version of HiFiBerryOS.
The text was updated successfully, but these errors were encountered:
Describe the bug
Unable to mount SMB share using GENERAL > MUSIC STORAGE > ADD OTHER SERVER
HiFiBerryOS version
20240523
HiFiBerry sound card
DAC+ DSP
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The Samba Share should be mounted
Screenshots
none
Browser (if applicable)
Additional context
See '/opt/hifiberry/bin/mount-smb.py' Line 25:
That dosn't work in my setup.
In HiFiBerryOS UI, you are forced to enter an IP Address like '192.168.1.123' instead of the hosname (like 'myServer.local') with this script, HiFiBerryOS is trying to mount '192.168.1.123.local' which dosn't work.
I have removed the if statement ans everything works like a charm.
Please fix this in the next version of HiFiBerryOS.
The text was updated successfully, but these errors were encountered: