Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.hardware > #886 > unrolled thread

DVD-bak get2 DOS:8.3 FileNames?

Started byno.top.post@gmail.com
First post2011-12-03 14:53 +0000
Last post2011-12-03 19:19 +0000
Articles 5 — 5 participants

Back to article view | Back to comp.os.linux.hardware


Contents

  DVD-bak get2 DOS:8.3 FileNames? no.top.post@gmail.com - 2011-12-03 14:53 +0000
    Re: DVD-bak get2 DOS:8.3 FileNames? Tim Watts <tw+usenet@dionic.net> - 2011-12-03 16:08 +0000
    Re: DVD-bak get2 DOS:8.3 FileNames? The Natural Philosopher <tnp@invalid.invalid> - 2011-12-03 17:57 +0000
      Re: DVD-bak get2 DOS:8.3 FileNames? Robert Riches <spamtrap42@jacob21819.net> - 2011-12-04 04:37 +0000
    Re: DVD-bak get2 DOS:8.3 FileNames? mjb@signal11.invalid (Mike) - 2011-12-03 19:19 +0000

#886 — DVD-bak get2 DOS:8.3 FileNames?

Fromno.top.post@gmail.com
Date2011-12-03 14:53 +0000
SubjectDVD-bak get2 DOS:8.3 FileNames?
Message-ID<jbdd53$gf8$1@dont-email.me>
While looking at my log of how to backup a partition to DVD,
I noticed that previous backups have got all file names in DOS:8.3
format.
That's no good, because multiple fileNames will translate to the
same DOS filename.

Here's the command line that I've got logged as what I used:--

-> use: 
mkisofs -R /mnt/p11  | cdrecord -v fs=6m speed=2 dev=2,0 -

What am I doing wrong?

== TIA

[toc] | [next] | [standalone]


#887

FromTim Watts <tw+usenet@dionic.net>
Date2011-12-03 16:08 +0000
Message-ID<55upq8-376.ln1@squidward.local.dionic.net>
In reply to#886
no.top.post@gmail.com wrote:

> While looking at my log of how to backup a partition to DVD,
> I noticed that previous backups have got all file names in DOS:8.3
> format.
> That's no good, because multiple fileNames will translate to the
> same DOS filename.
> 
> Here's the command line that I've got logged as what I used:--
> 
> -> use:
> mkisofs -R /mnt/p11  | cdrecord -v fs=6m speed=2 dev=2,0 -
> 
> What am I doing wrong?
> 
> == TIA

Not sure - I just tried 

mkisofs -R /etc/ > /tmp/iso.iso

mount -oloop /tmp/iso.iso /mnt
ls -l /mnt

and the result looks good.

-- 
Tim Watts

[toc] | [prev] | [next] | [standalone]


#888

FromThe Natural Philosopher <tnp@invalid.invalid>
Date2011-12-03 17:57 +0000
Message-ID<jbdntr$nha$5@news.albasani.net>
In reply to#886
no.top.post@gmail.com wrote:
> While looking at my log of how to backup a partition to DVD,
> I noticed that previous backups have got all file names in DOS:8.3
> format.
> That's no good, because multiple fileNames will translate to the
> same DOS filename.
> 
> Here's the command line that I've got logged as what I used:--
> 
> -> use: 
> mkisofs -R /mnt/p11  | cdrecord -v fs=6m speed=2 dev=2,0 -
> 
> What am I doing wrong?
> 
> == TIA
> 
bigger filenames are part of a DC/DVD extended format.

Frankly I have found DVDs crap for backup

[toc] | [prev] | [next] | [standalone]


#891

FromRobert Riches <spamtrap42@jacob21819.net>
Date2011-12-04 04:37 +0000
Message-ID<slrnjdlu8p.o33.spamtrap42@one.localnet>
In reply to#888
["Followup-To:" header set to comp.os.linux.misc.]
On 2011-12-03, The Natural Philosopher <tnp@invalid.invalid> wrote:
> no.top.post@gmail.com wrote:
>> While looking at my log of how to backup a partition to DVD,
>> I noticed that previous backups have got all file names in DOS:8.3
>> format.
>> That's no good, because multiple fileNames will translate to the
>> same DOS filename.
>> 
>> Here's the command line that I've got logged as what I used:--
>> 
>> -> use: 
>> mkisofs -R /mnt/p11  | cdrecord -v fs=6m speed=2 dev=2,0 -
>> 
>> What am I doing wrong?
>> 
>> == TIA
>> 
> bigger filenames are part of a DC/DVD extended format.
>
> Frankly I have found DVDs crap for backup

What do you find bad about DVDs for backup?

For backups, I create a compressed tarball, split that up to DVD
size, and burn the DVDs.  For each DVD, I verify it on the drive
that burned it and then with a different drive.  Verification is
done by running 'diff' between the original tarball fragment and
the file from the mounted DVD.  Except for a drive going bad, it
is rare to see a coaster.

-- 
Robert Riches
spamtrap42@jacob21819.net
(Yes, that is one of my email addresses.)

[toc] | [prev] | [next] | [standalone]


#889

Frommjb@signal11.invalid (Mike)
Date2011-12-03 19:19 +0000
Message-ID<jbdsnn$p2g$1@posie.signal11.org.uk>
In reply to#886
In article <jbdd53$gf8$1@dont-email.me>,  <no.top.post@gmail.com> wrote:
>I noticed that previous backups have got all file names in DOS:8.3
>format.
>That's no good, because multiple fileNames will translate to the
>same DOS filename.

You need Rock Ridge Extensions, or Joliet Extensions, depending on 
whether you want to go Unixy or Windowsy. Or both?

>-> use: 
>mkisofs -R /mnt/p11  | cdrecord -v fs=6m speed=2 dev=2,0 -
>
>What am I doing wrong?

Not enough switches?

I use :-

mkisofs \
-appid "Backup stuff" \
-publisher "Me" -preparer "Also Me" -sysid "LINUX" \
-volid "Volume name here" -gui \

-input-charset "iso8859-1" -iso-level 2 -joliet -joliet-long \
-rational-rock -full-iso9660-filenames \

-path-list "/tmp/listoffiles" \
-o "/tmp/theiso.iso"

Those two isolated lines of switches in the middle are my attempt to get 
compatibility with everything in sight. Seems to work for me.
-- 
--------------------------------------+------------------------------------
Mike Brown: mjb[-at-]signal11.org.uk  |    http://www.signal11.org.uk

--- Posted via news://freenews.netfront.net/ - Complaints to news@netfront.net ---

[toc] | [prev] | [standalone]


Back to top | Article view | comp.os.linux.hardware


csiph-web