Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: DVD/CD-RW trouble

  1. #1
    Junior Member
    Join Date
    Jun 2003
    Location
    St. Louis currently Kuwait
    Posts
    6

    DVD/CD-RW trouble

    Drive: TOSHIBA DVD-ROM SD-R2312

    The drive will not mount for whatever reason, scsi timeout error repeats until another error about trying to access past the drive.

    /etc/fstab appears to be setup correctly with the right information and at boot Knoppix recognizes the drive a DVD/CD-RW drive.

    No way to access drive, anyone have similar issues?

  2. #2
    Junior Member
    Join Date
    Jun 2003
    Location
    St. Louis currently Kuwait
    Posts
    6
    Nevermind, brain fart...i should have been trying to mount /dev/sr0 all along.

  3. #3
    Senior Member registered user
    Join Date
    Mar 2003
    Location
    colorado springs, colorado
    Posts
    1,933
    You can mount that way OR if you want to use

    # mount /dev/cdrom

    for example you'll need to make a symbolic link that connects /dev/cdrom to /dev/sr0 like this:

    # ln -s /dev/sr0 /dev/cdrom

    Then you can test the symbolic link you just made like so:

    ls -al /dev/cdrom
    It should show you that /dev/cdrom actually points to /dev/sr0

    Presuming your /etc/fstab includes /dev/cdrom and a valid mount point then

    mount /dev/cdrom

    should mount the drive.

    Of course you may call it /dev/dvd or whatever you like but most Linux apps will be looking for /dev/cdrom.

  4. #4
    Junior Member
    Join Date
    Jun 2003
    Location
    St. Louis currently Kuwait
    Posts
    6
    Quote Originally Posted by rickenbacherus
    You can mount that way OR if you want to use

    # mount /dev/cdrom

    for example you'll need to make a symbolic link that connects /dev/cdrom to /dev/sr0 like this:

    # ln -s /dev/sr0 /dev/cdrom

    Then you can test the symbolic link you just made like so:

    ls -al /dev/cdrom
    It should show you that /dev/cdrom actually points to /dev/sr0

    Presuming your /etc/fstab includes /dev/cdrom and a valid mount point then

    mount /dev/cdrom

    should mount the drive.

    Of course you may call it /dev/dvd or whatever you like but most Linux apps will be looking for /dev/cdrom.
    Yeah i was aware of that, it appears my sys link to /dev/cdrom was wrong.

  5. #5
    Member registered user
    Join Date
    Jun 2003
    Posts
    73

    Same problem

    Quote Originally Posted by zjr
    Yeah i was aware of that, it appears my sys link to /dev/cdrom was wrong.
    I had the same problem with the DVD/CD drive in my notebook. The /dev/cdrom symlink was pointing at /dev/sr0 (scsi device?) instead of /dev/hdc like it should have. Changing the symlinked fixed the problem, but I don't know how it got set to /dev/sr0 in the first place since the startup process recognizes it as /dev/hdc. Bug with the install?

  6. #6
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479

    Re: Same problem

    Quote Originally Posted by MorskNorsk
    I had the same problem with the DVD/CD drive in my notebook. The /dev/cdrom symlink was pointing at /dev/sr0 (scsi device?) instead of /dev/hdc like it should have. Changing the symlinked fixed the problem, but I don't know how it got set to /dev/sr0 in the first place since the startup process recognizes it as /dev/hdc. Bug with the install?
    Knoppix uses scsi emulation for the drives so that's where the sr0 comes from and the /dev/sr0 would be linked to /dev/scd0 the first scsi device it should have worked but apparently did not perhaps you should file a bug report.

  7. #7
    Member registered user
    Join Date
    Jun 2003
    Posts
    73

    Re: Same problem

    Quote Originally Posted by Stephen
    Knoppix uses scsi emulation for the drives so that's where the sr0 comes from and the /dev/sr0 would be linked to /dev/scd0 the first scsi device it should have worked but apparently did not perhaps you should file a bug report.
    So SCSI emulation would make it point to a SCSI device entry? Interesting. Never fooled around with SCSI emulation before. It seems kind of silly to use it for common devices like CD drives and the like. I'm sure there is a reason for doing so though. Care to enlighten me? I'd file the bug report but I rebuilt my kernel with 2.4.21 and I could have left something out of the kernel that may have caused the problem.

  8. #8
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479

    Re: Same problem

    Quote Originally Posted by MorskNorsk
    So SCSI emulation would make it point to a SCSI device entry? Interesting. Never fooled around with SCSI emulation before. It seems kind of silly to use it for common devices like CD drives and the like. I'm sure there is a reason for doing so though. Care to enlighten me? I'd file the bug report but I rebuilt my kernel with 2.4.21 and I could have left something out of the kernel that may have caused the problem.
    It is used for burners they use scsi emulation to write CD's. You most likely left out the option for scsi emulation when you compiled the 2.4.21.

  9. #9
    Member registered user
    Join Date
    Jun 2003
    Posts
    73

    Re: Same problem

    Quote Originally Posted by Stephen
    It is used for burners they use scsi emulation to write CD's. You most likely left out the option for scsi emulation when you compiled the 2.4.21.
    Don't believe so. I include it so that I can use my CF/SM flash reader. These are the modules I have built for SCSI:
    Code:
    jebediah@ark:/lib/modules/2.4.21/kernel/drivers/scsi$ ls
    ide-scsi.o  scsi_mod.o  sd_mod.o  sg.o  sr_mod.o

  10. #10
    Senior Member registered user
    Join Date
    Feb 2003
    Location
    Nova Scotia, Canada
    Posts
    2,479

    Re: Same problem

    Quote Originally Posted by MorskNorsk
    Don't believe so. I include it so that I can use my CF/SM flash reader. These are the modules I have built for SCSI:
    Code:
    jebediah@ark:/lib/modules/2.4.21/kernel/drivers/scsi$ ls
    ide-scsi.o  scsi_mod.o  sd_mod.o  sg.o  sr_mod.o
    Well you have the required modules so there is something strange that happened maybe you should file a bug report even with the new kernel. Was there anything in dmesg about passing the drive to scsi emulation that should be there for it to work, also an idea did you change lilo to remove in the append line the hd?=scsi for the drive when you installed the new kernel.

