Should I be able to use anaconda-runtime to create DVD images (instead of CD images)? Specifically, should splittree.py be able to splits things into a total of 2 directory trees (rather than 8 for CD images)?
I have submitted this as a bug -- https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=148963
However, should I change that to an RFE for doing DVDs?
Gene
If you're looking for a quick way to accomplish this: cp splittree.py splittree-dvd.py
About line 79 you'll find this: self.target_size = 640.0 * 1024.0 * 1024
Change that to: self.target_size = 4.6 * 1024.0 * 1024.0 * 1024
I also substitute "-dvd" everywhere "-disc" appears so that CD directories and dvd directories can coexist. For me, making an option to the script would mean more modifications when official changes are made.
Andrew
Gene Czarcinski wrote:
Should I be able to use anaconda-runtime to create DVD images (instead of CD images)? Specifically, should splittree.py be able to splits things into a total of 2 directory trees (rather than 8 for CD images)?
I have submitted this as a bug -- https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=148963
However, should I change that to an RFE for doing DVDs?
Gene
Anaconda-devel-list mailing list Anaconda-devel-list@redhat.com https://www.redhat.com/mailman/listinfo/anaconda-devel-list
On Friday 18 February 2005 00:00, Andrew Mann wrote:
Today 00:00:52
If you're looking for a quick way to accomplish this: cp splittree.py splittree-dvd.py
About line 79 you'll find this: self.target_size = 640.0 * 1024.0 * 1024
Change that to: self.target_size = 4.6 * 1024.0 * 1024.0 * 1024
That's a little large, I think, for 4.3 DVD.
I suggest making it a parameter with the default behaviour being to use 640.0 * 1024.0 * 1024.
This would accommodate those who think they can get 700 Mb (or more) on a CD, those with DVD-RAM (I have some at 2.6 Gb or so) and dual-layer burners and media and any who want everything in an ISO no matter how big - not so silly IMV as it's automatically read-only.
Then offer it to JK as a patch.
I also substitute "-dvd" everywhere "-disc" appears so that CD directories and dvd directories can coexist. For me, making an option to the script would mean more modifications when official changes are made.
A
anaconda-devel@lists.fedoraproject.org