Bob Hartung asked:
> Question about xcdroast use:
>   If I master a CD by linking to a series of directories I cannot figure
> out how to make xcdroast keep the directory/subdirectory structure on
> the cd.  Instead it throws all the rpm's & files into one large
> directory that is root on the cdrom.
> 
>   I cannot find any documentation on what to choose.

Well, I can't answer that, so hopefully you won't be too annoyed. But I
know how to do that directly with mkisofs. Create the "master" like this
(all one line):

mkisofs -R -l -J -o /bigdisk/master.img /bob/=/home/bhartung/
/music/=/usr/nap/music/

and burn a CD:

cdrecord -v speed=8 dev=0,0,0 /bigdisk/master.img

The CD made from this image will have top level directories "bob" and
"music", containing their respective directory trees. Or usually you can
get by writing the CD directly, without making an image file (again all
one line):

mkisofs -R -l -J /bob/=/home/bhartung/ /music/=/usr/nap/music/ |
cdrecord -v speed=8 dev=0,0,0 -

Duane



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to