jshridha / docker-blueiris

Blueiris in a docker using wine!
Apache License 2.0
106 stars 52 forks source link

ntlm_auth was not found or is outdated #14

Open mayamaniac opened 4 years ago

mayamaniac commented 4 years ago

getting this error when running ./blueiris.sh

0043:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.

Anyway to get this "ntlm_auth >= 3.0.25" updated in the next build?

jshridha commented 4 years ago

Can you try to open a bash terminal into your container and install the winbind package, then restart the container and see if you still have the error? Something like the following should work:

docker exec -it blueiris bash
apt-get update
apt-get install winbind
exit
docker restart blueiris
mayamaniac commented 4 years ago

that worked to fix that error, now I get this error:

fixme:console:CONSOLE_DefaultHandler Terminating process 8 on event 0 wine: cannot find '/root/prefix32/drive_c/Program Files/Blue Iris 5/BlueIris.exe'

Do I just manually download 'http://blueirissoftware.com/blueiris.exe' and copy it into '/root/prefix32/drive_c/Program Files/Blue Iris 5/BlueIris.exe' ?

jshridha commented 4 years ago

I added winbind into the dev version. You can try it out by changing your image to jshridha/blueiris:dev

sturose commented 4 years ago

I ran into this same issue. Maybe it's time for a new stable release?