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

Thread: How to play DVDs with hard drive install?

  1. #1
    Junior Member registered user
    Join Date
    May 2004
    Posts
    13

    How to play DVDs with hard drive install?

    I'm using KDE 3.2.2. It is a recent download and install, so I guess it is up to date. I'm a newbie and I don't know how to tell what version of knoppix that I have. . .

    Anyway, could someone tell me how to play a DVD movie? I love this OS, but I haven't yet figured out how to play a DVD. I know how to type commands into the Konsole, but that's about it. . .

    Thanks in advance,

    Tony

  2. #2
    Junior Member registered user
    Join Date
    May 2004
    Posts
    26
    click on the big K> then go to multimedia > Xine

    Im pretty sure that should play DVDs
    this is one of thos ethings that you could have googled really easily and i dont want to sound mean or discouraging, but just look it up next time if you can

  3. #3
    Junior Member registered user
    Join Date
    May 2004
    Posts
    13
    Quote Originally Posted by PROhan
    click on the big K> then go to multimedia > Xine

    Im pretty sure that should play DVDs
    this is one of thos ethings that you could have googled really easily and i dont want to sound mean or discouraging, but just look it up next time if you can
    I appreciate your kindness. That was the first thing I tried. I guess I should have been more specific. The error I get is a popup window with the following:

    (Error reading NAV packet)

    The name of the DVD movie does show up in the player.

    The xine site says:

    To get DVD playback working, first make sure you have a symlink /dev/dvd pointing to your DVD device on your system. For example, if your DVD drive is the master ide drive on the second IDE channel, /dev/dvd should point to /dev/hdc.

    Unfortunately, I have no idea how to do this. Or if this will fix my problem. The error that I get is not listed on their FAQ.

    Thanks!

  4. #4
    Junior Member
    Join Date
    May 2004
    Posts
    1
    Quote Originally Posted by tonylmiller
    Quote Originally Posted by PROhan
    click on the big K> then go to multimedia > Xine

    Im pretty sure that should play DVDs
    this is one of thos ethings that you could have googled really easily and i dont want to sound mean or discouraging, but just look it up next time if you can
    I appreciate your kindness. That was the first thing I tried. I guess I should have been more specific. The error I get is a popup window with the following:

    (Error reading NAV packet)

    The name of the DVD movie does show up in the player.

    The xine site says:

    To get DVD playback working, first make sure you have a symlink /dev/dvd pointing to your DVD device on your system. For example, if your DVD drive is the master ide drive on the second IDE channel, /dev/dvd should point to /dev/hdc.

    Unfortunately, I have no idea how to do this. Or if this will fix my problem. The error that I get is not listed on their FAQ.

    Thanks!
    Do it like this.
    You probably have a /dev/dvd already so you have to remove that first by

    Code:
    rm /dev/dvd
    If your dvd is connected as /dev/hdc then

    Code:
    ln -s /dev/hdc /dev/dvd
    as root.

  5. #5
    Senior Member
    Join Date
    Oct 2003
    Location
    GA
    Posts
    382
    I think you need to install libdvdcss2

    Add
    Code:
    deb ftp://ftp.nerim.net/debian-marillat/ unstable main
    to your sources.list and you'll be able to apt-get it.

    I got it to work on mine...but I installed all kinds of dvd crap...most of which I probably didn't need. This is the package others have said is needed though.

  6. #6
    Junior Member registered user
    Join Date
    May 2004
    Posts
    13
    Quote Originally Posted by champagnemojo
    I think you need to install libdvdcss2

    Add
    Code:
    deb ftp://ftp.nerim.net/debian-marillat/ unstable main
    to your sources.list and you'll be able to apt-get it.

    I got it to work on mine...but I installed all kinds of dvd crap...most of which I probably didn't need. This is the package others have said is needed though.
    I'm terribly sorry, but I do not know how to add to my sources.list. Does that statement install libdvdcss2, or do I need to do something else to do that? I need a step by step, or a link to some instructions how to do these things. I am trying to learn linux and do not know much yet.

    Thanks!

  7. #7
    Junior Member registered user
    Join Date
    May 2004
    Posts
    13
    I added the line to my sources.list in my /etc folder (actually it was in one of the subfolders; I cannot remember which one). Then when I run

    apt-get -s install libdvdcss2

    from the Konsole, I get the following:

    root@linuxcompaq:~#
    Reading Package Lists... Done
    Building Dependency Tree... Done
    W: Couldn't stat source package list ftp://ftp.nerim.net unstable/main Packages (/var/lib/apt/lists/ftp.nerim.net_debian-marillat_dists_unstable_main_binary-i386_Packages) - stat (2 No such file or directory)
    W: You may want to run apt-get update to correct these problems
    E: Couldn't find package libdvdcss2


    I felt pretty good about getting this far. hehe However, this error has me stumped. Can anyone help?

    Thanks!

  8. #8
    Senior Member registered user
    Join Date
    Nov 2002
    Posts
    1,353
    Quote Originally Posted by tonylmiller
    I added the line to my sources.list in my /etc folder (actually it was in one of the subfolders; I cannot remember which one). Then when I run

    apt-get -s install libdvdcss2

    from the Konsole, I get the following:

    root@linuxcompaq:~#
    Reading Package Lists... Done
    Building Dependency Tree... Done
    W: Couldn't stat source package list ftp://ftp.nerim.net unstable/main Packages (/var/lib/apt/lists/ftp.nerim.net_debian-marillat_dists_unstable_main_binary-i386_Packages) - stat (2 No such file or directory)
    W: You may want to run apt-get update to correct these problems
    E: Couldn't find package libdvdcss2


    I felt pretty good about getting this far. hehe However, this error has me stumped. Can anyone help?


    Thanks!
    After you add this line to /etc/apt/sources.list you need to do an "apt-get update" before doing an "apt-get install"

  9. #9
    Junior Member registered user
    Join Date
    May 2004
    Posts
    13
    Quote Originally Posted by aay
    After you add this line to /etc/apt/sources.list you need to do an "apt-get update" before doing an "apt-get install"
    That did it! Works fine now. I don't want to take too much of your time, but would you mind giving me a brief explanation of why I had to do the update thing? And what did it do? I'm trying to learn more about linux.

    Thanks again!

  10. #10
    Senior Member registered user
    Join Date
    Nov 2002
    Posts
    1,353
    Quote Originally Posted by tonylmiller
    Quote Originally Posted by aay
    After you add this line to /etc/apt/sources.list you need to do an "apt-get update" before doing an "apt-get install"
    That did it! Works fine now. I don't want to take too much of your time, but would you mind giving me a brief explanation of why I had to do the update thing? And what did it do? I'm trying to learn more about linux.

    Thanks again!
    Well once you add new repositories in /etc/apt/sources.list apt still has no idea what packages are available from those new repositories until it downloads this information using the "update" option.

    You will need to do an "apt-get update" every so often so that when you download and install software you will have the most recent versions.

    I'd suggest you look over the information on how to use apt at http://www.debian.org/doc/

    Knoppix is a mixture of Debian stable, testing, and unstable so sometimes upgrading or adding packages can cause problems. Watch out particulary if apt tells you that it is going to remove a bunch of packages. If this happens I suggest NOT upgrading/installing.

    Often you can eliminate apt's need to remove packages by substituting the following command for the generic apt-get install:

    Code:
    apt-get -t unstable install package_name
    If you want to run a simulation, using the -s option like this:

    Code:
    apt-get -s -t unstable install package_name

