LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 05-12-2011, 10:35 PM   #1
9sp7ky3
Member
 
Registered: Mar 2011
Posts: 105

Rep: Reputation: 0
trying to create a dvd from a dvd


i know the description is far from the greatest but i have a full series of a show in a box set....i need to make copies...and ive honestly never made a dvd myself...ive made plenty of cds....never a dvd...so i guess the question is...what applications do i need? should i rip the dvd onto my hard drive first? really not sure what i need to do...im using ubuntu 10.10 ive already installed gnomebaker...help?
 
Old 05-13-2011, 12:35 AM   #2
tommcd
Senior Member
 
Registered: Jun 2006
Location: Philadelphia PA USA
Distribution: Lubuntu, Slackware
Posts: 2,230

Rep: Reputation: 293Reputation: 293Reputation: 293
What distro are you using?
You can rip the DVD to your hard drive with Handbrake: http://handbrake.fr/
You can then create a backup DVD with Devede: http://www.rastersoft.com/programas/devede.html
 
Old 05-13-2011, 07:26 AM   #3
snatale1
Member
 
Registered: Aug 2003
Location: Richmond, Virginia, US
Distribution: Ubuntu 20.04 / Manjaro
Posts: 439

Rep: Reputation: 48
Quote:
Originally Posted by 9sp7ky3 View Post
i know the description is far from the greatest but i have a full series of a show in a box set....i need to make copies...and ive honestly never made a dvd myself...ive made plenty of cds....never a dvd...so i guess the question is...what applications do i need? should i rip the dvd onto my hard drive first? really not sure what i need to do...im using ubuntu 10.10 ive already installed gnomebaker...help?
You DVD's are going to be encrypted so by default you can't rip them. Head over to medibuntu add their repo and install everything. As mentioned above Handbrake is a good ripper but can be a little tricky (for me at least)you can also install thoggen which is a super basic ripper that gets the job done. Then, again encode with Devedee and burn the iso to DVD. it's always a good idea to burn DVD's SLOW! I won't burn faster than 8x. A lot of people won't go faster the 4x!
 
Old 05-13-2011, 07:31 AM   #4
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
This is how I do it from a terminal:

To burn an image of a CD/DVD to the hard drive:
Code:
dd if=/dev/sr0 of=namethedvd.iso
Replace /dev/sr0 with your DVD drive.

To burn an iso to DVD:
Code:
growisofs -dvd-compat -Z /dev/sr0=namethedvd.iso
Then you should check your DVD against the ISO image:
Code:
cmp /dev/sr0 namethedvd.iso
or use this script:
Code:
#!/bin/sh
# iso-md5-check.sh
# Bruce Hill <support at happypenguincomputers dot com>
#
# Check the md5sum of a CD/DVD vs. the md5sum of an ISO.
#

if [ $1 ]; then
  File=$1
else
  echo "Usage: $0 </path/to/ISO> <CD/DVD-device>"
  echo "E.g.   $0  /tmp/memtest86-4.0.iso /dev/dvd"
  exit 1
fi

if [ $2 ]; then
  Drive=$2
else
  echo "Usage: $0 </path/to/ISO> <CD/DVD-device>"
  echo "E.g.   $0  /tmp/memtest86-4.0.iso /dev/dvd"
  exit 1
fi

if [ ! -b $Drive ]; then
  echo "ERROR.  '$Drive' is not a block device."
  exit 1
fi

if [ ! -r $File ]; then
  echo "ERROR.  ISO image '$File' does not exist."
  exit 1
else
  echo "** Verifying md5sums between $File <-> $Drive"
  dd if=$Drive | head -c $(stat --format=%s $File) | md5sum \
    && md5sum $File
fi
Copy that to a file and name it iso-md5-check.sh then make it executable by issuing:
Code:
chmod +x iso-md5-check.sh
Then issue the command:
Code:
sh iso-md5-check.sh /tmp/memtest86-4.0.iso /dev/sr0
in the directory with the script with the path to your ISO file first, and the drive
where the DVD is located second.

You might find a GUI app easier to use, but this method is simple and more reliable
than those GUI apps. They do the same, or something similar, in the background.
It's just hidden so you don't know/see what's happening.

Last edited by Bruce Hill; 06-10-2011 at 03:47 PM.
 
1 members found this post helpful.
Old 05-13-2011, 09:35 AM   #5
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Quote:
Originally Posted by Bruce Hill View Post
Code:
growisofs -dvd-compat -Z /dev/sr0=namethedvd.iso
I didn't think that "growisofs" can be used to burn ISO images. But isn't that what "cdrecord" and "wodim" is for?
 
Old 05-13-2011, 09:44 AM   #6
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,940

Rep: Reputation: 129Reputation: 129
http://www.linuxmanpages.com/man1/growisofs.1.php

cdrecord also burns DVD from ISO; wodim is a Debian fork iirc, which may
or may not work -- ymmv

The commands I posted work and are used by me. If you "think" they don't
work you should try and at least Google first.
 
  


Reply



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



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] My DVD unit can read a data DVD but not an (original) video DVD vortex3 Linux - Hardware 3 01-02-2011 06:29 AM
Burning dual layer dvd (DVD DL +R) fails using k3b, Nero 4 Linux, Gnome CD/DVD Creat skyxn3t Linux - General 1 09-03-2010 08:26 PM
How do you create a DVD that can play in a DVD player from regular .avi videos? whited Linux - Software 2 04-09-2008 05:45 PM
which DVD player can play DVD from hard drive *and* support DVD Menu ? tho_x_tran Linux - Software 16 11-16-2006 02:00 PM
DVD-Video burned on DVD-RW works but not on DVD-R iccananea Linux - Software 2 06-28-2004 08:34 PM

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

All times are GMT -5. The time now is 02:16 AM.

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