2022-04-15, 14:44
I am using LibreELEC 9.2.8 with Linux Kernel 4.19.127 on an Raspberry Pi 2B. The video content is on an NFS server in the local network.
Kodi does find the server and I can access the content.
I use the OpenSubtitles.org AddOn. It is configured to store the subtitles in the same folder as the videos. It finds subtitles in the internet and also use them while the film is running. But the subtitle files are not stored in the folder. There is not error message about that.
I assume this is because there are not enough rights. When I log into the server via SSH and modify the folder rights (via sudo chmod) manually. The AddOn is able to store the subtitles. I give the "others" group write access to that folder.
Here you see the configuration of that share which has "rw" access.
The problematic folder rights are this, shown via SSH-shell on the server
But when I modify them to this the subtitle thing work
I learned that the NFS shares are not mounted the "usual way". There is no mount point in the underlying GNU Linux system.
Kodi does find the server and I can access the content.
I use the OpenSubtitles.org AddOn. It is configured to store the subtitles in the same folder as the videos. It finds subtitles in the internet and also use them while the film is running. But the subtitle files are not stored in the folder. There is not error message about that.
I assume this is because there are not enough rights. When I log into the server via SSH and modify the folder rights (via sudo chmod) manually. The AddOn is able to store the subtitles. I give the "others" group write access to that folder.
Here you see the configuration of that share which has "rw" access.
sh:$ cat /etc/exports | grep Media | grep 31
/Daten/Media 192.168.178.31(rw,async)
The problematic folder rights are this, shown via SSH-shell on the server
Code:
drwxrwxr-x
But when I modify them to this the subtitle thing work
Code:
drwxrwxrwx
I learned that the NFS shares are not mounted the "usual way". There is no mount point in the underlying GNU Linux system.