Linux-Noob Forums
How do I uninstall... - Printable Version

+- Linux-Noob Forums (https://www.linux-noob.com/forums)
+-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html)
+--- Forum: Tips and Tricks (https://www.linux-noob.com/forums/forum-59.html)
+---- Forum: Filesystem Management (https://www.linux-noob.com/forums/forum-26.html)
+---- Thread: How do I uninstall... (/thread-1664.html)



How do I uninstall... - SF100 - 2006-12-24

Being a long time windoze user I was drawn to antivirus software but I now realize I don't need it with Linux. I installed Bitdefender AV for Linux but now cannot find any trace of it to uninstall. How do I get rid of all traces of this.



How do I uninstall... - anyweb - 2006-12-28


what file did you download to install it in the first place ?

 

if it was an rpm file then uninstalling rpm's is as easy as

 

rpm -e package

 

where [package] is the rpm file you installed in the first place

 

if the program you installed was installed from source then the INSTALL file should give details of installation plus removal

 

cheers

anyweb




How do I uninstall... - SF100 - 2006-12-29


Quote:what file did you download to install it in the first place ? 

if it was an rpm file then uninstalling rpm's is as easy as

 

rpm -e package

 

where [package] is the rpm file you installed in the first place

 

if the program you installed was installed from source then the INSTALL file should give details of installation plus removal

 

cheers

anyweb
 

Im running ubuntu and it was a .deb file that i installed from. Is it the same with that?




How do I uninstall... - anyweb - 2006-12-29


To uninstall a .deb file, deselect it in your package manager, or type:

 



Code:
sudo dpkg -r package_name







How do I uninstall... - SF100 - 2006-12-29


Quote:To uninstall a .deb file, deselect it in your package manager, or type: 



Code:
sudo dpkg -r package_name

<div>


</div>
 

 

Thank you, Im very new and this is turning into a humbling experience for me.




How do I uninstall... - anyweb - 2006-12-29


you are welcome :)

 

and that is why we are here

 

cheers