I want to remove program "fio" from my Ubuntu. First, tried
apt-get remove fio
but it did not work. Then I tried to find its package name by
whereis fio
dpkg-query -S /usr/local/bin/fio
but dpkg-query says "no path found matching pattern /usr/local/bin/fio". Any suggestion would be appreciated.
.deb
files) are usually not installed in/usr/local/
. – Florian Diesch Jan 15 '15 at 16:45make uninstall
from the same directory asmake install
? – David Foerster Mar 10 '15 at 00:48install
target but not anuninstall
target... – Anon Jan 05 '20 at 20:24