On Tuesday 20 February 2001 07:38, Richard Cobbe wrote:
> Lo, on Monday, February 19, Raffaele Sandrini did write:
> > Hi all
> >
> > I want to make backups to CD-RW. So i have to do it with the
> > mkisofs prog to create the image.  Is it possible that i culd
> > make an exact copy of my files, i mean, that no name is altered
> > after?  I tried it but i never got the output i want.  I want to
> > backup the /root, /home and the /etc directory into the /root
> > /home and /etc dirs on the CD.  I tried this command:
> >
> > mkisofs -R -o /tmp/backup.iso /home=/home/ /root=/root/
> > /etc=/etc/ but i had errors about dubble files or it merged the
> > files wrong
>
> Far as I know, this should have worked.

I use option -graft-points [Allow to use graft points for filenames], 
so I would type:

mkisofs -graft-points -R -o /tmp/backup.iso /home/=/home/ \
/root/=/root/

The additional slash after "home" and "root" is just to be sure. I've 
had problems with the missing second slash. Actually I think it's 
better "home/=" than "/home=". Don't flame me if I'm wrong.

Reply via email to