what is uninstall procedure for software installed via "make install" on CentOS 6.2

Posted by gkdsp on Server Fault See other posts from Server Fault or by gkdsp
Published on 2012-08-29T00:48:35Z Indexed on 2012/08/29 3:40 UTC
Read the original article Hit count: 471

Filed under:
|

I installed OCILIB on my CentOS 6.2 server some time ago, and now I want to install a newer version. The vendor requires an uninstall, but doesn't provide instructions. I'm guessing that's because it's trivial for people with a Linux background.

http://orclib.sourceforge.net/doc/html/group_g_install.html

If I installed this software using:

step 1: # ./configure --with-oracle-headers-path=/usr/include/oracle/11.2/client64 --with-oracle-lib-path=/usr/lib/oracle/11.2/client64/lib

step 2: # make

step 3: # su root

step 4: # make install

step 5: # gcc -g -DOCI_IMPORT_LINKAGE -DOCI_CHARSET_ANSI -L/usr/lib/oracle/11.2/client64/lib -lclntsh -L/usr/local/lib -locilib conn.c -o conn

How would I go about uninstalling this? I tried following this

http://www.cyberciti.biz/faq/delete-uninstall-software-linux-commands/

but nothing was found on my disk using rpm -qa *oci* or yum list *oci*. Maybe since it wasn't installed with yum or rpm then I shouldn't expect either of these to find it. Are there generic instructions for uninstalling software on Linux that I could use, or do the instructions really depend on the specific software? Any help much appreciated.

© Server Fault or respective owner

Related posts about linux

Related posts about centos