Learn how to install xz-utils with the command sudo apt-get install xz-utils on Ubuntus.
Ads
Quick installation of xz-utils:
Step 1: Update system:
sudo apt-get update
Step 2: Install: xz-utils
Ater updaing the OS run following command to install the packae:
sudo apt-get install xz-utils
Package Details | |
Package: | xz-utils |
Version: | 5.1.1alpha+20110809-3 |
Maintainer: | Ubuntu Developers |
Home page: | http://tukaani.org/xz/ |
Description: | XZ-format compression utilities XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm compression format, which provides memory-hungry but powerful compression (often better than bzip2) and fast, easy decompression. . This package provides the command line tools for working with XZ compression, including xz, unxz, xzcat, xzgrep, and so on. They can also handle the older LZMA format, and if invoked via appropriate symlinks will emulate the behavior of the commands in the lzma package. . The XZ format is similar to the older LZMA format but includes some improvements for general use: . * 'file' magic for detecting XZ files; * crc64 data integrity check; * limited random-access reading support; * improved support for multithreading (not used in xz-utils); * support for flushing the encoder. Multi-Arch: foreign Homepage: http://tukaani.org/xz/ |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | utils |
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 xz-utils is not installed on your compter then the command 'dpkg -L xz-utils' will give followin error.
Installing xz-utils:
After system update use the following command to install xz-utils:
sudo apt-get install xz-utils
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.
Now we will see the commands for uninstalling the xz-utils 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 xz-utils following command is used:
sudo apt-get remove xz-utils
Following command is used to remove the xz-utils package along with its dependencies:
sudo apt-get remove --auto-remove xz-utils
This will remove xz-utils and all its dependent packages which is no longer needed in the system.
Completely removing xz-utils with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge xz-utils
or you can use following command also:
sudo apt-get purge --auto-remove xz-utils
Above command will remove all the configuration files and data associated with xz-utils package. You can can't recover the delete data, so, use this command with care.