undbx command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
undbx: command not found
or when using sudo you get the following error message
sudo: undbx: command not found
Solutions to undbx: command not found
How To Fix undbx: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu undbx is provided by undbx package.
undbx is:
UnDBX is a tool to extract, recover and undelete e-mail messages from MS Outlook Express .dbx files (or similar e-mail programs in MS Windows). Corrupted .dbx files can be parsed to try to recover messages from it. It can also try to undelete messages, not only from Deleted Items but also from fragments of deleted messages that were not overwritten.
UnDBX is useful in forensics investigations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install undbx
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install undbx.
sudo apt -y install undbx
Or if you have aptitude installed you can use the following command.
sudo aptitude install undbx
Summary
In this tutorial we learn how to fix undbx command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.