How To Install caca-utils on Ubuntu 20.04

In this tutorial we learn how to install caca-utils on Ubuntu 20.04. caca-utils is text mode graphics utilities text mode graphics utilities

Introduction

In this tutorial we learn how to install caca-utils on Ubuntu 20.04.

What is caca-utils

caca-utils is:

This package contains utilities and demonstration programs for libcaca, the Colour AsCii Art library.

cacaview is a simple image viewer for the terminal. It opens most image formats such as JPEG, PNG, GIF etc. and renders them on the terminal using ASCII art. The user can zoom and scroll the image, set the dithering method or enable anti-aliasing.

cacafire is a port of AALib’s aafire and displays burning ASCII art flames.

cacademo is a tiny graphic program that renders animated ASCII metaballs, matrix effects, colourful moiré circles and old school plasma effects.

Package: caca-utils Architecture: amd64 Version: 0.99.beta19-2.1ubuntu1 Multi-Arch: foreign Priority: optional Section: universe/utils Source: libcaca Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Sam Hocevar [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 562 Depends: libc6 (>= 2.14), libcaca0 (>= 0.99.beta17-1), libimlib2 (>= 1.4.5) Recommends: toilet Conflicts: libcaca-dev (<= 0.3-1) Replaces: libcaca-dev (<= 0.3-1) Filename: pool/universe/libc/libcaca/caca-utils_0.99.beta19-2.1ubuntu1_amd64.deb Size: 51504 MD5sum: ca1e4f2e88bb9cfda0c822f7d1b86c06 SHA1: d1da7f26945b30c1a47d3cf29e1e4da401e67c41 SHA256: 4de1f3e24d51605a9c995a8b9b6c13221da1945b9a79125a71d12ac9500f7e43 Homepage: http://caca.zoy.org/wiki/libcaca Description-en: text mode graphics utilities This package contains utilities and demonstration programs for libcaca, the Colour AsCii Art library.

cacaview is a simple image viewer for the terminal. It opens most image formats such as JPEG, PNG, GIF etc. and renders them on the terminal using ASCII art. The user can zoom and scroll the image, set the dithering method or enable anti-aliasing.

cacafire is a port of AALib’s aafire and displays burning ASCII art flames.

cacademo is a tiny graphic program that renders animated ASCII metaballs, matrix effects, colourful moiré circles and old school plasma effects.

There are three methods to install caca-utils on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install caca-utils Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install caca-utils

Install caca-utils Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install caca-utils

Install caca-utils 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install caca-utils

How To Uninstall caca-utils on Ubuntu 20.04

To uninstall only the caca-utils package we can use the following command:

sudo apt-get remove caca-utils

Uninstall caca-utils And Its Dependencies

To uninstall caca-utils and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove caca-utils

Remove caca-utils Configurations and Data

To remove caca-utils configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge caca-utils

Remove caca-utils configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge caca-utils

References

Summary

In this tutorial we learn how to install caca-utils package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.