xlinks2 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xlinks2: command not found
or when using sudo you get the following error message
sudo: xlinks2: command not found
Solutions to xlinks2: command not found
How To Fix xlinks2: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xlinks2 is provided by links2 package.
links2 is:
Links is a graphics and text mode WWW browser, similar to Lynx. It displays tables, frames, downloads on background, uses HTTP/1.1 keepalive connections. In graphics mode it displays PNG, JPEG, GIF, TIFF, and XBM pictures, runs external bindings on other types, and features anti-aliased font, smooth image zooming, 48-bit dithering, and gamma and aspect ratio correction.
To fix this problem, we can install more using the command below.
sudo apt-get -y install links2
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install links2.
sudo apt -y install links2
Or if you have aptitude installed you can use the following command.
sudo aptitude install links2
Summary
In this tutorial we learn how to fix xlinks2 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.