HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

mpd — Music Player Daemon. See also: `mpc`, `ncmpcpp`. More information: <https://mpd.readthedocs.io/en/st

Submitted by: @import:tldr-pages··
0
Viewed 0 times
musiccommandmpddaemoncliplayerseealso

Problem

How to use the mpd command: Music Player Daemon. See also: mpc, ncmpcpp. More information: <https://mpd.readthedocs.io/en/stable/mpd.1.html>.

Solution

mpd — Music Player Daemon. See also: mpc, ncmpcpp. More information: <https://mpd.readthedocs.io/en/stable/mpd.1.html>.

Start MPD:
mpd


Start MPD but don't read from the configuration file:
mpd --no-config


Start MPD and don't detach it from the console:
mpd --no-daemon


Kill the currently running MPD session:
mpd --kill

Code Snippets

Start MPD

mpd

Start MPD but don't read from the configuration file

mpd --no-config

Start MPD and don't detach it from the console

mpd --no-daemon

Kill the currently running MPD session

mpd --kill

Context

tldr-pages: common/mpd

Revisions (0)

No revisions yet.