1758891 Members
2853 Online
108876 Solutions
New Discussion юеВ

Re: Mounting a CD-ROM

 
karl double
Occasional Contributor

Mounting a CD-ROM

Hi I'm trying to mount a cd-rom which I have burnt onto - to load on my hp box the file name I need to keep is 14 characters long.. I've tried the differnt formats in the offered in the man pages pfs-mount, rr, etc but its no reading file name in the same way that windows sees it ..? current output is ;vol
9 REPLIES 9
Nobody's Hero
Valued Contributor

Re: Mounting a CD-ROM

I dont like to use pfs but you can start the following services:

root 23987 23985 0 10:51:12 pts/tb 0:00 pfs_mountd.rpc
root 24027 12430 1 10:51:16 pts/tb
root 23985 1 0 10:51:12 pts/tb 0:00 pfs_mountd
root 23986 1 0 10:51:12 pts/tb 0:00 pfsd
root 23988 23986 0 10:51:12 pts/tb 0:00 pfsd.rpc

then:

pfs_mount -o xlat=unix /dev/dsk/cxtxdx /cdrom
UNIX IS GOOD
Fabio Ettore
Honored Contributor

Re: Mounting a CD-ROM

Hi Karl,

pfs_mount
mount

are the commands to mount a CDROM, like all filesystems. So if you want to mount a CDROM we have to find what's going wrong.
What commands did you already try (with what options)?

mount -o rr /dev/dsk/cXtXdX /
(cXtXdX is your device file)

What does it obtain?

Best regards,
Fabio
WISH? IMPROVEMENT!
Bill Hassell
Honored Contributor

Re: Mounting a CD-ROM

PFS is obsolete and should not be used on any production server. If you are running 11.00 or later, get the RockRidge patches for your version and then use the -orr option so you can see the POSIX filenames. Otherwise, all you'll see is the ISO9660 directory which is always 8.3 with ;1 after every file.


Bill Hassell, sysadmin
karl double
Occasional Contributor

Re: Mounting a CD-ROM

I have tried the rr option
mount -o rr /dev/dsk/c?t?d?s? /cdrom

I know its to-do with the 8.3 format .. I guess I could try renaming it when its on the system?

any throughts ?
Martin Brachtl
Advisor

Re: Mounting a CD-ROM

The important thing is, what format did you use during the burning process. The real ISO 9660 supports just 8.3 filenames. But there are extensions to support long filenames, the Microsofts Joliet and on Unix used RockRidge. The CD can contain both. Of course, if RockRidge is missing, you can't see long names on Unix.
Deepak.R
Frequent Advisor

Re: Mounting a CD-ROM

U need to start pfsd and pfs_mountd and do a pfsmount.

thanks
deepak
Dasaradharamaraju
Occasional Advisor

Re: Mounting a CD-ROM

Hi Karl,

Had u tried using the -o cdcase option...

mount -F cdfs -o cdcase /dev/dsk/c#t#d# /cdrom

Thanks
Ramaraju.
Senthil Kumar .A_1
Honored Contributor

Re: Mounting a CD-ROM

Hi Karl,

Follow the suggestion indicated by "Dasaradharamaraju" , I have got it working always using the "-o cdcase" option.

Regards,
Senthil
Let your effort be such, the very words to define it, by a layman - would sound like a "POETRY" ;)
karl double
Occasional Contributor

Re: Mounting a CD-ROM

Ok thanks all...