How To Install tinyjsd on Ubuntu 20.04

In this tutorial we learn how to install tinyjsd on Ubuntu 20.04. tinyjsd is empty package Lightweight JavaScript Debugger for Thunderbird and SeaMonkey

Introduction

In this tutorial we learn how to install tinyjsd on Ubuntu 20.04.

What is tinyjsd

tinyjsd is:

The TinyJSD package has been removed from Ubuntu because it has not been ported to thunderdird series 78 (https://sourceforge.net/u/pbrunschwig/tinyjsd/wiki/Home/).

Package: tinyjsd Architecture: all Version: 1.2+git1-1 Priority: optional Section: universe/libdevel Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Mozilla Extension Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 220 Depends: thunderbird (>= 1:24.0) | seamonkey (>= 2.21) Suggests: jsunit Filename: pool/universe/t/tinyjsd/tinyjsd_1.2+git1-1_all.deb Size: 39616 MD5sum: 7fa4314aca2af8ac1a63cc5a96936384 SHA1: eab161ad32b31e7df272113c785c06be5f1fba8f SHA256: 57011824d0badc64575bee2a91d49c336e1d6c707acc825b06c8a470636f9619 Homepage: https://sourceforge.net/u/pbrunschwig/tinyjsd Description-en: Lightweight JavaScript Debugger for Thunderbird and SeaMonkey TinyJSD is a JavaScript debugger for Mozilla products (Firefox, Thunderbird, SeaMonkey). The key differences to debuggers like Firebug and the debugger built into Firefox are:

  • focused on debugging privileged code such as extensions and the application itself
  • simple user interface for easier use than complex debugger tools

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

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

sudo apt-get update

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

sudo apt-get -y install tinyjsd

Install tinyjsd Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install tinyjsd

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

sudo aptitude -y install tinyjsd

How To Uninstall tinyjsd on Ubuntu 20.04

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

sudo apt-get remove tinyjsd

Uninstall tinyjsd And Its Dependencies

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

sudo apt-get -y autoremove tinyjsd

Remove tinyjsd Configurations and Data

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

sudo apt-get -y purge tinyjsd

Remove tinyjsd configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge tinyjsd

References

Summary

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