Ubuntu Tutorial

How To Install ftjam on Ubuntu

Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes  • 456 words

Introduction

In this tutorial we learn how to install ftjam on Ubuntu.

What is ftjam

ftjam is:

This is a version of Jam with additional features and bugfixes, which is maintained by the FreeType project.

Perforce’s Jam (formerly called Jam/MR, available in package “jam”) is a powerful and highly customizable utility to build programs and other things, that can run on Un*x, Nt, VMS, OS/2 and Macintosh MPW, using portable Jamfiles. It can build large projects spread across many directories in one pass, and can run jobs in parallel where make would not.

It takes some time to fully apprehend, especially when one’s already accustomed to make(1), but there’s no comparison in power when comparing these two tools.

Standard rules:

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

Install ftjam Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install ftjam

Install ftjam Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ftjam using apt by running the following command:

sudo apt -y install ftjam

Install ftjam 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 ftjam using aptitude by running the following command:

sudo aptitude -y install ftjam

How To Uninstall ftjam on Ubuntu

To uninstall only the ftjam package we can use the following command:

sudo apt-get remove ftjam

Uninstall ftjam And Its Dependencies

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

sudo apt-get -y autoremove ftjam

Remove ftjam Configurations and Data

To remove ftjam configuration and data from Ubuntu we can use the following command:

sudo apt-get -y purge ftjam

Remove ftjam configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge ftjam

Dependencies

ftjam have the following dependencies:

References

Summary

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

Follow us

We provides various tutorials about Ubuntu