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 SG300-52-Port Gigabit Managed Rack Mountable Network Switch picture

Cisco SG300-52-Port Gigabit Managed Rack Mountable Network Switch

$44.95



ARUBA J9772A 2530-48G PoE+ 48 PORT ETHERNET SWITCH W/ RACK EARS J9772-60301 picture

ARUBA J9772A 2530-48G PoE+ 48 PORT ETHERNET SWITCH W/ RACK EARS J9772-60301

$140.23



HPE ARUBA 2530-24G J9773A PoE+ 24-PORT GIGABIT ETHERNET SWITCH J9773-60201 picture

HPE ARUBA 2530-24G J9773A PoE+ 24-PORT GIGABIT ETHERNET SWITCH J9773-60201

$93.24



Fortinet FortiSwitch FS-124D-POE 24 Port Gigabit Ethernet Switch UNREGISTERED picture

Fortinet FortiSwitch FS-124D-POE 24 Port Gigabit Ethernet Switch UNREGISTERED

$99.97



NETGEAR GS108 ProSafe 8-Port GbE Unmanaged Switch w/ Power Adapter picture

NETGEAR GS108 ProSafe 8-Port GbE Unmanaged Switch w/ Power Adapter

$14.99



TP-Link TL-SG108 8-Port 10/100/1000 Mbps Gigabit Ethernet Desktop Switch FREE SH picture

TP-Link TL-SG108 8-Port 10/100/1000 Mbps Gigabit Ethernet Desktop Switch FREE SH

$14.99



TP-Link TL-SG108PE 8-port Gigabit Easy Smart PoE+ Swith w/ 4-port PoE - Sealed picture

TP-Link TL-SG108PE 8-port Gigabit Easy Smart PoE+ Swith w/ 4-port PoE - Sealed

$49.50



HP JG937A Flexnetwork 5130-48G PoE+ 48-Port Gigabit Network Switch picture

HP JG937A Flexnetwork 5130-48G PoE+ 48-Port Gigabit Network Switch

$56.99



Cisco Catalyst C9300-24UX-A 24 Port 10G/mGig UPOE Network Switch + NM-8X Module picture

Cisco Catalyst C9300-24UX-A 24 Port 10G/mGig UPOE Network Switch + NM-8X Module

$579.97



TRENDnet TEG-S17D 16-Port Gigabit Unmanaged Network Switch picture

TRENDnet TEG-S17D 16-Port Gigabit Unmanaged Network Switch

$50.00