LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-12-2019, 09:50 AM   #1
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Rep: Reputation: Disabled
How can I watch a movie on laptop with ubuntu 18.04?


laptop w/ dvd player; need install software; don't remember what i tried in past - didn't work.
 
Old 09-12-2019, 10:02 AM   #2
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,358
Blog Entries: 3

Rep: Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767
Try VLC. If you still can't read the DVD, try looking up how to add DeCSS.
 
1 members found this post helpful.
Old 09-12-2019, 10:05 AM   #3
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 4,003
Blog Entries: 33

Rep: Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471
hddfsck,

Open a terminal and use this command:

Code:
 sudo apt-get install ubuntu-restricted-extras
This link should help you:
https://itsfoss.com/play-dvd-ubuntu-1310/
 
1 members found this post helpful.
Old 09-12-2019, 10:09 AM   #4
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Turbocapitalist View Post
Try VLC. If you still can't read the DVD, try looking up how to add DeCSS.
Thanks. I did try VLC previously, but I'll try it again.
 
Old 09-12-2019, 10:23 AM   #5
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,465

Rep: Reputation: 299Reputation: 299Reputation: 299
Install libdvd-pkg and reconfigure it for libdvdcss2.

Code:
sudo apt install libdvd-pkg 
sudo dpkg-reconfigure libdvd-pkg
... and answer "yes" when asked to install libdvdcss2.

Or, install an upstream VLC package.
 
1 members found this post helpful.
Old 09-12-2019, 10:36 AM   #6
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by jens View Post
Install libdvd-pkg and reconfigure it for libdvdcss2.

Code:
sudo apt install libdvd-pkg 
sudo dpkg-reconfigure libdvd-pkg
... and answer "yes" when asked to install libdvdcss2.

Or, install an upstream VLC package.
Thanks, I'll try it.
 
Old 09-12-2019, 10:38 AM   #7
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by jens View Post
Install libdvd-pkg and reconfigure it for libdvdcss2.

Code:
sudo apt install libdvd-pkg 
sudo dpkg-reconfigure libdvd-pkg
... and answer "yes" when asked to install libdvdcss2.

Or, install an upstream VLC package.
Got the following: sudo apt-get install libdvd-pkg
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
 
Old 09-12-2019, 10:47 AM   #8
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063
Another way, and maybe easier; download the libdvdcss2 package directly from here, then run the following command in a terminal;

Code:
sudo dpkg -i libdvdcss2_1.2.13-0_amd64.deb
Download the package called libdvdcss2_1.2.13-0_amd64.deb for a 64-bit system. As long as you have VLC installed, it should pickup the above library and play back DVD's encrypted with CSS.
 
1 members found this post helpful.
Old 09-12-2019, 11:15 AM   #9
tyler2016
Member
 
Registered: Sep 2018
Distribution: Debian, CentOS, FreeBSD
Posts: 243

Rep: Reputation: Disabled
....

Last edited by tyler2016; 09-12-2019 at 11:16 AM. Reason: Deleting post. Other replies said what I was going to.
 
Old 09-12-2019, 11:25 AM   #10
jkirchner
Member
 
Registered: Apr 2007
Location: West Virginia
Distribution: Pop!_OS
Posts: 945

Rep: Reputation: 297Reputation: 297Reputation: 297
Quote:
Originally Posted by hddfsck View Post
Got the following: sudo apt-get install libdvd-pkg
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
simply run the code it said to run

Code:
sudo dpkg --configure -a
The method described above, to get libdvd-pkg and then to configure it, works like a charm.
 
1 members found this post helpful.
Old 09-12-2019, 04:34 PM   #11
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by beachboy2 View Post
hddfsck,

Open a terminal and use this command:

Code:
 sudo apt-get install ubuntu-restricted-extras
This link should help you:
https://itsfoss.com/play-dvd-ubuntu-1310/
Worked like a charm! Thanks.
 
Old 09-13-2019, 12:18 AM   #12
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,358
Blog Entries: 3

Rep: Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767
Excellent that it was solved with that package.

