lz4jsoncat command not found

In this troubleshooting guide we learn how to fix lz4jsoncat command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

lz4jsoncat: command not found

or when using sudo you get the following error message

sudo: lz4jsoncat: command not found

Solutions to lz4jsoncat: command not found

How To Fix lz4jsoncat: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu lz4jsoncat is provided by lz4json package.

lz4json is:

Instead of a standard .json.lz4, Firefox uses its own format to compress its bookmarks and session restore files. This tool lets you read them, converting to json. Going from json to a human-readable format is then up to you.

To fix this problem, we can install more using the command below.

sudo apt-get -y install lz4json

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install lz4json.

sudo apt -y install lz4json

Or if you have aptitude installed you can use the following command.

sudo aptitude install lz4json

Summary

In this tutorial we learn how to fix lz4jsoncat command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.