How To Install elpa-ox-texinfo+ on Kali Linux

In this tutorial we learn how to install elpa-ox-texinfo+ on Kali Linux. elpa-ox-texinfo+ is Extensions for Orgs Texinfo exporter

Introduction

In this tutorial we learn how to install elpa-ox-texinfo+ on Kali Linux.

What is elpa-ox-texinfo+

elpa-ox-texinfo+ is:

This package provides some extensions for Org’s texinfo' exporter defined in ox-texinfo'.

  1. Create `@deffn’ and similar definition items by writing list items in Org that look similar to what they will look like in Info.

  2. Optionally share a section’s node with some or all of its child sections. By default every section on every level gets its own node, and `ox-texinfo’ provides no mechanism for changing that.

  3. Optionally modify the Org file before exporting it. This is implemented using a hook that can be set using the `BIND’ property:

    #+BIND: ox-texinfo+-before-export-hook some-function #+BIND: ox-texinfo+-before-export-hook another-function

  4. Fully respect the local value of `indent-tabs-mode’ from the Org file when editing source blocks and exporting. This affects all source blocks and all exporters.

There are three methods to install elpa-ox-texinfo+ on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install elpa-ox-texinfo+ Using apt-get

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

sudo apt-get update

After updating apt database, We can install elpa-ox-texinfo+ using apt-get by running the following command:

sudo apt-get -y install elpa-ox-texinfo+

Install elpa-ox-texinfo+ Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install elpa-ox-texinfo+ using apt by running the following command:

sudo apt -y install elpa-ox-texinfo+

Install elpa-ox-texinfo+ Using aptitude

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

sudo aptitude update

After updating apt database, We can install elpa-ox-texinfo+ using aptitude by running the following command:

sudo aptitude -y install elpa-ox-texinfo+

How To Uninstall elpa-ox-texinfo+ on Kali Linux

To uninstall only the elpa-ox-texinfo+ package we can use the following command:

sudo apt-get remove elpa-ox-texinfo+

Uninstall elpa-ox-texinfo+ And Its Dependencies

To uninstall elpa-ox-texinfo+ and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove elpa-ox-texinfo+

Remove elpa-ox-texinfo+ Configurations and Data

To remove elpa-ox-texinfo+ configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge elpa-ox-texinfo+

Remove elpa-ox-texinfo+ configuration, data, and all of its dependencies

We can use the following command to remove elpa-ox-texinfo+ configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge elpa-ox-texinfo+

Dependencies

elpa-ox-texinfo+ have the following dependencies:

References

Summary

In this tutorial we learn how to install elpa-ox-texinfo+ package on Kali Linux using different package management tools: apt, apt-get and aptitude.