edbrowse command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
edbrowse: command not found
or when using sudo you get the following error message
sudo: edbrowse: command not found
Solutions to edbrowse: command not found
How To Fix edbrowse: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu edbrowse is provided by edbrowse package.
edbrowse is:
edbrowse is a reimplementation of /bin/ed, with some basic differences (it uses Perl regular expressions) with the ability to visit webpages and ftp sites. edbrowse performs basic transformations on the html source to produce a readable representation. edbrowse supports Forms, Frames, Netscape-style cookies, HTTPS connections and JavaScript.
To fix this problem, we can install more using the command below.
sudo apt-get -y install edbrowse
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install edbrowse.
sudo apt -y install edbrowse
Or if you have aptitude installed you can use the following command.
sudo aptitude install edbrowse
Summary
In this tutorial we learn how to fix edbrowse command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.