- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: removing old software from HP-UX 11
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
05-13-2004 06:27 PM
05-13-2004 06:27 PM
This sounds quite confusing...
Let me put a scenario to help clear the picture.
1. I have a system installed with DBI version 1.1.3, MD5 1.7, DBD Oracle 1.03 and perl 5.6
2. I have to upgrade to this programs to the latest version.
(so far perl has a '.depot' from HP)
what should i do?
how can i remove the programs that have been previously installed on HP-UX?
how can i make sure that HP-UX don't link the old files to the new program that i have installed on the system.
how can i remove the links (symbolic link)?
seriously confused
calvin
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2004 07:19 PM
05-13-2004 07:19 PM
Re: removing old software from HP-UX 11
Probably the previous version are not installed with swinstall, but you could check the output from ( # swlist -l product | grep -i perl )
If they are not installed with swinstall you can remove them with the rm command and remove the PATH variable from your default PATH. If they are installed with swinstall, use swremove to remove them from your system.
A good site for downloading perl etc. is Merijn's/Procura's HP-UX software for ITRC members, link is below.
http://mirrors.develooper.com/hpux/
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2004 07:46 PM
05-13-2004 07:46 PM
Re: removing old software from HP-UX 11
beside the website for perl,
what other website can i download hp-ux compatible software?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2004 08:07 PM
05-13-2004 08:07 PM
Re: removing old software from HP-UX 11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2004 08:19 PM
05-13-2004 08:19 PM
Solutionthis gets you the name you want
swremove
swinstall -s
the <> are for examples, not to be typed in.
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
05-13-2004 08:28 PM
05-13-2004 08:28 PM
Re: removing old software from HP-UX 11
swinstall'ed modules (from depot's) can be tracked like that, but prebuilt binaries not from depot's (like my ports) cannot.
FYI My binaries are shipped with the most recent DBI available at the time of build.
For HP-UX with Oracle, *PLEASE* use DBD-Oracle-1.14 or up. DBD-Oracle-1.15 is currently the most recent.
DBI will be released with a new version soon now I think, but it will address not bugs, but it will cover the features with tests much better and probably will have some improved docs, but DBI-1.42 will do quite well.
On my site (see RJ's first post), I also explain why my ports do not include DBD-Oracle. But with 1.15 and perl-5.8.4 it is very likely to build out of the box.
One more thing. My ports are all build with GNU gcc, and you need a matching compiler if you are going to extend perl with XS modules, like DBD-Oracle. If you have HP C-ANSI-C, you might consider building perl from scratch, because the cc built binaries still perform slightly better than gcc builds.
The gcc I built my ports with are also available from the site. For 5.8.4 I used GNU gcc-3.4.0
Last point, please remember that for Oracle (or HP-UX in general), you need a MATCHING perl: for 64bit Oracle, you need a 64bit perl, and for Oracle/32, you need a 32bit perl. They can be installed next to eachother, just think about setting $PATH correct. Same for the compiler. There are two: gcc/32 and gcc/64. They simply do not mix
Enjoy, Have FUN! H.Merijn