- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Secure OS Software for Linux
- >
- Re: How to Remove program which installed by sourc...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 02:37 PM
08-26-2003 02:37 PM
How to Remove program which installed by source code ?
I've installed openssl on linux Suse 8.2
tar -xvzf openssl-0.9.7b.tar.gz
./config --prefix=/usr/local/openssl
make
make test
make install
how to deinstall it ?
I can't find unsinstall.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 04:41 PM
08-26-2003 04:41 PM
Re: How to Remove program which installed by source code ?
Then for all intents and purposes its gone. Its not in any database like rpm or anything like that.
Just the good old rm command.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 09:46 PM
08-26-2003 09:46 PM
Re: How to Remove program which installed by source code ?
In lot of source packages , this option is available.
#make uninstall
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 09:48 PM
08-26-2003 09:48 PM
Re: How to Remove program which installed by source code ?
In lot of source packages , this option is available.
#make uninstall
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 09:49 PM
08-26-2003 09:49 PM
Re: How to Remove program which installed by source code ?
In lot of source packages , this option is available.
#make uninstall
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 09:49 PM
08-26-2003 09:49 PM
Re: How to Remove program which installed by source code ?
In lot of source packages , this option is available.
#make uninstall
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 10:39 PM
08-26-2003 10:39 PM
Re: How to Remove program which installed by source code ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 10:55 PM
08-26-2003 10:55 PM
Re: How to Remove program which installed by source code ?
you mean to delete the entire openssl folder
under:
/usr/local/openssl
and that's enough ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 11:41 PM
08-26-2003 11:41 PM
Re: How to Remove program which installed by source code ?
try this
make uninstall
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2003 12:55 AM
08-27-2003 12:55 AM
Re: How to Remove program which installed by source code ?
then you will have to rm the files by hand ... the long way!
To help along you could perhaps find all the file from the install directory ... if you still have that doing a grep for string like ssl and lib on file from the install directory could help you indentify most of the files other the the binary's
also some tailored find with creation time could also help you a long!
as last ressort you could also reinstall openss-0.9.7b outputing all the installed files to a log .... then procede with the rm using this log as a guide.
But be carefull not to rm files used by other ressources ... come to thing of it is leaving them there such a problem ?
I also noticed that you have never given points to any of your more then 100 questions I like many others like to help others, but we do find points rewarding so please just click on points on the top right of answer(s) and assign values from 0 to 10 thanks.
Jean-Pierre
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2003 12:11 PM
08-27-2003 12:11 PM
Re: How to Remove program which installed by source code ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2003 02:15 PM
08-27-2003 02:15 PM
Re: How to Remove program which installed by source code ?
look in /etc/ for any configuration files but you really don't nee to get rid of them.
If you put the openssl binary directory in your PATH, good sysadmin practices dictate that you remove it. /etc/profile or .profile for the users.
Thats it.
Quite simple.
rm
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2003 06:40 AM
08-29-2003 06:40 AM
Re: How to Remove program which installed by source code ?
Hope this helps.
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2003 12:01 PM
08-31-2003 12:01 PM
Re: How to Remove program which installed by source code ?
Check in the Makefile and if you have
option that made some "remove" operation.
If not then you can check the Makefile
and see what he copy when you do "install"
and also delete /usr/local/openssl
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2003 10:48 PM
08-31-2003 10:48 PM
Re: How to Remove program which installed by source code ?
u know what files are being copied and can remove them manually if make uninstall doesnt help?
what say?
-balaji