jd command not found

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

Introduction

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

jd: command not found

or when using sudo you get the following error message

sudo: jd: command not found

Solutions to jd: command not found

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

In Ubuntu jd is provided by jdim package.

jdim is:

JDim (JD improved) offers a comfortable browsing experience on 2ch-style bulletin board systems. Its features include:

  • automated login,
  • message viewing/posting,
  • image viewing,
  • mouse gestures,
  • ignore lists,
  • “play-by-play” mode.

It can also significantly reduce the load on servers by bypassing CGI programs and directly retrieving thread data files to your local hard drives.

“2ch-style” web forum sites have their origins in 2channel, which was a very popular Internet forum in Japan. Such sites are often available only in the Japanese language.

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

sudo apt-get -y install jdim

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

You can also use apt command to install jdim.

sudo apt -y install jdim

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

sudo aptitude install jdim

Summary

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