urifind command not found

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

Introduction

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

urifind: command not found

or when using sudo you get the following error message

sudo: urifind: command not found

Solutions to urifind: command not found

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

In Ubuntu urifind is provided by liburi-find-perl package.

liburi-find-perl is:

URI::Find does one thing: Finds URIs and URLs in plain text. It finds them quickly and it finds them all (or what URI::URL considers a URI to be.) It only finds URIs which include a scheme (http:// or the like); for something a bit less strict have a look at URI::Find::Schemeless.

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

sudo apt-get -y install liburi-find-perl

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

You can also use apt command to install liburi-find-perl.

sudo apt -y install liburi-find-perl

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

sudo aptitude install liburi-find-perl

Summary

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