- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can't eject oracle 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
07-12-2005 12:36 AM
07-12-2005 12:36 AM
Mounted cd with
# nohup /usr/sbin/pfs_mountd&
# nohup /usr/sbin/pfsd&
# /usr/sbin/pfs_mount -t rrip -x unix /dev/dsk/c3t2d0 /cdrom
I am not sitting at the /cdrom prompt on any of the shells and I can umount /cdrom just fine, but when I push the eject button nothing happens. (there is no manual eject pinhole either)
ps -ef|grep cdrom returns nothing.
fuser -cu /cdrom, returns file system not mounted.
Masaki
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2005 12:41 AM
07-12-2005 12:41 AM
SolutionThen you should be able to eject.
BTW:
Do not use pfs_mount!. Install the Rock-Ridge extension patches instead and never worry about these problems. For HP-UX 11.00 you will need forget all about PFS and install PHKL_26448 (now superceded by PHKL_28060), PHCO_26449, and PHKL_26450 to have HP-UX recognize those file systems automatically on mount! For HP-UX 11.11 (11i) you need PHCO_25841, PHKL_26269, and PHKL_25760 (now superceded by PHKL_28025).
Installation of patches requires a reboot.
swinstall -x autoreboot=true -x autoselect_patches=TRUE -x patch_match_target=TRUE -x patch_filter=*
.* -s server25:/var/software/hp/rockridge @`hostname`
To mount a Rockridge CD (instead of using pfs_mount):
mount -F cdfs -o ro,rr,noauto /dev/cdrom /cdrom
To unmount:
umount /cdrom
To share out the cd over NFS:
exportfs -i -o ro,anon=0 /cdrom
On remote:
mount -F nfs sha1:/cdrom /zmnt
Note: client server does NOT need to have Rock Ridge patches installed to access the cdrom remotely.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2005 12:43 AM
07-12-2005 12:43 AM
Re: Can't eject oracle cd
If that doesn't work, kill all pfs related processes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2005 12:45 AM
07-12-2005 12:45 AM
Re: Can't eject oracle cd
But again more than likely, the eject button may have gine bad if everything else is fine with the CDROM reader.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2005 01:01 AM
07-12-2005 01:01 AM
Re: Can't eject oracle cd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2005 12:13 PM
07-12-2005 12:13 PM
Re: Can't eject oracle cd
Never use umount when mounted with pfs_mount. Use only pfs_umount.