jellyfin/Emby.IsoMounting
2019-03-14 22:17:56 +01:00
..
IsoMounter Adjusted AssemblyCopyright attribute values. 2019-03-14 22:17:56 +01:00
.gitignore Move submodules into repo 2018-12-11 04:05:50 +03:00
IsoMounter.sln Find+Sed BOM removal *.xml,*.csproj,*,json,*.sln,*.txt 2019-01-13 21:10:15 +01:00
LICENSE Move submodules into repo 2018-12-11 04:05:50 +03:00
README.md Fix markdown formatting 2018-12-14 09:31:12 -05:00

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