Install libxml2-dbg on Ubuntu: sudo apt-get install libxml2-dbg

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


 

Ads

Quick installation of libxml2-dbg:

Step 1: Update system:

	sudo apt-get update

Step 2: Install: libxml2-dbg

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

	sudo apt-get install libxml2-dbg

Package Details

Package:libxml2-dbg
Version:2.7.8.dfsg-5.1ubuntu4.15
Maintainer:Ubuntu Developers
Home page:http://xmlsoft.org/
Description:Debugging symbols for the GNOME XML library XML is a metalanguage to let you design your own markup language. A regular markup language defines a way to describe information in a certain class of documents (eg HTML). XML lets you define your own customized markup languages for many classes of document. It can do this because it's written in SGML, the international standard metalanguage for markup languages. . This package provides the debugging symbols for the library and for the utilities provided by the libxml2-utils package. Debugging symbols for the Python modules are not available. Homepage: http://xmlsoft.org/
Distro:Ubuntu 12.04 LTS
Release:
Repo/Section:debug

How to install libxml2-dbg on Ubuntu 12.04 LTS?

First of all update your system with the command:

sudo apt-get update

Ads

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

deepak@deepak-VirtualBox:~$ dpkg -L libxml2-dbg
Package `libxml2-dbg' 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 libxml2-dbg:

After system update use the following command to install libxml2-dbg:

sudo apt-get install libxml2-dbg

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

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

sudo apt-get remove  libxml2-dbg

Following command is used to remove the libxml2-dbg package along with its dependencies:

sudo apt-get remove --auto-remove libxml2-dbg

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

Completely removing libxml2-dbg with all configuration files:

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

sudo apt-get purge libxml2-dbg

or you can use following command also:

sudo apt-get purge --auto-remove libxml2-dbg

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