Find the answer to your Linux question:
Results 1 to 8 of 8
hi folks... i installed recent version of kubuntu with a cdrom drive, installed the ubuntu desktop (and am now using that). Then I switched out the cdrom drive for a ...
  1. #1
    Just Joined!
    Join Date
    Feb 2007
    Location
    Winnipeg, MB, Canada
    Posts
    6

    Unhappy [SOLVED] can't see dvd drive

    hi folks... i installed recent version of kubuntu with a cdrom drive, installed the ubuntu desktop (and am now using that). Then I switched out the cdrom drive for a dvd-rw.

    Menu: Places -> computer only gives filesystem (my hard drive) and LaCie (USB hard drive.) /mnt is empty. I can press the button on the drive, and it opens and blinks... I can insert a disc. Just can't access it anywhere. Dvd is only device connected with PATA, my hard drive is SATA. Can someone please push me in the right direction to fix this?

    # /etc/fstab: static file system information.
    #
    # <file system> <mount point> <type> <options> <dump> <pass>
    proc /proc proc defaults 0 0
    # /dev/sda1
    UUID=b1a5da8a-c66b-4798-afae-81c5f4841a3f / ext3 relatime,errors=remount-ro 0 1
    # /dev/sda5
    UUID=2bb548aa-8e48-7c8c-2fd2-67ffb13e9860 none swap sw 0 0
    /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Have you checked /media/cdrom0 folder?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Feb 2007
    Location
    Winnipeg, MB, Canada
    Posts
    6
    Thank for a quick reply. There is a /media/cdrom0 folder, and it's empty.

    Been doing some more research: if I do

    Code:
    sudo lshw -C disk
    I only get:
    Code:
      *-disk                 
           description: ATA Disk
           product: WDC WD2500AAJS-0
           vendor: Western Digital
           physical id: 0.0.0
           bus info: scsi@2:0.0.0
           logical name: /dev/sda
           version: 01.0
           serial: WD-WMAV20557000
           size: 232GiB (250GB)
           capabilities: partitioned partitioned:dos
           configuration: ansiversion=5 signature=000e4869
      *-disk
           description: SCSI Disk
           physical id: 0.0.0
           bus info: scsi@7:0.0.0
           logical name: /dev/sdb
           size: 298GiB (320GB)
           capabilities: partitioned partitioned:dos
           configuration: signature=90ee5128
    mtab, if you need it:
    Code:
        /dev/sda1 / ext3 rw,relatime,errors=remount-ro 0 0
        tmpfs /lib/init/rw tmpfs rw,nosuid,mode=0755 0 0
        /proc /proc proc rw,noexec,nosuid,nodev 0 0
        sysfs /sys sysfs rw,noexec,nosuid,nodev 0 0
        varrun /var/run tmpfs rw,nosuid,mode=0755 0 0
        varlock /var/lock tmpfs rw,noexec,nosuid,nodev,mode=1777 0 0
        udev /dev tmpfs rw,mode=0755 0 0
        tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0
        devpts /dev/pts devpts rw,noexec,nosuid,gid=5,mode=620 0 0
        fusectl /sys/fs/fuse/connections fusectl rw 0 0
        lrm /lib/modules/2.6.27-11-generic/volatile tmpfs rw,mode=755 0 0
        securityfs /sys/kernel/security securityfs rw 0 0
        binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,noexec,nosuid,nodev 0 0
        gvfs-fuse-daemon /home/shaeffer/.gvfs fuse.gvfs-fuse-daemon rw,nosuid,nodev,user=shaeffer 0 0
        /dev/sdb1 /media/LaCie vfat rw,nosuid,nodev,uhelper=hal,shortname=mixed,uid=1000,utf8,umask=077,flush 0 0
    Deciphering an answer off of other forums is proving difficult... problems aren't quite like mine either, that I've found....

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Does these commands list correct info of your drive?
    Code:
    sudo hdparm -I /dev/dvd
    sudo hdparm -I /dev/cdrom

    Have you tried any other DVD/CD/Audio CD?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Feb 2007
    Location
    Winnipeg, MB, Canada
    Posts
    6
    Out of both of those is
    "No such file or directory"

    When I open Kaffeine and "Play Audio CD" it gives me
    No Audio CD found

  6. #6
    Linux Guru
    Join Date
    Nov 2007
    Posts
    1,695
    I can press the button on the drive, and it opens and blinks... I can insert a disc.
    That means it has power - nothing else.

    Are you sure the jumper on the DVD is set correctly and that the BIOS is set to recognize it?

    Does it show up during Linux boot?

    Code:
    dmesg | grep -i dvd
    What do these show?

    Code:
    ls -al /dev/hd*
    Code:
    ls -al /dev/sr*

  7. #7
    Just Joined!
    Join Date
    Feb 2007
    Location
    Winnipeg, MB, Canada
    Posts
    6

    Talking

    Tried the commands:
    1) nothing
    2) nothing
    3) nothing that looks like a cdrom

    That means it has power - nothing else.
    Ah. Ah....? I did not know it was possible for the drive to open with out a data connection.

    I did check both ends of PATA connector at one point, but I went back and re-plugged them again.

    I checked the BIOS, it was not auto-detecting. I then even switched things around (CD/DVD) between my old and new computer again. I actually had to flip the new machine on its side so I could get a good grip and connect the ATA connector into the drive again... this time it was more than looking "well-connected", it actually made a bit of an audible click. Lo and behold, auto-detect in BIOS now sees it.

    The OS now sees it too. Thanks folks.

    (Learned a couple new commands in the meantime, at least.)

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Glad to help you !
    Do start a new thread if you have any other questions.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

Posting Permissions

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