Announcement

Collapse
No announcement yet.

Dolphin/DVD drive

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Dolphin/DVD drive

    When I insert a disk, almost any disk in the dvd drive, dolphin may or may not recoginze that it has something loaded, and if it's an .avi or mp4 file or almost anything video, won't report it, much less play it. This has to be a configuration issue, but which one.?

    #2
    At here

    When I insert a disk, almost any disk in the dvd drive, dolphin may or may not recoginze that it has something loaded, and if it's an .avi or mp4 file or almost anything video, won't report it, much less play it.

    How things work

    To show/play/etc a file from a device it need to be mounted: More of the mounting: http://unix.stackexchange.com/questi...evice-in-linux

    Note ! The audio CD is not mounted: http://www.linuxquestions.org/questi...-mount-795487/ .

    The KDE4 is using the solid: https://solid.kde.org

    Solid is the new hardware device framework for KDE 4 that features, among other things, a hardware discovery layer which allows you to detect and use devices regardless of operating system or architecture...
    When the CD/DVD is inserted the KDE should show a device notifier plasma widget: https://userbase.kde.org/Plasma/DeviceNotifier

    The CD/DVD can mounted from the device notifier plasma widget or from the file manager (Dolphin): https://userbase.kde.org/Dolphin


    If the Linux/KDE can't detect the CD/DVD then the KDE can't notify and the device notifier or the Dolphin can't mount the device.

    The problem can be in the CD/DVD or in the device. The CD/DVD's are not eternal:

    - http://www.makeuseof.com/tag/cds-tru...vity-mold-rot/
    - http://www.clir.org/pubs/reports/pub121/sec4.html


    I would... an example with the somewhat broken DVD

    I would try to solve the problem by using the command line - man mount:


    Code:
    MOUNT(8)                                     System Administration                                     MOUNT(8)
    
    NAME
           mount - mount a filesystem
    
    SYNOPSIS
           mount [-lhV]
    
           mount -a [-fFnrsvw] [-t vfstype] [-O optlist]
    
           mount [-fnrsvw] [-o option[,option]...]  device|dir
    
           mount [-fnrsvw] [-t vfstype] [-o options] device dir
    
    DESCRIPTION
           All  files  accessible  in  a Unix system are arranged in one big tree, the file hierarchy, rooted at /.
           These files can be spread out over several devices. The mount command serves to  attach  the  filesystem
           found on some device to the big file tree. Conversely, the umount(8) command will detach it again.
    
           The standard form of the mount command, is
    
                  mount -t type device dir
    Device is - list hardware command:
    Code:
    sudo lshw -class disk
    at here:
    Code:
      *-cdrom                 
           description: DVD-RAM writer
           product: DVDRAM GH22NS90
           vendor: HL-DT-ST
           physical id: 0.0.0
           bus info: scsi@0:0.0.0
           logical name: /dev/cdrom
           logical name: /dev/sr0
           version: HN00
           capabilities: removable audio cd-r cd-rw dvd dvd-r dvd-ram
           configuration: ansiversion=5 status=nodisc
    The device name is /dev/sr0

    Making a mount point - making a directory:

    Code:
    sudo mkdir -p  /media/mymount

    Inserting a DVD and trying to mount it:

    Code:
    sudo mount -t iso9660 /dev/sr0 /media/mymount
    The output is:
    [sudo] password for rog132:
    mount: block device /dev/sr0 is write-protected, mounting read-only
    mount: no medium found on /dev/sr0
    That is a bad sign - the system can't see the DVD.

    At here trying again and again...until the system sees the DVD or not.


    Playing media files from the CD/DVD

    If the CD/DVD can be mounted then the media file from the CD/DVD should be playable.

    The KubuntuGuide: http://ubuntuguide.org/wiki/K_All_Versions is a good information source. With the Kubuntu 14.04 I would start with the :http://ubuntuguide.org/wiki/Kubuntu_...rietary_Extras .

    At here:

    Inserting a DVD.

    Mounting it.


    Selecting a player for a file.


    or looking the file information with the media info: https://www.kubuntuforums.net/showth...ation-on-Linux

    Last edited by Rog132; Mar 12, 2015, 07:41 AM.
    A good place to start: Topic: Top 20 Kubuntu FAQs & Answers
    Searching FAQ's: Google Search 'FAQ from Kubuntuforums'

    Comment


      #3
      thanks for the suggestion. turns out it wasn't a mounting problem. i was able to get it to run a dvd cleaning disc to play, so it's mounting. I just inserted a disc i burned and have played before on this machine. the o/s informed me that there was a disc there and dolphin recognized what it was, but didn't show me anything listed there, neither did any other application. what in the world could be going on?

      Comment


        #4
        Problem solved. It wasn't a hardware issue after all. The issue was that the discs I was trying to load and watch were blue ray dvds and I didn't have the codecs installed to read or run them. I took one of these discs to a friend's windoze computer and asked him to try to read it. he couldn't. Windoze Media Player said that is was seeing some extensions it didn't recognize. Light goes on. Are these blu ray discs? apt-get install vlc did the trick. The reason Dolphin wasn't able to rell me what was on the disc was that it wasn't able to read blu ray discs, period. Now it can and I can play them in Dragon or any other media player I choose. I'm a happy camper.

        Comment

        Working...
        X