Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/1dde7472674af18950477fdc89e685b06eb36a18/Emby.IsoMounting You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.IsoMounting
Bond_009 79d18cf5a5 Clean up some catch statements 6 years ago
..
IsoMounter Clean up some catch statements 6 years ago
.gitignore Move submodules into repo 6 years ago
IsoMounter.sln Move submodules into repo 6 years ago
LICENSE Move submodules into repo 6 years ago
README.md Fix markdown formatting 6 years ago

README.md

MediaBrowser.IsoMounting.Linux

This implements two core interfaces, IIsoManager, and IIsoMount.

IIsoManager

The manager class can be used to create a mount, and also determine if the mounter is capable of mounting a given file.

IIsoMount

IIsoMount then represents a mount instance, which will be unmounted on disposal.


This Linux version use sudo, mount and umount.

You need to add this to your sudo file via visudo(change the username):

Defaults:jsmith !requiretty
jsmith ALL=(root) NOPASSWD: /bin/mount
jsmith ALL=(root) NOPASSWD: /bin/umount