I would like to remove the Network manager's binary on Debian 9. This software is called nm-applet. nm-applet is contained in the PATH. However if I try to remove this software, it is not found. In order to remove the software I use the following command:
sudo apt remove nm-applet
The package is not found is displayed as an output of the run command. Does anybody know why the package is not found if executing the above named command.
dpkg --search …
. – Kamil Maciorowski Jun 16 '20 at 07:20nm-applet
binary is not fromnm-applet
package. There is no such package. Rundpkg --search /usr/bin/nm-applet
orapt-file search bin/nm-applet
and find the right package. – Kamil Maciorowski Jun 16 '20 at 11:41