- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: SD_CDROM problems
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-03-2002 07:19 AM
09-03-2002 07:19 AM
I've got a problem to pfs_umount a cdrom on a server.
The device has been mounted as follow:
#more /etc/pfs_fstab
/dev/dsk/c3t2d0 /SD_ROM pfs-rrip xlat=unix 0 0
Then
nohup /usr/sbin/pfs_mountd &
nohup /usr/sbin/pfsd &
and
/usr/sbin/pfs_mount /SD_CDROM
The CD is oracle, I've launched ./runInstaller
and had those messages:
NFS server on Manon can't be find.
I've tried to kill all processes with [ *]mount[ *], but with no success...
root 5170 1 0 Sep 2 ? 0:00 /usr/lib/netsvc/fs/automount/automount -f /etc/auto_master
root 22877 8169 0 17:16:27 pts/tk 0:00 grep mount
root 5006 1 0 Sep 2 ? 0:00 ./rpc.mountd start
root 22388 1 0 16:54:50 ? 0:00 /usr/sbin/pfs_umount /SD_CDROM
Could you help?
Regards
Jerome
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2002 07:22 AM
09-03-2002 07:22 AM
Re: SD_CDROM problems
# /sbin/init.d/nfs.core start
# /sbin/init.d/nfs.server start
# ./sbin/init.d/nfs.client start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2002 07:27 AM
09-03-2002 07:27 AM
Re: SD_CDROM problems
There is a much better approach than using 'pfs_mount'. The problems with it are that you need to have NFS services running and more importantly that you *never* kill the processes without first doing a pfs_unmount. To do so can cost a reboot!
Three new patches for 11.0 or 11.11 obviate the need for pfs_mounts entirely. Although a reboot is required to install them, the benefits far outweigh the time:
For 11i :
PHCO_25841
PHKL_26269
PHKL_26520
For 11.00:
PHKL_26448
PHCO_26449
PHKL_26450
Once applied, the mount command can be used with a new option to specifiy RockRidge format mounts: '-o rr'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2002 07:31 AM
09-03-2002 07:31 AM
Re: SD_CDROM problems
For 11.0 systems, the RockRidge Extension patches eliminate the need to use pfs_mount: PHKL_26450, PHKL_26448, PHCO_26449.
There are equivalents for 11i.
Hopefully this will help,
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2002 07:53 AM
09-03-2002 07:53 AM
Re: SD_CDROM problems
After installing this patches, i just have to perform the command:
mount -t iso9660 //dev/dsk/c3t2d0 /SD_CDROM
to mount my oracle CD (Linux style???)
Regards
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2002 08:01 AM
09-03-2002 08:01 AM
Re: SD_CDROM problems
# mount -F cdfs i-o rr /dev/dsk/cXtYdZ /cdrom
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2002 08:03 AM