Page 1 of 2 12 LastLast

Similar Threads

  1. burn hard drive image to multiple dvds
    By jon1234444 in forum General Support
    Replies: 0
    Last Post: 01-20-2005, 08:14 AM
  2. xine on knoppix 3.3 will not play dvds
    By needhelpNOW in forum General Support
    Replies: 8
    Last Post: 10-29-2004, 07:27 PM
  3. plx i really want to play dvds!
    By jjman123 in forum General Support
    Replies: 1
    Last Post: 10-12-2004, 01:45 AM
  4. Getting More Help With a Hard Drive Install
    By brianfay in forum Hdd Install / Debian / Apt
    Replies: 2
    Last Post: 06-02-2004, 12:42 PM
  5. Hard drive Install
    By Gregwithoneg in forum General Support
    Replies: 6
    Last Post: 05-22-2003, 01:41 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
  •  


Intel XEON E5-2699 V3 CPU PROCESSOR 18 CORE 2.30GHZ 45MB L3 CACHE 145W SR1XD picture

Intel XEON E5-2699 V3 CPU PROCESSOR 18 CORE 2.30GHZ 45MB L3 CACHE 145W SR1XD

$45.00



Intel - Core i9-12900K Desktop Processor 16 (8P+8E) Cores up to 5.2 GHz Unloc... picture

Intel - Core i9-12900K Desktop Processor 16 (8P+8E) Cores up to 5.2 GHz Unloc...

$619.99



Intel - Core i7-12700K Desktop Processor 12 (8P+4E) Cores up to 5.0 GHz Unloc... picture

Intel - Core i7-12700K Desktop Processor 12 (8P+4E) Cores up to 5.0 GHz Unloc...

$419.99



Intel Xeon E5-2697A V4 2.6GHz CPU Processor 16-Core Socket LGA2011 SR2K1 picture

Intel Xeon E5-2697A V4 2.6GHz CPU Processor 16-Core Socket LGA2011 SR2K1

$39.99



AMD Ryzen 9 5950X 16-core 32-thread Desktop Processor picture

AMD Ryzen 9 5950X 16-core 32-thread Desktop Processor

$319.99



Intel Core i5-8500 3 GHz 8 GT/s LGA 1151 Desktop CPU Processor SR3XE picture

Intel Core i5-8500 3 GHz 8 GT/s LGA 1151 Desktop CPU Processor SR3XE

$49.99



Intel - Core i9-14900K 14th Gen 24-Core 32-Thread - 4.4GHz (6.0GHz Turbo) Soc... picture

Intel - Core i9-14900K 14th Gen 24-Core 32-Thread - 4.4GHz (6.0GHz Turbo) Soc...

$619.99



Intel Xeon E5-2697 v2 2.7GHz 30M 12-Core LGA2011 CPU Processor SR19H picture

Intel Xeon E5-2697 v2 2.7GHz 30M 12-Core LGA2011 CPU Processor SR19H

$27.99



Intel Core i5-12400 Desktop Processor With HeatSink picture

Intel Core i5-12400 Desktop Processor With HeatSink

$140.00



Intel Xeon E5-2667V4 SR2P5 (3.2GHZ/8-CORE/25MB/135W) PROCESSOR CPU picture

Intel Xeon E5-2667V4 SR2P5 (3.2GHZ/8-CORE/25MB/135W) PROCESSOR CPU

$39.95