- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: unable to muont cdrom with pfs_mount
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-22-2001 11:56 AM
02-22-2001 11:56 AM
EX: when I use this command
pfs_mount -t rrip -xunix /dev/dsk/c2t1d0 /CDROM
The system will take a while and return:
pfs_mount: giving up on /CDROM
all the device and mount point has been correctly setup.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2001 12:10 PM
02-22-2001 12:10 PM
Re: unable to muont cdrom with pfs_mount
If you are not certain, try leaving out the "-t rrip" option and see if it will mount.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2001 12:17 PM
02-22-2001 12:17 PM
Re: unable to muont cdrom with pfs_mount
Make sure you follow the steps in either of these documents:
# KBAN00000252 (PFS to mount Oracle, Rockridge and most PC formatted CD-ROM 11.x)
or:
# KBAN00000197 (PFS to mount Oracle, Rockridge and most PC formatted CD-ROM 10.x)
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2001 12:24 PM
02-22-2001 12:24 PM
Re: unable to muont cdrom with pfs_mount
I actually want to mount cdrom for installing Oracle.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2001 01:40 PM
02-22-2001 01:40 PM
Re: unable to muont cdrom with pfs_mount
Also you should use a character device (/dev/rdsk...) when mounting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2001 05:11 AM
02-23-2001 05:11 AM
SolutionAssuming that your CD drive is "/dev/dsk/c0t0d0" and you want to mount it on "/cdrom" create or edit the file "/etc/pfs_fstab" with at least this entry (start from col 1):
/dev/dsk/c0t0d0 /cdrom pfs-rrip xlat=unix 0
Then execute
# nohup pfs_mountd > /tmp/out.pfsmountd 2>&1 &
# nohup pfsd > /tmp/out.pfsd 2>&1 &
# pfs_mount /cdrom
Your CD-ROM will be mounted with small and big letters. If you want to export it to another host via NFS, you need also to create or edit the file "/etc/pfs_xtab" with the mount point ("/cdrom") and use "pfs_exportfs" to export it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2001 07:28 AM
02-24-2001 07:28 AM
Re: unable to muont cdrom with pfs_mount
I very much go with the previous reply of Dragan Krnic. It should be given in your Oracle documentation as well.Probably you tried pfs_mount without starting the pfs_mountd and pfsd deamons.Also one thing to remember is while unmounting the CDROM use pfs_umount.
Goodluck
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2001 01:00 PM
02-24-2001 01:00 PM
Re: unable to muont cdrom with pfs_mount
Dragan solution.
Hoang