- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem with long file names when mounting CD-ROM
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
01-14-2003 03:01 PM
01-14-2003 03:01 PM
Thank,
Jenn
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 03:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2003 03:09 PM
01-14-2003 03:09 PM
Re: Problem with long file names when mounting CD-ROM
Thanks,
Jenn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 06:37 AM
01-15-2003 06:37 AM
Re: Problem with long file names when mounting CD-ROM
If your CD was burnt using the Rock Ridge extension you must either download/install the patches (e.g. PHKL_28060, PHKL_26450 and PHCO_26449 for 11.0) and mount with:
mount -o rr /dev/....
or (if you don't want the patches) you can use the 'pfs' commands:
pfsd
pfs_mountd
pfs_mount /dev/.....
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 07:01 AM
01-15-2003 07:01 AM
Re: Problem with long file names when mounting CD-ROM
if the CD is in ISO9660 format you should use the pfs_mount (see man page):
# pfs_mount -t iso9660 -x unix /dev/cdrom /SD_CDROM
Regards ...
Armin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 07:07 AM
01-15-2003 07:07 AM
Re: Problem with long file names when mounting CD-ROM
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?] &
Note that is "pfs_umount" and not "ps_mount" to **umount** your media..!
(*) nohup executes command with hangups and quits ignored, both standard output and standard error are sent to nohup.out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 07:16 AM
01-15-2003 07:16 AM
Re: Problem with long file names when mounting CD-ROM
do a man pfs_mount ,
pfsd &
pfs_mountd &
pfs_mount -x no_version -x lowercase /dev/rdsk/cxtydz /cdrom
will do the trick
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 07:27 AM
01-15-2003 07:27 AM
Re: Problem with long file names when mounting CD-ROM
Try,
mount -o cdcase /dev/dsk/cxtydz /mount_point
cxtydz is the device file for the cdrom.
Hope this helps.
Regds