Page 1 of 2 12 LastLast

Similar Threads

  1. X11 trouble
    By nirav1983 in forum Hardware & Booting
    Replies: 9
    Last Post: 10-12-2004, 06:05 PM
  2. BIG TROUBLE
    By Zidave in forum General Support
    Replies: 1
    Last Post: 02-20-2004, 03:22 PM
  3. Trouble with AIM 1.5.286
    By chad948 in forum General Support
    Replies: 2
    Last Post: 12-02-2003, 03:18 PM
  4. Having trouble....
    By Enigma13 in forum General Support
    Replies: 1
    Last Post: 12-02-2003, 11:14 AM
  5. 3.2 trouble
    By jimgeorge in forum General Support
    Replies: 2
    Last Post: 05-08-2003, 07:03 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


DEC DIGITAL VINTAGE 17-03427-01 CI BUS QUAD CABLE picture

DEC DIGITAL VINTAGE 17-03427-01 CI BUS QUAD CABLE

$79.99



DEC Digital DECMATION D100Q Z80 processor card CP/M PDP-11 (1982) picture

DEC Digital DECMATION D100Q Z80 processor card CP/M PDP-11 (1982)

$199.99



Vintage Harris S550 Front Control Panel Console w/ Key, DEC PDP picture

Vintage Harris S550 Front Control Panel Console w/ Key, DEC PDP

$2379.15



Vintage Digital Equipment DEC PDP Front Control Panel Bezel - Top Rack 19'' picture

Vintage Digital Equipment DEC PDP Front Control Panel Bezel - Top Rack 19''

$179.99



VINTAGE Green Screen Digital Terminal Monitor Model DEC VT320 - Powers On picture

VINTAGE Green Screen Digital Terminal Monitor Model DEC VT320 - Powers On

$195.00



DEC  PDP 8/M  PDP 8M / 4 avail / Vintage Digital Equipment Corp /Also DEC PDP 12 picture

DEC PDP 8/M PDP 8M / 4 avail / Vintage Digital Equipment Corp /Also DEC PDP 12

$5775.00



Vintage DIGITAL DEC MICROVAX II - 630QZ-A2 picture

Vintage DIGITAL DEC MICROVAX II - 630QZ-A2

$2000.00



*NEW UNOPENED* Vintage DEC LB-5923 Keyboard picture

*NEW UNOPENED* Vintage DEC LB-5923 Keyboard

$40.00



VINTAGE DEC Digital RK11-D DISK CONTROL M7255 PDP 11 (B1) picture

VINTAGE DEC Digital RK11-D DISK CONTROL M7255 PDP 11 (B1)

$129.99



Vintage DEC/The Redac mini cabinet front panel Digital Equipment Corp. 19

Vintage DEC/The Redac mini cabinet front panel Digital Equipment Corp. 19"

$269.99