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
  •  


G.SKILL Trident Z5 RGB 64GB (2 x 32GB) 288-Pin PC RAM DDR5 6400 (PC5 51200) M... picture

G.SKILL Trident Z5 RGB 64GB (2 x 32GB) 288-Pin PC RAM DDR5 6400 (PC5 51200) M...

$214.99



A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G picture

A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G

$13.99



8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A picture

8GB PC3L-12800S 1600MHz SODIMM DDR3 RAM | Grade A

$12.00



A-Tech 8GB PC3-12800 Desktop DDR3 1600 MHz Non ECC 240-Pin DIMM Memory RAM 1x 8G picture

A-Tech 8GB PC3-12800 Desktop DDR3 1600 MHz Non ECC 240-Pin DIMM Memory RAM 1x 8G

$13.99



HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin picture

HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin

$15.90



Team T-FORCE VULCAN Z 32GB (2 x 16GB) PC RAM DDR4 3200 (PC4 25600) Memory picture

Team T-FORCE VULCAN Z 32GB (2 x 16GB) PC RAM DDR4 3200 (PC4 25600) Memory

$54.99



Team T-FORCE VULCAN Z 16GB (2 x 8GB) 288-Pin PC RAM DDR4 3200 (PC4 25600) Intel picture

Team T-FORCE VULCAN Z 16GB (2 x 8GB) 288-Pin PC RAM DDR4 3200 (PC4 25600) Intel

$33.99



Crucial DDR3L 16GB 1600 2x 8GB PC3-12800 Laptop SODIMM Memory RAM PC3 16G DDR3 picture

Crucial DDR3L 16GB 1600 2x 8GB PC3-12800 Laptop SODIMM Memory RAM PC3 16G DDR3

$13.50



256GB Kit (8 x 32GB) PC4-17000 LRDIMM DELL POWEREDGE R730xd R730 R630 Memory RAM picture

256GB Kit (8 x 32GB) PC4-17000 LRDIMM DELL POWEREDGE R730xd R730 R630 Memory RAM

$255.92



Kingston HyperX FURY DDR3 8GB 16GB 32G 1600 1866 1333 Desktop Memory RAM DIMM picture

Kingston HyperX FURY DDR3 8GB 16GB 32G 1600 1866 1333 Desktop Memory RAM DIMM

$38.95