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
  •  


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



Samsung 16GB 2Rx4 PC4-2133P DDR4-17000 1.2V RDIMM ECC Registered Server Memory picture

Samsung 16GB 2Rx4 PC4-2133P DDR4-17000 1.2V RDIMM ECC Registered Server Memory

$16.29



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

$12.90



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



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

$13.25



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

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

$27.98



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

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

$12.00



32GB (4X8GB) DDR3 PC3-12800 1600 NON ECC LOW DENSITY MEMORY F3-12800CL10Q-32GBXL picture

32GB (4X8GB) DDR3 PC3-12800 1600 NON ECC LOW DENSITY MEMORY F3-12800CL10Q-32GBXL

$32.00



A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM picture

A-Tech 256GB 4x 64GB 4Rx4 PC4-19200 ECC Load Reduced LRDIMM Server Memory RAM

$287.96



Samsung 64GB 4DRx4 PC4-2400 LRDIMM DDR4-19200 ECC Load Reduced Server Memory RAM picture

Samsung 64GB 4DRx4 PC4-2400 LRDIMM DDR4-19200 ECC Load Reduced Server Memory RAM

$71.99