I want to uninstall acroread that I downloaded from adobe's website and installed. How can I do that?
Asked
Active
Viewed 3.0k times
7 Answers
26
Or if that still doesn't work and returns Package acroread is not installed, so not removed you can try sudo apt-get purge adobereader-enu && sudo apt-get autoremove.
(Taken from http://ubuntuforums.org/showthread.php?t=1453166#5)
onse
- 1,099
-
1
-
-
This is it, because the package installed from .deb showed the package name adobereader-enu, not adobereader – Sayan Dey Mar 11 '21 at 13:10
10
There is an UNINSTALL script in the same folder where you installed it.
$ locate UNINSTALL
/usr/local/Adobe/Reader9/bin/UNINSTALL
$ cd /usr/local/Adobe/Reader9/bin
$ sudo ./UNINSTALL
Done!
Lennart Regebro
- 174
-
1I also had to remove an icon of Adobe Reader from the list of applications in GNOME. The icon was in
~/.local/share/applications/. It might also be in/usr/share/applications/– Maksim Dmitriev Oct 03 '14 at 17:06 -
6
I also tried many ways to uninstall adobe reader 9 and this method worked for me
sudo apt-get purge acroread-bin
sudo apt-get autoremove
Eric Carvalho
- 55,573
pareekrachit
- 61
- 1
- 2
1
I installed Adobe Reader based on video here: https://youtu.be/04-J55bnTLQ Then, I saw the software only allows me to see pdf files, but not to sign them; for uninstall Adobe Reader,it worked for me this:
sudo apt-get purge adobereader-enu && sudo apt-get autoremove
tinlyx
- 3,328