1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-09 15:15:47 +02:00

minidlna: add page (#17507)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
This commit is contained in:
Adriano Inghingolo 2025-08-08 01:38:20 +02:00 committed by GitHub
parent 9db81d3e42
commit 240a03ce81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

38
pages/common/minidlna.md Normal file
View file

@ -0,0 +1,38 @@
# minidlna
> ReadyMedia (formerly MiniDLNA) is a lightweight media server compatible with DLNA/UPnP-AV clients.
> Used to stream media to smart TVs, consoles, and other DLNA-compatible devices.
> Configuration is typically done via the `minidlna.conf` file.
> More information: <https://manned.org/minidlna>.
- Start the MiniDLNA daemon using the default configuration at `/etc/minidlna.conf`:
`minidlna`
- Start MiniDLNA with a specific configuration file:
`minidlna -f {{path/to/minidlna.conf}}`
- Force a database rescan on startup:
`minidlna -R`
- Run MiniDLNA in the foreground (useful for debugging):
`minidlna -d`
- Enable verbose debug output:
`minidlna -d -v`
- Specify a custom media directory (overrides config):
`minidlna -m {{path/to/media}}`
- Specify a custom database directory:
`minidlna -P {{path/to/pidfile}}`
- Specify a custom log file path:
`minidlna -l {{path/to/logfil.log}}`