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
  •  


Cisco Catalyst 3650 48-Port Managed PoE+ Gigabit Switch WS-C3650-48FS-E picture

Cisco Catalyst 3650 48-Port Managed PoE+ Gigabit Switch WS-C3650-48FS-E

$55.99



Cisco Nexus 48-Port 10G SFP+ Switch N9K-9396PX w/ 9K-M12PQ 12-Port 40G QSFP picture

Cisco Nexus 48-Port 10G SFP+ Switch N9K-9396PX w/ 9K-M12PQ 12-Port 40G QSFP

$249.99



Cisco 24-Port Managed Gigabit Switch WS-C3750G-24TS-S picture

Cisco 24-Port Managed Gigabit Switch WS-C3750G-24TS-S

$49.99



Cisco IE-3000-8TC Industrial Ethernet 8 Ports Managed Switch 1 Year Warranty picture

Cisco IE-3000-8TC Industrial Ethernet 8 Ports Managed Switch 1 Year Warranty

$114.00



New Linksys SE3005 5-port Gigabit Ethernet Switch picture

New Linksys SE3005 5-port Gigabit Ethernet Switch

$18.99



New 10/100 Mbps 8 Ports Fast Ethernet LAN Desktop RJ45 Network Switch Hub picture

New 10/100 Mbps 8 Ports Fast Ethernet LAN Desktop RJ45 Network Switch Hub

$11.49



NETGEAR GS308 8 Gigabit Port Unmanaged Ethernet Switch with Power Cord picture

NETGEAR GS308 8 Gigabit Port Unmanaged Ethernet Switch with Power Cord

$12.95



Juniper Networks EX3300-48P 48-Port PoE+ 4x SFP+ Network Switch w/ Power Cord picture

Juniper Networks EX3300-48P 48-Port PoE+ 4x SFP+ Network Switch w/ Power Cord

$43.95



Netgear ProSafe S3300-52X-POE+ 48-Port Gigabit PoE+ Stackable Network Switch picture

Netgear ProSafe S3300-52X-POE+ 48-Port Gigabit PoE+ Stackable Network Switch

$100.95



Netgear Prosafe Plus JGS524PE 24 Port Gigabit Switch 12 Port PoE JGS524PE-100NAS picture

Netgear Prosafe Plus JGS524PE 24 Port Gigabit Switch 12 Port PoE JGS524PE-100NAS

$129.98