Ubuntu Tutorial

How To Install 64tass on Ubuntu

Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes  • 425 words

Introduction

In this tutorial we learn how to install 64tass on Ubuntu.

What is 64tass

64tass is:

Multi pass optimizing macro assembler for the 65xx series of processors. Key features:

There are three methods to install 64tass 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 64tass Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install 64tass

Install 64tass Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install 64tass

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

sudo aptitude -y install 64tass

How To Uninstall 64tass on Ubuntu

To uninstall only the 64tass package we can use the following command:

sudo apt-get remove 64tass

Uninstall 64tass And Its Dependencies

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

sudo apt-get -y autoremove 64tass

Remove 64tass Configurations and Data

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

sudo apt-get -y purge 64tass

Remove 64tass configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge 64tass

Dependencies

64tass have the following dependencies:

References

Summary

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

Follow us

We provides various tutorials about Ubuntu