Operating System - HP-UX
1752580 Members
4852 Online
108788 Solutions
New Discussion юеВ

Re: Mounting a CD in HP-UX 11.23

 
Miguel Silva Rentes
Regular Advisor

Mounting a CD in HP-UX 11.23

Hi everyone!

I burned a CD (ISO 9660 with Joliet and without ;1 extension) in Windows XP SP2 and tried to mount this CD in a HP-UX 11iv2 (11.23) with the command

# /usr/sbin/mount -F cdfs -o rr /dev/dsk/c0t0d0 /SD_DVD

Everything went fine, except that in /SD_DVD all files are upcase! How can I mount the CD to have the files with the correct string case, just like how I burned the CD?

Best regards,

Miguel Rentes
4 REPLIES 4
Steven E. Protter
Exalted Contributor

Re: Mounting a CD in HP-UX 11.23

Shalom,


/usr/sbin/mount -F cdfs -e -o ro,rr /dev/dsk/c3t2d0 /cdrom


Slight difference.

You need to use the right mount options for the format the CD/DVD was written in.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
V. Nyga
Honored Contributor

Re: Mounting a CD in HP-UX 11.23

Hi,

you have to burn your cd's WITHOUT Joliet!
This is a pure pc standard.

See also my experiences:
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=70917

HTH
Volkmar
*** Say 'Thanks' with Kudos ***
shanmuhanandam
HPE Pro

Re: Mounting a CD in HP-UX 11.23

add one more option,
# mount -F cdfs -o ro,rr,cdcase /dev/dsk/c0t0d0 /SD_DVD

I am an HPE Employee

Accept or Kudo

Dennis Handly
Acclaimed Contributor

Re: Mounting a CD in HP-UX 11.23

:shanmuhanandam: add one more option,
# mount -F cdfs -o ro,rr,cdcase

mount_cdfs(1M) says that cdcase makes them lower and removes the ";version". That may be fine?