Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MOUNT CDROM

Status
Not open for further replies.

Scunningham99

Programmer
Sep 20, 2001
815
GB
Hi All

I have a sun solaris box 2.6 with 2 discpacks on box running off their own scsi cards.

I would like to mount cdrom as its controller is curently being used by a disc. hence i need to remove disc and probe-scsi-all.

here is the disc i want to remove:-
/dev/dsk/c1t6d0s0 4124422 1434331 2648847 36% /usr06

how do i mount cdrom and what is command to dissable disc so light on discpack goes out, so i know which disc to take out!!

Thanks in Advance

Sy
 
first all umount
# umount /usr06
# /etc/init.d/volgmt stop (wait a minute in order deamon to die)
# /etc/init.d/volgmt start


# mount -F hsfs -o ro /dev/dsk/c1t6d0s0 /cdrom

# or mount -F hsfs -o ro /dev/sr0 /cdrom .

Farah regal
good luck
"think twice and hit enter once"
 
command ;
mount -F hsfs -o ro /dev/dsk/c1t6d0s0 /cdrom

says mount: /dev/dsk/c1t6d0s0 no such device

and:

mount -F hsfs -o ro /dev/sr0 /cdrom, uses c0 instead of c1

so it points to drive which is already mounted as something else

please help
 
I have searched about and cannot find anything that referenced mounting cdrom to anything other than /dev/dsk/c0t6d0s0.

is it possible to mount to /dev/dsk/c1t6d0s0
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top