- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to install directly on HP box
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
09-08-2000 06:01 AM
09-08-2000 06:01 AM
How to install directly on HP box
1) i am trying to install cd on hpux box.
2) what i did was:
# cd /cdrom/HPUX/SSH2/USA
# ls
[result: SSH2132.ZIP;1]
3) are there any ways that i can install this SSH2132.ZIP;1 using any command(s) ??
4) as far as i know, it is impossible since
this file is ZIP file (not .tar file)
5) therefore, i can do only ftp from nt box to hp box.
are there any ways that i can install this SSH2132.ZIP;1 using any command(s) ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 06:04 AM
09-08-2000 06:04 AM
Re: How to install directly on HP box
try mounting it with the -o cdcase option
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 06:09 AM
09-08-2000 06:09 AM
Re: How to install directly on HP box
Have you received any instructions with the CD?
First I would unmount the CD and remount it with the cdcase option:-
mount /dev/dsk/c???? -o cdcase /cdrom
You should then see a directory hierarchy of /cdrom/hpux/ssh2/usa
and a file called ssh2132.zip
You should be able to unzip this. First try
'gzcat /cdrom/hpux/sshh2/usa/ssh2132.zip | tar tvf -'
If this produces a list of files then cd to the directory where you want to extract the files and repeat the command but with 'tar xvf -'
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 06:11 AM
09-08-2000 06:11 AM
Re: How to install directly on HP box
The '*;1' filename format is typically of Oracle cdroms. Using the pfs_mount in a rockridge format will take care of it.
To do pfs_mount:
Find the name of the cdrom device (ioscan -fnCdisk)
Check the /etc/pfs_fstab file for RockRidge format - /dev/dsk/cXtXdX /cdrom pfs-rrip xlat=unix 0
Start the pfs processes:
nohup pfs_mountd &
nohup pfsd &
Verify - ps -ef | grep pfs
Mount it - pfs_mount /dev/dsk/cXtXdX /cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 06:58 AM
09-08-2000 06:58 AM
Re: How to install directly on HP box
use the mount option -o cdcase as described. If then the gunzip | tar construct doesen't give you a result this is probably a PKZIP compatible file.
Either you copy this file to a PC and user e.g. Winzip to extract it. Or you can try to install unzip from the Software Porting Center (for example http://hpux.asknet.de/). Search for unzip. This is a small tool which is able to unzip these ZIP archives.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 07:19 AM
09-08-2000 07:19 AM
Re: How to install directly on HP box
The probem is only partially fixed by re-mounting the cdrom with the -cdcase option. This does handle version numbers created in HS format. (The ;# is NOT an oracle problem, but with CD Creators Not using Rock Ridge format!)
Next you need to handle the file.zip. You can download from pkware the UNIX version of PKZIP 2.5.1 for free (shareware), then license later. go to "http://www.pkware.com" and find the UNIX download area. Read and install as per PKWares instructions. You should be able to read and unzip even Pkzip for Windblows files made recently, as the GUI has changed, but the engine for compression and archive has not.
If you can not find pkzip for HP-UX, let me know, at "shannon.petry@invenioeng.com" and I can e-mail you a copy. Just please register it if you plan on using it! It is not too much $$.
Best regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 09:22 AM
09-08-2000 09:22 AM
Re: How to install directly on HP box
1) what i tried is:
# umount /cdrom
# mount
[double-checked cdrom is unmounted]
# ioscan -funC disk
[checked cdrom driver's name and location]
# mount /dev/dsk/c3t2d0 -o cdcase /cdrom
[result is:
usage: mount [-1][-v][-p]
mount [-F FStype][-eQ] -a
mount [-F FStype][-eQrV][-o specific_options] {special | directory}
mount [-F FStype][-eQrV][-o specific_options] special directory
2) what should i type??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 09:44 AM
09-08-2000 09:44 AM
Re: How to install directly on HP box
unmount the /cdrom and mount it again with pfs_mount:
umount /cdrom
use a system editor to add the following line to the /etc/pfs_fstab file
example
/dev/dsk/c3t2d0 /cdrom pfs-rrip xlat=unix 0 0
Then run the following commands:
nohup /usr/sbin/pfs_mountd &
nohup /usr/sbin/pfsd &
/usr/sbin/pfs_mount /cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 11:50 AM
09-08-2000 11:50 AM
Re: How to install directly on HP box
2) something problem is there (screen does not show up anything after i input #startx, which is totally black screen - even if i moved mouse or hit keybrd...) ; i think something network configuration was wrong!!
3) i can try to continue 'mount cdrom' after i reinstalled it!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2000 12:01 PM
09-08-2000 12:01 PM
Re: How to install directly on HP box
I'm sorry but I misled you with my earlier post. The format for mount is :-
mount -o cdcase /dev/dsk/c3t2d0 /cdrom
Give that a whirl!
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2000 04:07 AM
09-12-2000 04:07 AM
Re: How to install directly on HP box
i went to NE yesterday for the LAN testing and i just came back.
1) i just did:
# mount -o cdcase /dev/dsk/c3t2d0 /cdrom
# cd /cdrom/hpux/ssh2/usa
# ls
ssh2132.zip
# gzcat /cdrom/hpux/ssh2/usa/ssh2132.zip | tar tvf -
[result is:
gzcat: /cdrom/hpux/ssh2/usa/ssh2132.zip: encrypted file -- use unzip Tar: blocksize = 0; broken pipe?]
2) i dont exactly know what that means and what to input commands for the next???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2000 04:16 AM
09-12-2000 04:16 AM
Re: How to install directly on HP box
gzcat is complaining about the file format and is suggesting that you use 'unzip'.
Can you load this CD on a PC and try winzip on the file?
Hopefully, you will then find some instructions for installing the software.