- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Adding Path
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
02-13-2006 06:33 PM
02-13-2006 06:33 PM
I want to add a path to the env. tell me exact command how to add it. the path i want to add is /usr/bin/unzip to PATH and export it.
Also i want to download unzip ver 5.5 for hp-ux v11.23. please tell me the link to download and how do i install it?
thanks
Rahul
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 06:39 PM
02-13-2006 06:39 PM
Re: Adding Path
go to /etc/profile,
in last line,
export PATH=$PATH:
I hope /usr/bin directory is added by default with /etc/PATH file. So need to add it.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 06:41 PM
02-13-2006 06:41 PM
Re: Adding Path
http://hpux.connect.org.uk/hppd/hpux/Misc/unzip-5.52/
Download based on your operating system.
Install as,
# swinstall -s
It will install it.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 07:36 PM
02-13-2006 07:36 PM
SolutionIts easy, you can download unzip depot from
http://hpux.connect.org.uk/ftp/hpux/Misc/unzip-5.52/unzip-5.52-ia64-11.23.depot.gz
# swinstall -s /tmp/unzip-5.52-ia64-11.23.depot unzip will do the installtion. ( Say, you have downloaded the depot into /tmp)
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2006 07:38 PM
02-13-2006 07:38 PM
Re: Adding Path
To add path # export PATH=$PATH:/usr/local/bin
You can also unzip with jar utility.
# /opt/java1.4/bin/jar -xvf
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2006 08:14 PM
02-14-2006 08:14 PM
Re: Adding Path
To add path:
export PATH=$PATH:
You can also unzip with jar utility.
# $JAVE_HOME/bin/jar -xvf
HTH,
Art
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2006 08:27 PM
02-14-2006 08:27 PM
Re: Adding Path
If you need the PATH variable presnet across reboots, you may add the line to .profile.
With Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2006 03:39 PM
02-16-2006 03:39 PM
Re: Adding Path
Thanks guyz!
Regards
Rahul...