- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: after mounting a CD
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
01-16-2002 02:16 PM
01-16-2002 02:16 PM
after mounting a CD
I am trying to install Oracle and have successfully mounted the CD, however I am unable to run the setup script that is listed when I list the files in the directory. It seems like the filenames are concartinated. The oracle documentation lists the file to run as:
RunInstaller
and the listing I have when i do an ls is:
RUNINSTA.;1
Please help.
Dee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 02:21 PM
01-16-2002 02:21 PM
Re: after mounting a CD
If you are installing the CD as a
straight mount as opposed to a pfs
mount use this:
mount -F cdfs -o cdcase /dev/dsk/c0t6d0 /cdrom
or if it is in Rockridge format use these
instructions.
Add this entry to /etc/pfs_fstab
/dev/dsk/c5t2d0 /SD_CDROM pfs-rrip xlat=unix 10
Mount the cd in the drive
# nohup /usr/sbin/pfs_mountd &
# nohup /usr/sbin/pfsd &
# /usr/sbin/pfs_mount /SD_CDROM
Make sure the directory is created and you
have not got your shell in that directory at
the time of mounting.
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 02:25 PM
01-16-2002 02:25 PM
Re: after mounting a CD
Oracle cd's need to be pfs_mounted. Check out this document on how to pfs_mount cdroms on the knowledge base. Document number S3100001252.
Regards,
E
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 02:31 PM
01-16-2002 02:31 PM
Re: after mounting a CD
The Oracle CD should be mounted using pfs_mount. this is the procedure,
edit /etc/pfs_fstab file and add this entry,
/dev/dsk/c5t2d0 /SD_CDROM pfs-rrip xlat=unix 1 0
Here c5t2d0 is the device file for the cdrom. Substitute the one appropriate for your system. Create a file called /etc/pfs_fstab if it does not exist. Make sure you have NFS server and client enabled on the host. Now do this, Make sure /SD_CDROM directory exist under /
# nohup /usr/sbin/pfs_mountd &
# nohup /usr/sbin/pfsd &
# /usr/sbin/pfs_mount /SD_CDROM
Run the oracle installer program and when asked do a pfs_umount and pfs_mount to replace the CD if you are loading 8i.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 02:40 PM
01-16-2002 02:40 PM
Re: after mounting a CD
pfs_mount is not HP's supported product.
It is best recommended to mount the cdrom on a development server, copy the contents of the cd and then tar the file to the server where you want to install Oracle.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2002 03:06 PM
01-16-2002 03:06 PM
Re: after mounting a CD
Dee.