PDA

View Full Version : HD Install0 CDROM does not work.



Dosmaen
04-17-2004, 05:14 AM
After installing Knoppix to the hard drive, the CD-ROM stopped working Anyway to correct this? Thanks for your time! It is a CD-RW Drive.

OErjan
04-17-2004, 08:29 AM
ok, post contents of your /etc/fstab file here.
and output from
dmesg|grep CD also try replacing CD with sr, sg and sc.
note that Linux makes difeence between LarGe aNd SmaLl letters.
so CD and cd are NOT the same.
if you do that i will try to explain what to do and why.
the dmesg will give me info on your computer, that wil make it easyer for me to hep. and the fstab is a textfile that contain information how the computer should let you acess the drives.

Dosmaen
04-17-2004, 09:06 AM
Ahh, sorry, I kinda figured about the capital letters making a difference and stuff, I just have never used linux in the console so I don't know much of it, apt-get is about it :P.

CDROM:


dmesg|CD
LG CD-RW CED-8080B, ATAPI CD/DVD-ROM drive
Vendor: LG Model: CD-RW CED-8080B Rev: 1.04
Type: CD-ROM ANSI SCSI revision: 02
Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0
Uniform CD-ROM driver Revision: 3.12

dmesg|grep sc:

Kernel command line: auto BOOT_IMAGE=Linux ro root=301 hda=scsi hdb=scsi hdc=scsi hdd=scsi hde=scsi hdf=scsi hdg=scsi hdh=scsi apm=power-off nomce
ide_setup: hda=scsi
ide_setup: hdb=scsi
ide_setup: hdc=scsi
ide_setup: hdd=scsi
ide_setup: hde=scsi
ide_setup: hdf=scsi
ide_setup: hdg=scsi
ide_setup: hdh=scsi
vesafb: scrolling: redraw
ide-cd: passing drive hdc to ide-scsi emulation.
hdc: attached ide-scsi driver.
scsi0 : SCSI host adapter emulation for IDE ATAPI devices
Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0
sr0: scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray




FSTAB:
/dev/hda1 / ext2 defaults,errors=remount-ro 0 1
/dev/hda5 none swap sw 0 0
proc /proc proc defaults 0 0
/dev/fd0 /floppy vfat defaults,user,noauto,showexec,umask=022 0 0
/dev/cdrom /cdrom iso9660 defaults,ro,user,noexec,noauto 0 0
/dev/dvd /dvd iso9660 defaults,ro,user,noexec,noauto 0 0
/dev/cdaudio /cdaudio iso9660 defaults,ro,user,noexec,noauto 0 0
]

OErjan
04-17-2004, 01:03 PM
ok if you look at output on those you see that there is talk about ide-scsi ATAPI, CD_ROM driver...


de-cd: passing drive hdc to ide-scsi emulation.
hdc: attached ide-scsi driver.
scsi0 : SCSI host adapter emulation for IDE ATAPI devices
Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0
sr0: scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray

and jumbled in all that see sr0 that is your CDburner as far as i know.
so replace /dev/cdrom with /dev/sr0 in fstab and it should work fine to mount (mount /cdrom)
to burn just use cdrecord in the console cdrecord -v speed=4 dev=0,0,0 /home/user/CD.iso
or k3b if you like the graphical way.
little more on burning .iso's in linux (the cript further down is FAST) http://www.knoppix.net/forum/viewtopic.php?t=9703

Dosmaen
04-17-2004, 08:43 PM
Thanks alot! Another problem soved! :D