Fork me on GitHub

Other articles


  1. How to setup MPD on ubuntu

    Note

    this is a very basic setup

    Installation

    Install the daemon and client:

    # apt-get update
    # apt-get install mpd mpc
    

    Configuration

    Change the folowing lines:

    bind_to_address "localhost"
    

    to:

    bind_to_address "0.0.0.0"
    

    Comment the ALSA audio_output:

    #
    #audio_output {
    #       type            "alsa"
    #       name            "My ALSA Device"
    #       device          "hw:0,0"        # optional
    #       format          "44100 ...
    read more

    There are comments.

social