I am trying to revert everything installed while compiling dependencies.
I looked inside /var/log/dpkg
but couldn't find the location of the installed libraries.
Which log can I look into to remove/revert everything installed from the sources?
Asked
Active
Viewed 13 times
0

Future Gadget
- 167
/var/log/apt/*
you can get the name of the packages you installed. Packages should be removed, not the library files.sudo apt autoremove
will remove all packages not required by a currently installed packge, and is probably your safest choice. – waltinator Aug 17 '18 at 03:42