Linux

Install mpd on Ubuntu: sudo apt-get install mpd

Learn how to install mpd with the command sudo apt-get install mpd on Ubuntus.

Quick installation of mpd:

Step 1: Update system:

sudo apt-get update

Step 2: Install: mpd

Ater updaing the OS run following command to install the packae:

sudo apt-get install mpd

Package Details

Package:mpd
Version:0.16.5-1ubuntu4
Maintainer:Ubuntu Developers
Home page:http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki
Description:Music Player Daemon Music Player Daemon (MPD) is a server that allows remote access for playing audio files (Ogg-Vorbis, FLAC, MP3, Wave, and AIFF), streams (Ogg-Vorbis, MP3) and managing playlists. Gapless playback, buffered output, and crossfading support is also included. The design focus is on integrating a computer into a stereo system that provides control for music playback over a TCP/IP network. The goals are to be easy to install and use, to have minimal resource requirements (it has been reported to run fine on a Pentium 75), and to remain stable and flexible. . The daemon is controlled through a client which need not run on the same computer mpd runs on. The separate client and server design allows users to choose a user interface that best suites their tastes independently of the underlying daemon (this package) which actually plays music. Homepage: http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki
Distro:Ubuntu 12.04 LTS
Release:
Repo/Section:universe/sound

How to install mpd on Ubuntu 12.04 LTS?

First of all update your system with the command:

sudo apt-get update

Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.

After downloading the latest package list with the help of above you can run the installation process.

If mpd is not installed on your compter then the command 'dpkg -L mpd' will give followin error.

deepak@deepak-VirtualBox:~$ dpkg -L mpd
Package `mpd' is not installed.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
deepak@deepak-VirtualBox:~$ 

Installing mpd:

After system update use the following command to install mpd:

sudo apt-get install mpd

Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.

How to uninstall/remove mpd from Ubuntu 12.04 LTS?

Now we will see the commands for uninstalling the mpd from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.

To remove the mpd following command is used:

sudo apt-get remove  mpd

Following command is used to remove the mpd package along with its dependencies:

sudo apt-get remove --auto-remove mpd

This will remove mpd and all its dependent packages which is no longer needed in the system.

Completely removing mpd with all configuration files:

Following command should be used with care as it deletes all the configuration files and data:

sudo apt-get purge mpd

or you can use following command also:

sudo apt-get purge --auto-remove mpd

Above command will remove all the configuration files and data associated with mpd package. You can can't recover the delete data, so, use this command with care.

Get our newsletter

Categories