- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cant mount 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
04-20-2007 08:38 PM
04-20-2007 08:38 PM
Cant mount Oracle CD
Need a guide and help ...
I have a HP UX 11.23 OS
Running a latest patches till March 07.
But when run the mount Oracle CD is failed.
# ioscan -funC disk
disk 0 0/0/2/0.0.0.0 sdisk CLAIMED DEVICE _NEC DVD+-RW ND-6650A /dev/dsk/c0t0d0 /dev/rdsk/c0t0d0
# /usr/sbin/mount -F cdfs -o rr /dev/dsk/c0t0d0 /dvd
/dev/dsk/c0t0d0: unrecognized file system
But when i mount any of HPUx cd is working fine ( with the command mount /dev/dsk/c0t0do /dvd ). Do i need to modify any filesystem setting in due t oracle pre user enviroment have to be setup / setting.
Please advice. TQ.
Rgrds, Zuls.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2007 09:15 PM
04-20-2007 09:15 PM
Re: Cant mount Oracle CD
Try using without -o rr
/usr/sbin/mount -F cdfs /dev/dsk/c0t0d0 /dvd
or try
/usr/sbin/mount -F cdfs -o norr /dev/dsk/c0t0d0 /dvd (it should be the default)
or
mount -F cdfs -v /dev/dsk/c0t0d0 /dvd
Hope your DVD is ok.
If nothing works use pfs mount.
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2007 09:27 PM
04-20-2007 09:27 PM
Re: Cant mount Oracle CD
Try with pfs_mount,
And check this out,
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=21709
hth,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2007 09:33 PM
04-20-2007 09:33 PM
Re: Cant mount Oracle CD
a ) /usr/sbin/mount -F cdfs /dev/dsk/c0t0d0 /dvd
==> Results /dev/dsk/c0t0d0: unrecognized file system
b ) /usr/sbin/mount -F cdfs -o norr /dev/dsk/c0t0d0 /dvd
==> Results /dev/dsk/c0t0d0: unrecognized file system
c ) mount -F cdfs -v /dev/dsk/c0t0d0 /dvd
==> Results usage: mount [-l][-v|-p]
mount [-F FStype][-eQ] -a
mount [-F FStype][-eQrV][-o specific_options]
{ special | directory }
mount [-F FStype][-eQrV][-o specific_options]
special directory
d ) /usr/sbin/ mount -F cdfs -v /dev/dsk/c0t0d0 /dvd
==> Results usage: mount [-l][-v|-p]
mount [-F FStype][-eQ] -a
mount [-F FStype][-eQrV][-o specific_options]
{ special | directory }
mount [-F FStype][-eQrV][-o specific_options]
special directory
e ) mount /dev/dsk/c0t0d0 /dvd
=> Results /dev/dsk/c0t0d0: unrecognized file system
Also for you all the info : I do try this CD at the different Server, it works find.< In Summary the CD is OK >. When i mount the different CD ( HP-UX CD ) in this server is works find .. In summary the CD & the drive is working find.
Please advice .. All Guru ..
Thanks.
Rgrds, Zuls
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2007 09:48 PM
04-20-2007 09:48 PM
Re: Cant mount Oracle CD
I do try to using the command of ps_mount but still failed...
# pfs_mount /dev/dsk/c0t0d0 /dvd
pfs_mount: giving up on /dvd
# pfs_mount /dev/rdsk/c0t0d0 /dvd
pfs_mount: giving up on /dvd
Also the forum do mention about the patch for the mount command. I do have a latest patch on as at March 2007 but also having a problem ...
All Guru.. can you have an idea on this ..
Thanks
Rgrds, Zuls
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2007 10:02 PM
04-20-2007 10:02 PM
Re: Cant mount Oracle CD
Oracle Software CDs cannot be mounted by ordinary mount command.
For it pfs mount commands r required.
Also refer Oracle Documentation, it may be also
given in docs, how to mount Oracle CDs.
refer following link
https://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1117290
In most cases following steps r used.
1] # nohup pfs_mountd &
2] # nohup pfsd &
3] # pfs_mount -x unix -t iso9660 || rrip /dev/dsk/c0t0d0 /dvd
To unmount use
4] # pfs_umount /dvd
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2007 10:13 PM
04-20-2007 10:13 PM
Re: Cant mount Oracle CD
i do try to using the pfs command but still failed.
Command :
# pfs_mount -x unix -t is09660 || rrip /dev/dsk/c0t0d0 /dvd
Invalid type: is09660
All guru if i using the same cd and mount at the different server with cdfs mount is work find .. but not at my server .. any input that can i supply to help me on this ...
Thanks guru
Rgrds, Zuls
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-20-2007 10:26 PM
04-20-2007 10:26 PM
Re: Cant mount Oracle CD
U have made a typo.
It is iso9660 and not is09660
Also
# pfs_mount -x unix -t iso9660 || rrip /dev/dsk/c0t0d0 /dvd
This means u have to try
# pfs_mount -x unix -t iso9660 /dev/dsk/c0t0d0 /dvd
OR
# pfs_mount -x unix -t rrip /dev/dsk/c0t0d0 /dvd
It depends on CD.
Also I still advice u to refer Oracle
Software Docs., how to mount/umount CDs
is given in it.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2007 03:53 AM
04-21-2007 03:53 AM
Re: Cant mount Oracle CD
Yes, Oracle still references them, but Oracle is not know for updating their installation documentation in a timely fashion.
Try this:
# mount -o rr /dev/dsk/c0t0d0 /dvd