I wanted to install a launcher which is actually for enter and play in a server in Minecraft(I don't know if giving the name of the game is forbidden) and to do this I went to the website of the launcher and downloaded an .tar.gz package then I used this command for extract it
tar -xvf <downloaded.tar.gz>
It contains an usr/ folder and a Makefile file. Then I used sudo make install
command for download it and it downloaded successfully(although that, I couldn't launch the game it just crashed) Now I wanna uninstall it but I don't know how to do that I searched for that and visit some websites but I didn't work. What I should do?
(Sorry for horrible English)
cd
'd to the directory containing theMakefile
, dosudo make uninstall
? ManyMakefile
s provide an 'uninstall
' target. – waltinator Feb 04 '22 at 19:38checkinstall
package, and rerun the install under the control oflogwatch
. That will give you a list of the files installed, that you can manually delete. – waltinator Feb 04 '22 at 23:18