- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mount errors on the 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-25-2001 12:37 PM
07-25-2001 12:37 PM
Mount errors on the CD
I am trying to mount a ORACLE CD using the following method but I am unable to mount it , some times it goes through.
From the root prompt I type the following
#nohup >> /dev/null /usr/sbin/pfs_mountd &
#nohup >> /dev/null /usr/sbin/pfsd &
#/usr/sbin/pfs_mount -o xlat=unix /dev/rdsk/cxtxdx /cdrom
This works fine sometimes. I would appreciate if you could help me out
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2001 04:56 PM
07-25-2001 04:56 PM
Re: Mount errors on the CD
You should use the block device when you mount file system
#pfs_mount -o xlat=unix /dev/dsk/c0t0d0 /cdrom
This should be okay.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2001 05:05 PM
07-25-2001 05:05 PM
Re: Mount errors on the CD
This should do the trick. You will find that
most Oracle CD installations need to be done
in "RockRidge" format. Make sure your CD is
loaded.
Add an entry to /etc/pfs_fstab like the following:
/dev/dsk/c0t6d0 /SD_CDROM pfs-rrip xlat=unix10
Run the following commands
# nohup /usr/sbin/pfs_mountd &
# nohup /usr/sbin/pfsd &
# /usr/sbin/pfs_mount /SD_CDROM
To umount use
# /usr/sbin/pfs_umount /SD_CDROM
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2001 06:30 PM
07-25-2001 06:30 PM
Re: Mount errors on the CD
What type of errors do you see when you can't pfs_mount the cdrom?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2001 02:44 AM
07-27-2001 02:44 AM
Re: Mount errors on the CD
Follow these
#/usr/sbin/pfs_mountd &
#usr/sbin/pfsd &
#pfs_mount -o xlat=unix /dev/dsk/cxtxdx /cdrom
#bdf
Check up whether it is ok or not. For more information see man page of pfsd.
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2001 04:16 AM
07-27-2001 04:16 AM
Re: Mount errors on the CD
1. Ensure no pfs daemons are running. ps -ef | grep pfs
2. Kill processes, if present: kill -11 0000
3. Load CD in drive.
4. Start the pfs daemons: /usr/sbin/pfs_mountd &
/usr/sbin/pfsd &
5. Mount the CD (NOTE: pfs must use the raw device file - rdsk): pfs_mount -o xlat=unix /dev/rdsk/cxtxdx /SD_CDROM
6. When finished, unmount the cd: pfs_umount.
7. Repeat steps 5 and 6 until finished with all CD's.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2001 05:30 AM
07-27-2001 05:30 AM
Re: Mount errors on the CD
The pfs software also uses the statd and lockd daemons, so you'll need to make sure they are running. If they aren't, try this:
/usr/sbin/rpc.lockd
/usr/sbin/rpc.statd
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 08:55 AM
07-30-2001 08:55 AM
Re: Mount errors on the CD
As for the problems, there are many with pfs_mount. Namely, that standard mount does not know it's there. Most commonly, if a disk is pfs_mounted, and then standard umount is used to unmount it. Well at this point, pfs still thinks it is mounted, so reports the device as busy. standard mount can not mount the cd, because it is reported as used. The fix at this point is rebooting.
I have some startup scripts on "http://www.invenioeng.com/systems" somewhere which at least start-up the pfs daemons at boot time, and about the same info I gave here.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2001 09:29 AM
07-30-2001 09:29 AM