Since your question was about playback on GNU/Linux, look at the 1999 legal case against Jon Lech Johansen (aka DVD Jon) in Norway for background. That case dragged on for around four years. Even though DVD Jon was neither in the EU nor was the EUCD even in effect until 2001 in the EU itself, and even though he enabled playback, and even though anyone could copy a DVD without decoding it or playing it back, he was nevertheless prosecuted over copyright and accused of enabling illegal copying. Even those that made it into a t-shirt got sued.

Again the heart of the case was about playback but neither MPAA nor M$ wanted that brought up. So instead the court and the media went on and on and on about copying, successfully keeping playback on GNU/Linux out of the news. Only two articles I ever saw identified that issue correctly. Even in 2004 the media was still referring to DeCSS incorrectly as "copy protection".

The EFN page linked to above now contains lots of dead links but some of them can still be found with the Wayback Machine at archive.org.

Of course that was when there was a far, far more active trade press than today and there were, in absolute numbers, more tech people around than today.
 
Old 09-13-2019, 08:06 AM   #13
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Turbocapitalist View Post
Excellent that it was solved with that package.

Since your question was about playback on GNU/Linux, look at the 1999 legal case against Jon Lech Johansen (aka DVD Jon) in Norway for background. That case dragged on for around four years. Even though DVD Jon was neither in the EU nor was the EUCD even in effect until 2001 in the EU itself, and even though he enabled playback, and even though anyone could copy a DVD without decoding it or playing it back, he was nevertheless prosecuted over copyright and accused of enabling illegal copying. Even those that made it into a t-shirt got sued.

Again the heart of the case was about playback but neither MPAA nor M$ wanted that brought up. So instead the court and the media went on and on and on about copying, successfully keeping playback on GNU/Linux out of the news. Only two articles I ever saw identified that issue correctly. Even in 2004 the media was still referring to DeCSS incorrectly as "copy protection".

The EFN page linked to above now contains lots of dead links but some of them can still be found with the Wayback Machine at archive.org.

Of course that was when there was a far, far more active trade press than today and there were, in absolute numbers, more tech people around than today.
Are you saying using VLC to play a dvd might be considered illegal activity?
 
Old 09-13-2019, 09:04 AM   #14
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,358
Blog Entries: 3

Rep: Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767Reputation: 3767
No. Read the courts' conclusions in the links above, if you have insomnia. I'm saying that M$ went to great lengths to make it difficult to play video back on GNU/Linux and it is still unnecessarily difficult some 20 years later because of them. Around the middle of that saga they were also starting to piggyback DRM into their updates for WMP.

Again, DeCSS has nothing to do with copying and everything to do with playback, though both of which are quite legal as much M$ may continue to try to impair both. Yes, even copying in most jurisdictions is legal if done in the right context. The key phrases to look for there are "media shifting" and "format shifting". I bring up copying because M$ via the MPAA made copying a major red herring to distract from the topic of playback. However, playback is what VLC and DeCSS enable. Playback is (also) legal.

It is just another example of M$ holding another market back a couple of decades.

Last edited by Turbocapitalist; 09-13-2019 at 09:05 AM.
 
Old 09-13-2019, 09:59 AM   #15
hddfsck
Member
 
Registered: Aug 2019
Distribution: Debian; Ubuntu
Posts: 122

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Turbocapitalist View Post
No. Read the courts' conclusions in the links above, if you have insomnia. I'm saying that M$ went to great lengths to make it difficult to play video back on GNU/Linux and it is still unnecessarily difficult some 20 years later because of them. Around the middle of that saga they were also starting to piggyback DRM into their updates for WMP.

Again, DeCSS has nothing to do with copying and everything to do with playback, though both of which are quite legal as much M$ may continue to try to impair both. Yes, even copying in most jurisdictions is legal if done in the right context. The key phrases to look for there are "media shifting" and "format shifting". I bring up copying because M$ via the MPAA made copying a major red herring to distract from the topic of playback. However, playback is what VLC and DeCSS enable. Playback is (also) legal.

It is just another example of M$ holding another market back a couple of decades.
If it was/is legal to copy from windows, why try to 'silence' linux, especially when most people use windows?
 
  


Reply

Tags
dvd playback



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:24 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration