wdel command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wdel: command not found
or when using sudo you get the following error message
sudo: wdel: command not found
Solutions to wdel: command not found
How To Fix wdel: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wdel is provided by wput package.
wput is:
Wput is a tiny ftp-client, that uploads files or directories to a remote ftp-server.
Main features are: resuming, time-stamping, wget-like interface, proxy-support and speed-limit.
To fix this problem, we can install more using the command below.
sudo apt-get -y install wput
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install wput.
sudo apt -y install wput
Or if you have aptitude installed you can use the following command.
sudo aptitude install wput
Summary
In this tutorial we learn how to fix wdel command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.