https://github.com/mediabrowser/emby.isomounting
Contains Emby's embedded iso mounting solution
https://github.com/mediabrowser/emby.isomounting
Last synced: 11 months ago
JSON representation
Contains Emby's embedded iso mounting solution
- Host: GitHub
- URL: https://github.com/mediabrowser/emby.isomounting
- Owner: MediaBrowser
- License: gpl-2.0
- Created: 2013-03-20T17:02:44.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2020-05-31T04:48:28.000Z (about 6 years ago)
- Last Synced: 2025-05-12T22:39:13.698Z (about 1 year ago)
- Language: C#
- Homepage: http://emby.media
- Size: 146 KB
- Stars: 46
- Watchers: 16
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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