Ubuntu mount cdrom no medium found on /dev/sr0
- how to access cdrom in linux
- how to access cd rom in linux terminal
- how to access cd drive in linux
- how to mount iso cdrom in linux
Mount cdrom linux redhat 7...
How to use your CD-ROM under Linux
:
This article gives a short but useful description on how to use your CD-ROM under Linux.
How to mount sr0 in linux
It describes how to find the CD-ROM device, mount (make available) the CD-ROM, read the contents, umount it and gives some hints for troubleshooting.
Find out what the name of your CD-ROM device is
You got you Linux-box to work, now you want to copy a file from a CD-ROM to your hard disk.
Check if the CD-ROM device was identified correctly by the Linux kernel using the command dmesg.
If you have an ATAPI cdrom connected via IDE then this might look like:
$ dmesg |more . . . hda: QUANTUM FIREBALL CR8.4A, ATA DISK drive ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 ide1 at 0x170-0x177,0x376 on irq 15 hda: QUANTUM FIREBALL CR8.4A, 8063MB w/418kB Cache, CHS=16383/16/63, (U)DMA . . |
If you have an SCSI cdrom then it might look like:
$ dmesg |more . . . Vendor: PLEXTOR Model: CD-ROM PX-12TS Rev: 1.03 Type: CD-ROM ANSI SCSI revision: 02 Detected scsi CD-ROM sr0 at scsi0, channel 0, id 6, lun 0 scsi
|