Operating System - Tru64 Unix
1752765 Members
5150 Online
108789 Solutions
New Discussion юеВ

How to mount cdrom in TRU 64 and HP-UX

 
Sunny Anthony
Occasional Advisor

How to mount cdrom in TRU 64 and HP-UX

please help me.

How to mount cdrom in HP-UX and TRU-64
3 REPLIES 3
Johan Brusche
Honored Contributor

Re: How to mount cdrom in TRU 64 and HP-UX


Tru64
------
#mkdir /cdrom

V4.F/G
#mount -r /dev/rz6c /cdrom

V5.x
#mount -r /dev/disk/cdrom0c /cdrom

See manpage mount for CDFS mount options.

[o]

_JB_
Ross Minkov
Esteemed Contributor

Re: How to mount cdrom in TRU 64 and HP-UX


For Tru64 UNIX 4.0:

# mount -r -t cdfs -o rrip /dev/rz5c /mnt
or
-o noversion
or both
-o noversion, rrip


For Tru64 UNIX 5.X:

# mount -r -t cdfs -o rrip /dev/disk/cdrom0c /mnt
or
-o noversion
or both
-o noversion, rrip


For HP-UX ask in the HP-UX forum.


Regards,
Ross
Ivan Ferreira
Honored Contributor

Re: How to mount cdrom in TRU 64 and HP-UX

For HP-UX:

mount -r /dev/disk/c2t1d0 /mnt/cdrom

Identify the cd device using ioscan -fun -C disk

To identify the cdrom device in Tru64 5 use:

hwmgr v d
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?