* [gentoo-user] Correct Setup for DVDRAM
@ 2008-10-02 17:10 meino.cramer
2008-10-03 9:58 ` Florian Philipp
0 siblings, 1 reply; 8+ messages in thread
From: meino.cramer @ 2008-10-02 17:10 UTC (permalink / raw
To: Gentoo
Hi,
since I own a LG HD-LT-DT GSA-4163B bruner, which
allows to burn DVDRAM discs I try to generate a
setup, which successfully writes data to a DVDRAM.
Everything else works fine. But writing a complete DVDRAM
takes "hours". As recommended I use UDF as the filesystem
of choice -- no unnessary rewrite of the same sectors of
the DVDRAM.
I tried to use packet-writing but ot does not help.
Is there any "definite" recipe how setup everything to
get any reasonable transfer rate to and from the DVDRAM
or is it simply not possible with Linux?
Any help is very appreciated -- thank you very much in advance!
mcc
--
Please don't send me any Word- or Powerpoint-Attachments
unless it's absolutely neccessary. - Send simply Text.
See http://www.gnu.org/philosophy/no-word-attachments.html
In a world without fences and walls nobody needs gates and windows.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] Correct Setup for DVDRAM
2008-10-02 17:10 [gentoo-user] Correct Setup for DVDRAM meino.cramer
@ 2008-10-03 9:58 ` Florian Philipp
2008-10-07 16:01 ` [gentoo-user] [ot] " Simon
0 siblings, 1 reply; 8+ messages in thread
From: Florian Philipp @ 2008-10-03 9:58 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 970 bytes --]
meino.cramer@gmx.de schrieb:
> Hi,
>
> since I own a LG HD-LT-DT GSA-4163B bruner, which
> allows to burn DVDRAM discs I try to generate a
> setup, which successfully writes data to a DVDRAM.
>
> Everything else works fine. But writing a complete DVDRAM
> takes "hours". As recommended I use UDF as the filesystem
> of choice -- no unnessary rewrite of the same sectors of
> the DVDRAM.
>
> I tried to use packet-writing but ot does not help.
>
> Is there any "definite" recipe how setup everything to
> get any reasonable transfer rate to and from the DVDRAM
> or is it simply not possible with Linux?
>
> Any help is very appreciated -- thank you very much in advance!
> mcc
>
I've given up packet writing a long time ago. It never worked for me.
IMHO both udftools and the kernel driver are not really usable (just try
udffsck ...) and with the advent of flash memory I don't think anyone
will invest a lot of work in either one.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 260 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] [ot] Correct Setup for DVDRAM
2008-10-03 9:58 ` Florian Philipp
@ 2008-10-07 16:01 ` Simon
2008-10-07 20:34 ` Dirk Heinrichs
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Simon @ 2008-10-07 16:01 UTC (permalink / raw
To: gentoo-user
Storing data on a dvd is always quite useful and dvds cost much less than usb
keys or other... I've been thinking about one thing.
Is there any such thing as an incremental filesystem for write-once-read-only
media (ie. DVD+-R)?...
A filesystem that would append the inode table at the end of the session at each
session, and the table would refer to previous dvds, only the last table would
be read, previous tables ignored (unless used for journaling)... This would
make that after some time of usage if you wish to copy certain files back to a
hd, the filesystem would have to instruct you to insert a specific series of
dvds in order to extract all those files (or blocks). This of course will
clearly result in waste and large number of dvds if used a lot in read-write
operations (ie, nothing gets ever rewritten but instead can be no longer
referenced by the table).
I've been thinking on hacking the ext2 kernel driver to support this kind of thing.
Of course the goal with such filesystem is for backup of individual files, but
since I would be using something like a modified ext2fs, a very large file could
be spread on multiple dvds, be fragmented and stored this way transparently.
Another way might be to use a read-writable media for storing the fs table.
Possibly, using a modified ext2fs which would transparently work like a real
ext2fs, a tool like rsync could be used to make true incremental backups using
the hard-links trick. But it could also be used like a rarely used hard-drive
which does not suffer from magnetic deterioration (however unlikely this is).
Any such tool?
If not, this would be my first project dealing with kernel programming.
Simon
Florian Philipp wrote:
> meino.cramer@gmx.de schrieb:
>> Hi,
>>
>> since I own a LG HD-LT-DT GSA-4163B bruner, which
>> allows to burn DVDRAM discs I try to generate a
>> setup, which successfully writes data to a DVDRAM.
>>
>> Everything else works fine. But writing a complete DVDRAM
>> takes "hours". As recommended I use UDF as the filesystem
>> of choice -- no unnessary rewrite of the same sectors of
>> the DVDRAM.
>>
>> I tried to use packet-writing but ot does not help.
>>
>> Is there any "definite" recipe how setup everything to
>> get any reasonable transfer rate to and from the DVDRAM
>> or is it simply not possible with Linux?
>>
>> Any help is very appreciated -- thank you very much in advance!
>> mcc
>>
>
> I've given up packet writing a long time ago. It never worked for me.
>
> IMHO both udftools and the kernel driver are not really usable (just try
> udffsck ...) and with the advent of flash memory I don't think anyone
> will invest a lot of work in either one.
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] [ot] Correct Setup for DVDRAM
2008-10-07 16:01 ` [gentoo-user] [ot] " Simon
@ 2008-10-07 20:34 ` Dirk Heinrichs
2008-10-08 7:31 ` Pe'ter, Csa'sza'r
2008-10-08 9:07 ` Florian Philipp
2 siblings, 0 replies; 8+ messages in thread
From: Dirk Heinrichs @ 2008-10-07 20:34 UTC (permalink / raw
To: gentoo-user
Am Dienstag, 7. Oktober 2008 18:01:31 schrieb Simon:
> Any such tool?
tar -M?
Bye...
Dirk
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] [ot] Correct Setup for DVDRAM
2008-10-07 16:01 ` [gentoo-user] [ot] " Simon
2008-10-07 20:34 ` Dirk Heinrichs
@ 2008-10-08 7:31 ` Pe'ter, Csa'sza'r
2008-10-08 7:44 ` Dirk Heinrichs
2008-10-08 9:07 ` Florian Philipp
2 siblings, 1 reply; 8+ messages in thread
From: Pe'ter, Csa'sza'r @ 2008-10-08 7:31 UTC (permalink / raw
To: gentoo-user
Hi,
Simon wrote:
> Another way might be to use a read-writable media for storing the fs
> table. Possibly, using a modified ext2fs which would transparently work
> like a real ext2fs, a tool like rsync could be used to make true
> incremental backups using the hard-links trick. ...
I am not very good in these things, however I wonder what are you
meaning under "hard-links trick" in this case.
I have thought about several possible kind of backup strategy for
private purposes. Once I got the idea to use hard-links for incremental
backup on a large enough external hard drive. All the backups are in
directories by their date. While creating a backup a file is hard linked
and not copied if it exists in the last backup and have not changed
since that.
I don't know if this trick is in use by any already existing program. Do
you or anybody else know such tools?
Peter
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] [ot] Correct Setup for DVDRAM
2008-10-08 7:31 ` Pe'ter, Csa'sza'r
@ 2008-10-08 7:44 ` Dirk Heinrichs
0 siblings, 0 replies; 8+ messages in thread
From: Dirk Heinrichs @ 2008-10-08 7:44 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 812 bytes --]
Am Mittwoch 08 Oktober 2008 09:31:58 schrieb ext Pe'ter, Csa'sza'r:
> I am not very good in these things, however I wonder what are you
> meaning under "hard-links trick" in this case.
There are some rsync based backup tools out there which provide a full tree
for each backup they perform. However, to minimize disk space useage, the
hardlink all unchanged files/dirs to their counterparts in previous backups.
See also: http://www.rsnapshot.org
HTH...
Dirk
--
Dirk Heinrichs | Tel: +49 (0)162 234 3408
Configuration Manager | Fax: +49 (0)211 47068 111
Capgemini Deutschland | Mail: dirk.heinrichs@capgemini.com
Wanheimerstraße 68 | Web: http://www.capgemini.com
D-40468 Düsseldorf | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: wwwkeys.pgp.net
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] [ot] Correct Setup for DVDRAM
2008-10-07 16:01 ` [gentoo-user] [ot] " Simon
2008-10-07 20:34 ` Dirk Heinrichs
2008-10-08 7:31 ` Pe'ter, Csa'sza'r
@ 2008-10-08 9:07 ` Florian Philipp
2008-10-11 21:21 ` Simon
2 siblings, 1 reply; 8+ messages in thread
From: Florian Philipp @ 2008-10-08 9:07 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 373 bytes --]
Simon schrieb:
> Storing data on a dvd is always quite useful and dvds cost much less
> than usb keys or other... I've been thinking about one thing.
>
> Is there any such thing as an incremental filesystem for
> write-once-read-only media (ie. DVD+-R)?...
>
UDF is supposed to support this (see wikipedia) but as I've already
said, it never worked for me.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 260 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] [ot] Correct Setup for DVDRAM
2008-10-08 9:07 ` Florian Philipp
@ 2008-10-11 21:21 ` Simon
0 siblings, 0 replies; 8+ messages in thread
From: Simon @ 2008-10-11 21:21 UTC (permalink / raw
To: gentoo-user
Ok thanks, I'll hack my way through!
Florian Philipp wrote:
> Simon schrieb:
>> Storing data on a dvd is always quite useful and dvds cost much less
>> than usb keys or other... I've been thinking about one thing.
>>
>> Is there any such thing as an incremental filesystem for
>> write-once-read-only media (ie. DVD+-R)?...
>>
>
> UDF is supposed to support this (see wikipedia) but as I've already
> said, it never worked for me.
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2008-10-12 1:22 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-02 17:10 [gentoo-user] Correct Setup for DVDRAM meino.cramer
2008-10-03 9:58 ` Florian Philipp
2008-10-07 16:01 ` [gentoo-user] [ot] " Simon
2008-10-07 20:34 ` Dirk Heinrichs
2008-10-08 7:31 ` Pe'ter, Csa'sza'r
2008-10-08 7:44 ` Dirk Heinrichs
2008-10-08 9:07 ` Florian Philipp
2008-10-11 21:21 ` Simon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox