Re: backing up dvds

2007-07-01 Thread Wojciech Puchar

with hardware DVD players, you'll need to use a
DVD authoring software (like multimedia/dvdauthor)
and a lot of reading before.


not much readings if you don't care much of anything else than movie 
itself :)

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-07-01 Thread Wojciech Puchar


dd if=/dev/acd0 of=/path/to/filename.iso bs=1024

this is how i make my .iso files of data disks.


are you sure about 1024? did you mean 1024k? (or 1m simply)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-07-01 Thread Wojciech Puchar

Hello,
  I've got a 6.2 box with a dvd writer in it. I want to back up some dvds to 
iso files so i can recreate the dvds at a later time should it be needed. I


for most if not any DVDs (all DVD-VIDEO i had) use

dd if=/dev/cd0 of=file bs=128k

bs size is just to make thing faster, it's not crucial may be any multiply 
of 2k.




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-07-01 Thread Jonathan Horne
On Sunday 01 July 2007 06:19:41 Manolis Kiagias wrote:
> Roland Smith wrote:
> > On Sat, Jun 30, 2007 at 05:39:29PM -0500, Jonathan Horne wrote:
> >> On Saturday 30 June 2007 16:46:36 Dave wrote:
> >>> Hello,
> >>> I've got a 6.2 box with a dvd writer in it. I want to back up some
> >>> dvds to iso files so i can recreate the dvds at a later time should it
> >>> be needed. I can use dvdbackup to backup in to a directory structure,
> >>> but i'd rather not mount, create the directory, and iso, i'd rather
> >>> make the iso directly from the dvd. Any pointers on this?
> >>> Thanks.
> >>> Dave.
> >>
> >> dd if=/dev/acd0 of=/path/to/filename.iso bs=1024
> >
> > That should be bs=2048.
> >
> > AFAIK, data CDs and DVDs have 2k blocks:
> >
> > slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=1024
> > dd: /dev/cd1: Invalid argument
> > 0+0 records in
> > 0+0 records out
> > 0 bytes transferred in 0.000146 secs (0 bytes/sec)
> >
> > slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=2048
> > ^C10270+0 records in
> > 10270+0 records out
> > 21032960 bytes transferred in 5.096854 secs (4126655 bytes/sec)
> >
> > Roland
>
> Roland is right, the blocksize is 2048 bytes.
> In fact the following page is a very nice read:
>
> http://www.troubleshooters.com/linux/coasterless.htm
>
> The dd command would do a much more accurate image if you also specify
> the length. The process is described in the page above.
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

hehe, shame on me for trying to recall that memory, instead of actually 
looking it up (which is exactly what i do, each time to run an .iso file 
off... just to make sure im remembering correctly!)

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-07-01 Thread Manolis Kiagias


Roland Smith wrote:
> On Sat, Jun 30, 2007 at 05:39:29PM -0500, Jonathan Horne wrote:
>   
>> On Saturday 30 June 2007 16:46:36 Dave wrote:
>> 
>>> Hello,
>>> I've got a 6.2 box with a dvd writer in it. I want to back up some dvds
>>> to iso files so i can recreate the dvds at a later time should it be
>>> needed. I can use dvdbackup to backup in to a directory structure, but i'd
>>> rather not mount, create the directory, and iso, i'd rather make the iso
>>> directly from the dvd. Any pointers on this?
>>> Thanks.
>>> Dave.
>>>   
>> dd if=/dev/acd0 of=/path/to/filename.iso bs=1024
>> 
>
> That should be bs=2048.
>
> AFAIK, data CDs and DVDs have 2k blocks:
>
> slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=1024
> dd: /dev/cd1: Invalid argument
> 0+0 records in
> 0+0 records out
> 0 bytes transferred in 0.000146 secs (0 bytes/sec)
>
> slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=2048
> ^C10270+0 records in
> 10270+0 records out
> 21032960 bytes transferred in 5.096854 secs (4126655 bytes/sec)
>
> Roland
>   
Roland is right, the blocksize is 2048 bytes.
In fact the following page is a very nice read:

http://www.troubleshooters.com/linux/coasterless.htm

The dd command would do a much more accurate image if you also specify
the length. The process is described in the page above.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-07-01 Thread Roland Smith
On Sat, Jun 30, 2007 at 05:39:29PM -0500, Jonathan Horne wrote:
> On Saturday 30 June 2007 16:46:36 Dave wrote:
> > Hello,
> > I've got a 6.2 box with a dvd writer in it. I want to back up some dvds
> > to iso files so i can recreate the dvds at a later time should it be
> > needed. I can use dvdbackup to backup in to a directory structure, but i'd
> > rather not mount, create the directory, and iso, i'd rather make the iso
> > directly from the dvd. Any pointers on this?
> > Thanks.
> > Dave.
> 
> dd if=/dev/acd0 of=/path/to/filename.iso bs=1024

That should be bs=2048.

AFAIK, data CDs and DVDs have 2k blocks:

slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=1024
dd: /dev/cd1: Invalid argument
0+0 records in
0+0 records out
0 bytes transferred in 0.000146 secs (0 bytes/sec)

slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=2048
^C10270+0 records in
10270+0 records out
21032960 bytes transferred in 5.096854 secs (4126655 bytes/sec)

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgpyEAaO8OEKw.pgp
Description: PGP signature


Re: backing up dvds

2007-06-30 Thread cpghost

Dave wrote:

Hello,
   Thanks for your reply. I don't know if this will make a difference, 
and i should have mentioned it in my original posts these are dvd 
videos and i want to get the complete dvd, everything.


If it's legal in your part of the world:

