How To Install texlive-full on Kali Linux
Introduction
In this tutorial we learn how to install texlive-full on Kali Linux.
What is texlive-full
texlive-full is:
The TeX Live software distribution offers a complete TeX system. It encompasses programs for typesetting, previewing and printing of TeX documents in many different languages, and a large collection of TeX macros and font libraries. . The distribution also includes extensive general documentation about TeX, as well as the documentation accompanying the included software packages.
There are three methods to install texlive-full 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 texlive-full Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install texlive-full using apt-get by running the following command:
sudo apt-get -y install texlive-fullInstall texlive-full Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install texlive-full using apt by running the following command:
sudo apt -y install texlive-fullInstall texlive-full 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 updateAfter updating apt database, We can install texlive-full using aptitude by running the following command:
sudo aptitude -y install texlive-fullHow To Uninstall texlive-full on Kali Linux
To uninstall only the texlive-full package we can use the following command:
sudo apt-get remove texlive-fullUninstall texlive-full And Its Dependencies
To uninstall texlive-full and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove texlive-fullRemove texlive-full Configurations and Data
To remove texlive-full configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge texlive-fullRemove texlive-full configuration, data, and all of its dependencies
We can use the following command to remove texlive-full configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge texlive-fullDependencies
texlive-full have the following dependencies:
- asymptote
- biber
- chktex
- cm-super
- context
- dvidvi
- dvipng
- feynmf
- fragmaster
- info
- lacheck
- latex-cjk-all
- latexdiff
- latexmk
- lcdf-typetools
- lmodern
- prerex
- psutils
- purifyeps
- t1utils
- tex-gyre
- texinfo
- texlive-base
- texlive-bibtex-extra
- texlive-binaries
- texlive-extra-utils
- texlive-font-utils
- texlive-fonts-extra
- texlive-fonts-extra-doc
- texlive-fonts-extra-links
- texlive-fonts-recommended
- texlive-fonts-recommended-doc
- texlive-formats-extra
- texlive-games
- texlive-humanities
- texlive-humanities-doc
- texlive-lang-arabic
- texlive-lang-chinese
- texlive-lang-cjk
- texlive-lang-cyrillic
- texlive-lang-czechslovak
- texlive-lang-english
- texlive-lang-european
- texlive-lang-french
- texlive-lang-german
- texlive-lang-greek
- texlive-lang-italian
- texlive-lang-japanese
- texlive-lang-korean
- texlive-lang-other
- texlive-lang-polish
- texlive-lang-portuguese
- texlive-lang-spanish
- texlive-latex-base
- texlive-latex-base-doc
- texlive-latex-extra
- texlive-latex-extra-doc
- texlive-latex-recommended
- texlive-latex-recommended-doc
- texlive-luatex
- texlive-metapost
- texlive-metapost-doc
- texlive-music
- texlive-pictures
- texlive-pictures-doc
- texlive-plain-generic
- texlive-pstricks
- texlive-pstricks-doc
- texlive-publishers
- texlive-publishers-doc
- texlive-science
- texlive-science-doc
- texlive-xetex
- tipa
References
Summary
In this tutorial we learn how to install texlive-full package on Kali Linux using different package management tools: apt, apt-get and aptitude.