How To Install calibre-bin on Debian 9

In this tutorial we learn how to install calibre-bin on Debian 9. calibre-bin is e-book converter and library management

Introduction

In this tutorial we learn how to install calibre-bin on Debian 9.

What is calibre-bin

calibre-bin is:

Calibre is meant to be a complete e-library solution. It includes library management, format conversion, news feeds to e-book conversion as well as e-book reader sync features.

Calibre is primarily an e-book cataloging program. It manages your e-book collection for you. It is designed around the concept of the logical book, i.e. a single entry in the database that may correspond to e-books in several formats. It also supports conversion from a dozen different e-book formats to LRF and EPUB. A graphical interface to the conversion software can be accessed easily by just clicking the “Convert E-books” button.

Supported input formats are: MOBI, LIT, PRC, EPUB, ODT, HTML, CBR, CBZ, RTF, TXT, PDF and LRS.

Calibre has a modular device driver design that makes adding support for different e-reader devices easy. At the moment, it has support for the SONY PRS 500/505/700 and the iPhone (with the stanza reader software). Syncing supports updating metadata on the device from metadata in the library and the creation of collections on the device based on the tags defined in the library view. If an book has more than one format available, calibre automatically chooses the best format when uploading to the device.

Calibre can automatically fetch news from a number of websites/RSS feeds, format the news into a e-book and upload to a connected device. There is support for generating LRF/EPUB e-books. The e-books include the full versions of the articles, not just the summaries.

Calibre has also a built-in e-book viewer that can display all the major e-book formats.

This package contains the compiled architecture dependent plugins.

There are three methods to install calibre-bin on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install calibre-bin Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install calibre-bin using apt-get by running the following command:

sudo apt-get -y install calibre-bin

Install calibre-bin Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install calibre-bin using apt by running the following command:

sudo apt -y install calibre-bin

Install calibre-bin Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install calibre-bin using aptitude by running the following command:

sudo aptitude -y install calibre-bin

How To Uninstall calibre-bin on Debian 9

To uninstall only the calibre-bin package we can use the following command:

sudo apt-get remove calibre-bin

Uninstall calibre-bin And Its Dependencies

To uninstall calibre-bin and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove calibre-bin

Remove calibre-bin Configurations and Data

To remove calibre-bin configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge calibre-bin

Remove calibre-bin configuration, data, and all of its dependencies

We can use the following command to remove calibre-bin configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge calibre-bin

Dependencies

calibre-bin have the following dependencies:

References

Summary

In this tutorial we learn how to install calibre-bin package on Debian 9 using different package management tools: apt, apt-get and aptitude.