- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: properly mount a cdrom
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
12-31-2002 02:27 PM
12-31-2002 02:27 PM
properly mount a cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2002 02:40 PM
12-31-2002 02:40 PM
Re: properly mount a cdrom
Couple of ways to get around this problem
first one,
#mount -F cdfs -o cdcase /dev/dsk/c0t1d0 /SD_CDROM
second,
http://www.cmve.net/~merijn/
My CD-ROM doesn't show what I expect
It can be an Oracle CD-ROM, or a CD created on Windows, or whereever they used Rock Ridge extensions. Long names are truncated or show upper case only. Oracle tells you to use pfs_mount.
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, PHCO_26449, and PHKL_26450 to have HP-UX recognize those file systems automatically on mount! For HP-UX 11i you need PHCO_25841, PHKL_26269 , and PHKL_25760.
No need thereafter to use -o cdfs to mount anymore, provided you enter the CD drive in /etc/fstab like this:
/dev/cd0 /cdrom cdfs ro,rr,noauto 0 0
Thirth if you don't like to install the patches,
# nohup pfs_mountd &
# nohup pfsd &
# pfs_mount /dev/dsk/c0t1d0 /SD_CDROM
Regards,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-31-2002 02:45 PM
12-31-2002 02:45 PM
Re: properly mount a cdrom
If you choose the last option use
# pfs_umount /SD_CDROM
to umount the cdrom NOT umount.
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2003 12:48 AM
01-01-2003 12:48 AM
Re: properly mount a cdrom
if you are burning a cd with the software that you download remember to burn it without !!
the option of juliet option ( that is for windows and not unix )
after you are burning the cd you need to mount it with this option :
mount -o cdcase /dev/device_file /mount point .
also to recall , when you want to install oracle or to mount a oracle cd used this prod.
to mount with pfs mount :
1. Kill any active pfs daemons.
2. Re-start the pfs daemons:
pfs_mountd &
pfsd &
3. Mount the CD:
pfs_mount -o xlat=unix /dev/rdsk/cXtXdX /cdrom
Note: 'pfs' uses the raw (rdsk) device. Replace the 'X' entries
(in the pfs_mount command) with the appropriate numbers,
typically, C1t2d0.
Note: The man page for pfs_mount(1M) for HP-UX Release 10.20:
May 1998, contains syntax for both the "older" style option:
-x xlat=unix (kept for backward compatibility)
and a "newer" style option:
-o xlat=xlat_flags
Use pfs_umount to umount the CD.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2003 12:41 PM
01-01-2003 12:41 PM
Re: properly mount a cdrom
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-01-2003 02:13 PM
01-01-2003 02:13 PM
Re: properly mount a cdrom
We solved that problem in Oracle 8.1.7 by the following way:
To mount CD:
nohup /usr/sbin/pfs_mountd &
hohup /usr/sbin/pfsd &
nohup /usr/sbin/pfs_mount -x unix /dev/dsk/[c?t?d?] /cdrom &
(*) Try man pfs_mount to get details about.
To umount CD:
nohup /usr/sbin/pfs_umount /dev/dsk/[c?t?d?] &
Pls note that is "pfs_umount" and not "pfs_mount" to **umount** your media..!
(*) nohup executes command with hangups and quits ignored, both standard output and standard error are sent to nohup.out.
Happy New Year!