Gentoo Archives: gentoo-user

From: Grant <emailgrant@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Copying encrypted files from a DVD
Date: Sat, 16 May 2009 13:38:34
Message-Id: 49bf44f10905160638h15c6f38bga3dd3ca292f11f36@mail.gmail.com
In Reply to: Re: [gentoo-user] Copying encrypted files from a DVD by Ricardo Bevilacqua
1 >> I'd like to back up the files on my DVD-Audio discs.  The files are
2 >> encrypted and I don't want to decrypt them, I just want to back them
3 >> up.  I'm getting I/O errors when I try to cp the files, and I'm
4 >> guessing it's because of the encryption.  Does anyone know of a method
5 >> that would back these discs up in their encrypted form?  Here are the
6 >> errors I get:
7 >>
8 >> # cp -R /mnt/cdrom/AUDIO_TS DVD-A
9 >> cp: reading `/mnt/cdrom/AUDIO_TS/ATS_01_1.AOB': Input/output error
10 >> cp: reading `/mnt/cdrom/AUDIO_TS/ATS_01_2.AOB': Input/output error
11 >> cp: reading `/mnt/cdrom/AUDIO_TS/ATS_01_3.AOB': Input/output error
12 >> cp: reading `/mnt/cdrom/AUDIO_TS/ATS_01_4.AOB': Input/output error
13 >> cp: reading `/mnt/cdrom/AUDIO_TS/AUDIO_SV.VOB': Input/output error
14 >> cp: reading `/mnt/cdrom/AUDIO_TS/AUDIO_TS.VOB': Input/output error
15 >>
16 >> - Grant
17 >>
18 >>
19 >
20 >
21 > Why don't you use the (very old, but still effective) dd [1] command
22 > to create an ISO image?
23 >
24 > dd if=/dev/<your-dvd-device> of=<some-path>/bakup.iso bs=2048 conv=sync,notrunc
25
26 Unfortunately I get:
27
28 $ dd if=/dev/hda of=DVD-A/dvda.iso bs=2048 conv=sync,notruncdd:
29 reading `/dev/hda': Input/output error
30 1848+0 records in
31 1848+0 records out
32 3784704 bytes (3.8 MB) copied, 2.36347 s, 1.6 MB/s
33
34 I'm sure it's because of the encryption. I'll have to back it up
35 unencrypted. In case anyone is interested, DVDA-Explorer and DVDFab
36 will both do the job. Both free, both easy to find, both work via
37 wine.
38
39 - Grant
40
41
42 > That will make an exact copy of your DVD into your hard disk.
43 > I don't know if this is what you want to do.
44 >
45 >
46 >
47 > Ricardo.
48 >
49 > [1] http://en.wikipedia.org/wiki/Dd_(Unix)