1. Install /usr/ports/multimedia/libdvdcss
2. Install /usr/ports/multimedia/libdvdread
3. Install /usr/ports/sysutils/vobcopy
4. Run vobcopy -m to copy everything to harddisk
5. Backup the directory with growisofs

BUT, be advised that menus may break, and that
.ifo and .bup files may loose meaning (IIRC they
refer to physical sectors on the DVD which are lost
when copying (and deCSS-ing) the VOBs to disk.
But the video/sound stuff is in the VOB. They're all
that really matter.

If you really want to recreate a DVD that is viewable
with hardware DVD players, you'll need to use a
DVD authoring software (like multimedia/dvdauthor)
and a lot of reading before.

Of course, all this is assuming that where you life, you
are legally allowed to make a private backup copy, to
use DeCSS to this purpose / or that you are the copyright
owner of the content (owning the media is not enough). ;-)


Thanks.
Dave.


cpghost.

--
Cordula's Web. http://www.cordula.ws/

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-06-30 Thread Dave

Hello,
   Thanks for your reply. I don't know if this will make a difference, and 
i should have mentioned it in my original posts these are dvd videos and i 
want to get the complete dvd, everything.

Thanks.
Dave.

- Original Message - 
From: "Jonathan Horne" <[EMAIL PROTECTED]>

To: 
Sent: Saturday, June 30, 2007 6:39 PM
Subject: Re: backing up dvds



On Saturday 30 June 2007 16:46:36 Dave wrote:

Hello,
I've got a 6.2 box with a dvd writer in it. I want to back up some 
dvds

to iso files so i can recreate the dvds at a later time should it be
needed. I can use dvdbackup to backup in to a directory structure, but 
i'd

rather not mount, create the directory, and iso, i'd rather make the iso
directly from the dvd. Any pointers on this?
Thanks.
Dave.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
"[EMAIL PROTECTED]"


dd if=/dev/acd0 of=/path/to/filename.iso bs=1024

this is how i make my .iso files of data disks.

cheers,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
"[EMAIL PROTECTED]" 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-06-30 Thread cpghost

Garrett Cooper wrote:

Jonathan Horne wrote:

On Saturday 30 June 2007 16:46:36 Dave wrote:
 

Hello,
I've got a 6.2 box with a dvd writer in it. I want to back up 
some dvds

to iso files so i can recreate the dvds at a later time should it be
needed. I can use dvdbackup to backup in to a directory structure, 
but i'd
rather not mount, create the directory, and iso, i'd rather make the 
iso

directly from the dvd. Any pointers on this?
Thanks.
Dave.



dd if=/dev/acd0 of=/path/to/filename.iso bs=1024

this is how i make my .iso files of data disks.

cheers,
  


Both previous answers assume that you're not trying to backup 
copyrighted CDs. In that case you need to deCSS them first, but you're 
on your own with that. 


Which is technically trivially done with:
   /usr/ports/sysutils/vobcopy
if:
  /usr/ports/multimedia/libdvdread
is compiled with:
  /usr/ports/multimedia/libdvdcss/
support...

... assuming it is legal where you live, or you own the copyright
of some CSS-scrambled content, of course. ;-)

But it won't give you an ISO yet; though backing
that stuff up with growisofs is easy enough.


-Garrett


-cpghost.

--
Cordula's Web. http://www.cordula.ws/

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-06-30 Thread Garrett Cooper

Jonathan Horne wrote:

On Saturday 30 June 2007 16:46:36 Dave wrote:
  

Hello,
I've got a 6.2 box with a dvd writer in it. I want to back up some dvds
to iso files so i can recreate the dvds at a later time should it be
needed. I can use dvdbackup to backup in to a directory structure, but i'd
rather not mount, create the directory, and iso, i'd rather make the iso
directly from the dvd. Any pointers on this?
Thanks.
Dave.



dd if=/dev/acd0 of=/path/to/filename.iso bs=1024

this is how i make my .iso files of data disks.

cheers,
  


Both previous answers assume that you're not trying to backup 
copyrighted CDs. In that case you need to deCSS them first, but you're 
on your own with that.


-Garrett
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-06-30 Thread Jonathan Horne
On Saturday 30 June 2007 16:46:36 Dave wrote:
> Hello,
> I've got a 6.2 box with a dvd writer in it. I want to back up some dvds
> to iso files so i can recreate the dvds at a later time should it be
> needed. I can use dvdbackup to backup in to a directory structure, but i'd
> rather not mount, create the directory, and iso, i'd rather make the iso
> directly from the dvd. Any pointers on this?
> Thanks.
> Dave.
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

dd if=/dev/acd0 of=/path/to/filename.iso bs=1024

this is how i make my .iso files of data disks.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: backing up dvds

2007-06-30 Thread Dantavious
Hi,
I have used K3b for this before. Very simple to use.


On Saturday 30 June 2007 17:46:36 Dave wrote:
> Hello,
> I've got a 6.2 box with a dvd writer in it. I want to back up some dvds
> to iso files so i can recreate the dvds at a later time should it be
> needed. I can use dvdbackup to backup in to a directory structure, but i'd
> rather not mount, create the directory, and iso, i'd rather make the iso
> directly from the dvd. Any pointers on this?
> Thanks.
> Dave.
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


backing up dvds

2007-06-30 Thread Dave

Hello,
   I've got a 6.2 box with a dvd writer in it. I want to back up some dvds 
to iso files so i can recreate the dvds at a later time should it be needed. 
I can use dvdbackup to backup in to a directory structure, but i'd rather 
not mount, create the directory, and iso, i'd rather make the iso directly 
from the dvd. Any pointers on this?

Thanks.
Dave.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"