jellyfin/Emby.IsoMounting
Bond_009 b4edb24ec3 Change libraries from netcoreapp to netstandard
Ref: https://dotnetcoretutorials.com/2017/01/13/net-standard-vs-net-core-whats-difference/
2018-12-12 21:39:22 +01:00
..
IsoMounter Change libraries from netcoreapp to netstandard 2018-12-12 21:39:22 +01:00
.gitignore Move submodules into repo 2018-12-11 04:05:50 +03:00
IsoMounter.sln Move submodules into repo 2018-12-11 04:05:50 +03:00
LICENSE Move submodules into repo 2018-12-11 04:05:50 +03:00
README.md Move submodules into repo 2018-12-11 04:05:50 +03:00

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