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
I noticed one bug, and have a fix I wanted to share:
The current version of the docker image has no '/dev/loop0' through '/dev/loop9' device nodes. This causes ISO mounting to fail with 'file not found' within the docker container, and the failure of any ISO format videos to import into the Media library.
The solution is to create the device nodes:
mknod /dev/loop0 b 7 0
mknod /dev/loop1 b 7 1
...
mknod /dev/loop9 b 7 9
...within a shell in the Sagetv environment after which everything worked on my system.
I suggest a test be added to the startup scripts to see if these files exist and create them if they do not.
The text was updated successfully, but these errors were encountered:
From SageTV User
The text was updated successfully, but these errors were encountered: