Steps to uninstall openoffice linux
Steps to uninstall Open Office in Linux:
—————————————–
1.check the package names:
rpm -qa | grep office
The output will be something like below:
openoffice.org-math-2.4.2-18.1.fc9.i386 openoffice.org-extendedPDF-1.4-4.fc9.noarch openoffice.org-impress-2.4.2-18.1.fc9.i386 openoffice.org-xsltfilter-2.4.2-18.1.fc9.i386 openoffice.org-writer2latex-0.5-2.fc9.i386 openoffice.org-graphicfilter-2.4.2-18.1.fc9.i386 openoffice.org-writer-2.4.2-18.1.fc9.i386 openoffice.org-core-2.4.2-18.1.fc9.i386 goffice-0.6.5-1.fc9.i386 openoffice.org-draw-2.4.2-18.1.fc9.i386 openoffice.org-calc-2.4.2-18.1.fc9.i386
2.Remove all above package by :
rpm -e <package_name> Example:
rpm -e openoffice.org-math-2.4.2-18.1.fc9.i386
3.If above command shows dependency error, use below command and remove one by one.
rpm -e -nodeps <package_name> Example:
rpm -e -nodeps openoffice.org-math-2.4.2-18.1.fc9.i386
4.Check after removing all packages are gone or not.
rpm -qa | grep office
It should not show any output.
5.Remove the old openoffice folder and start installing new one.
rm -rf <openoffice_foldername>
In case of any ©Copyright or missing credits issue please check CopyRights page for faster resolutions.