Linux

Install dbus on Ubuntu: sudo apt-get install dbus

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

Quick installation of dbus:

Step 1: Update system:

sudo apt-get update

Step 2: Install: dbus

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

sudo apt-get install dbus

Package Details

Package:dbus
Version:1.4.18-1ubuntu1.7
Maintainer:Ubuntu Developers
Home page:http://dbus.freedesktop.org/
Description:simple interprocess messaging system (daemon and utilities) D-Bus is a message bus, used for sending messages between applications. Conceptually, it fits somewhere in between raw sockets and CORBA in terms of complexity. . D-Bus supports broadcast messages, asynchronous messages (thus decreasing latency), authentication, and more. It is designed to be low-overhead; messages are sent using a binary protocol, not using XML. D-Bus also supports a method call mapping for its messages, but it is not required; this makes using the system quite simple. . It comes with several bindings, including GLib, Python, Qt and Java. . This package contains the D-Bus daemon and related utilities. . The client-side library can be found in the libdbus-1-3 package, as it is no longer contained in this package. Multi-Arch: foreign Homepage: http://dbus.freedesktop.org/
Distro:Ubuntu 12.04 LTS
Release:
Repo/Section:devel

How to install dbus 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 dbus is not installed on your compter then the command 'dpkg -L dbus' will give followin error.




	

Installing dbus:

After system update use the following command to install dbus:

sudo apt-get install dbus

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 dbus from Ubuntu 12.04 LTS?

Now we will see the commands for uninstalling the dbus 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 dbus following command is used:

sudo apt-get remove  dbus

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

sudo apt-get remove --auto-remove dbus

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

Completely removing dbus with all configuration files:

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

sudo apt-get purge dbus

or you can use following command also:

sudo apt-get purge --auto-remove dbus

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

Get our newsletter

Categories