- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problem mounting a 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
11-07-2001 08:03 AM
11-07-2001 08:03 AM
Problem mounting a CD-ROM
i have a problem when i try to mount a cd-rom.
mount /dev/dsk/c2t4d0 SD_CDROM/ works fine.
When i go to SD_CDROM and i type an ls command i see all file with ;1 at the end. For example:
pippo.gz;1 home.sh;1 ping.c;1
What's happend?
In /etc/fstab and /etc/mnttab there aren't some row about mounting of CD-ROM
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2001 08:10 AM
11-07-2001 08:10 AM
Re: Problem mounting a CD-ROM
add the -o cdcase option to your mount. Man mount_cdfs for details.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2001 08:11 AM
11-07-2001 08:11 AM
Re: Problem mounting a CD-ROM
mount using the -o cdcase
option, since the CDrom contents is of a different format
mount -o cdcase /dev/dsk/xx /CDROM
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2001 08:13 AM
11-07-2001 08:13 AM
Re: Problem mounting a CD-ROM
I have never seen something like this. Can you do a umount and then mount the cd again and see if the same thing happens.
mount /dev/dsk/cd_device /SD_CDROM
You can use a "-o cdcase" option with mount if required.
hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2001 08:18 AM
11-07-2001 08:18 AM
Re: Problem mounting a CD-ROM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2001 08:18 AM
11-07-2001 08:18 AM
Re: Problem mounting a CD-ROM
I think you have a rockridge format:
Mounting cdrom (pfs - Oracle 8.1.5 [ Rockridge Format ]):
a. insert cdrom into drive
b. start processes Pfs :
# /usr/sbin/pfs_mountd &
# /usr/sbin/pfsd &
Note: varify > #ps -ef |grep pfs
b. find cdrom device name ( #ioscan -funC disk ) [e.g. /dev/dsk/c1t2d0]
c. validate mount point to mount cdrom [e.g. /cdrom]
d. #pfs_mount /dev/dsk/c1t2d0 /cdrom
Unmounting cdrom(pfs - Oracle 8.1.5 [ Rockridge Format ] ):
a. #pfs_umount /cdrom
b. manually eject cdrom from drive. (press eject button)
c. kill processes [ pfsd and pfs_mountd ]
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2001 08:21 AM
11-07-2001 08:21 AM
Re: Problem mounting a CD-ROM
I use the option -o cdcase.
It works fine.
Bye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2001 08:23 AM
11-07-2001 08:23 AM
Re: Problem mounting a CD-ROM
I forgot :you will need to create a file:
/etc/pfs_fstab which contains:
more /etc/pfs_fstab
/dev/dsk/c3t2d0 /SD_CDROM pfs-rrip xlat=unix 0
#/dev/rdsk/c3t2d3 /SD_CDROM pfs-iso9660 soft,xlat=unix 0 0
...
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2001 07:05 AM
11-08-2001 07:05 AM
Re: Problem mounting a CD-ROM
i forgot one thinks:
When i mount cd-rom with -o cdcase options, i read the file without ;1 but in small letter instead of capital letter.
This is a big problem, becuse if i have a script shell that refer to some file in capital letter, the script doesn't works.
For example this is my situation:
mount cd without -o cdcase
ls
ERDB.01;1 ERDB.02;1 ERDB.03;1 ERDB.install;1
mount cd with -o cdcase
ls
erdb.01 erdb.02 erdb.03 erdb.install.
Well, apparently works fine.
I copy the cd on a /home dir.
erdb.install is a scipt that "unzip" the erdb file. It refer to capital letter files.
if( ! -e ERDB.01) then
echo ERROR:file ERDB.01 Missing
Phereaps, if i not use the mv command (mv erdb.01 ERDB.01) It doesn't works.
Some suggest to solve this problem?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2001 08:19 AM
11-08-2001 08:19 AM
Re: Problem mounting a CD-ROM
Use the instructions given by Victor earlier.
Thanks.
Prashant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2001 08:30 AM
11-08-2001 08:30 AM
Re: Problem mounting a CD-ROM
Try pfs mount. Use this procedure,
nohup pfs_mountd &
nohup pfsd &
pfs_mount -o xlat=unix /dev/dsk/cd_device /cdrom
One Done,
pfs_umount /cdrom
kill pfs_mountd
kill pfsd
kill pfs_mountd.rpc
kill pfsd.rpc
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2001 08:38 AM
11-08-2001 08:38 AM
Re: Problem mounting a CD-ROM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2001 09:14 AM
11-08-2001 09:14 AM
Re: Problem mounting a CD-ROM
If i use the pfs_mount i see the same error. May be, this fact, can be depends from joliet...may be.
Thanks to all