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

Thread: DVD/CD-RW trouble

Hybrid View

  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
  •  


Cisco Catalyst 8500 C8500L-8S4X 4x SFP+ 8x SFP 4x10GE 8x1GE Router-Fast Ship picture

Cisco Catalyst 8500 C8500L-8S4X 4x SFP+ 8x SFP 4x10GE 8x1GE Router-Fast Ship

$6299.99



Cisco C9300-48UXM-A Switch 9300 Series 48-port UPoE Network picture

Cisco C9300-48UXM-A Switch 9300 Series 48-port UPoE Network

$874.99



Qty 20 New Cisco QSFP-100G-FR-W2 10-3659-01 Module Hologram Brand New 20 Pack picture

Qty 20 New Cisco QSFP-100G-FR-W2 10-3659-01 Module Hologram Brand New 20 Pack

$260.00



Cisco Acacia DP04QSDD-E25-840 400G QSFP-DD Coherent DCO Transceiver Module picture

Cisco Acacia DP04QSDD-E25-840 400G QSFP-DD Coherent DCO Transceiver Module

$699.99



Cisco Catalyst 3850-48F-L 48-Port UPoE Gigabit Switch NM-4-1G picture

Cisco Catalyst 3850-48F-L 48-Port UPoE Gigabit Switch NM-4-1G

$59.99



Cisco C3850-NM-2-10G 2 Port Network Exp.Module for 3850 picture

Cisco C3850-NM-2-10G 2 Port Network Exp.Module for 3850

$18.90



Cisco ISR4331 Intergrated Service Router K9 4300series picture

Cisco ISR4331 Intergrated Service Router K9 4300series

$45.99



New-Cisco/Acacia DP04QSDD-HE0-A1 - 400G QSFP-DD ZR+ High Tx Power Optics Module picture

New-Cisco/Acacia DP04QSDD-HE0-A1 - 400G QSFP-DD ZR+ High Tx Power Optics Module

$7500.00



Cisco Catalyst C9130AXI-B WiFi 6 802.11ax Wireless Access Point Brand New picture

Cisco Catalyst C9130AXI-B WiFi 6 802.11ax Wireless Access Point Brand New

$101.99



Cisco Catalyst 2960-48TT-L 48-Port Fast Ethernet Managed Rackmount Switch picture

Cisco Catalyst 2960-48TT-L 48-Port Fast Ethernet Managed Rackmount Switch

$46.99