Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Removing a programme that doesn't have an uninstall binary 2

Status
Not open for further replies.

bazil2

Technical User
Feb 15, 2010
148
0
0
DE
(Elementary user)

I have an installation of Opene Office on a RHEL 5 server.

It is located here: /opt/openoffice.org2.1/

I can't find an uninstall binary, can anyone tell me if there is a way to remove this using the command line?

Best regards
 
Here's a start...
Code:
# as root
cd /opt
rm -rf openoffice.org2.1
Then, look in [tt]/etc[/tt], [tt]/etc/init.d[/tt], and [tt]/etc/rc*.d[/tt] for any supporting startup or config files.

Also, any user that has used it may have supporting files or directories in their home directory, but it's safe to leave these in case you ever decide to reinstall it.


 
if you do reinstall use yum or rpm it will make things much easier

ie
yum install openoffice.org-writer

should install writer without any problems (& upgrade when updates are released)


I do not Have A.D.D. im just easily, Hey look a Squirrel!
 
Assuming he used the old ./configure && make && make install you should be able to go back into the install directory and run make uninstall
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top