On Thu, Oct 02, 2003 at 10:12:39AM +0530, [EMAIL PROTECTED] wrote: >Hello friends, > I have been using mkisofs to create iso files to write on to a CD. I > use the command as so: >mkisofs -J -R -iso-level 3 -o <path>/test.iso <path of cdrom> > >Now my problem is I have not yet found out a way to write a volume label >for the ISO file. This is very important in case of copying game CDs >because if the cd volume label is wrong, (in my experiance) the game >won't play using the cd.(Most of the games require the CD to play even >after installing the game in the computer). > >Is there any option by which I could also set the CD volume label while >writing the iso file using mkisofs?
Just use dd to dump the disk image and than use cdrecord to burn that image... No need of using mkisofs dd if=/dev/cdrom of=games.iso This will give you exact copy of the CD... If you want to put Volume label while creating a iso image than mkisofs has got a switch -V man mkisofs Peace -- Rajesh : ####[ GNU/Linux One Stanza Tip (LOST) ]####################### Sub : Finding the version of sendmail on localhost LOST #405 Type in: echo \$Z | /usr/sbin/sendmail -bt d0 And you get a response like: ADDRESS TEST MODE (ruleset 3 NOT automatically invoked) Enter <ruleset> <address> > 8.10.2 ####[siddhant (at) rediffmail.com]############################ : ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
