[Centos] dvd iso's

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



--=-E3AcxsP6zIZ4DvynkgWQ
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

I am not sure what part of the conversation I am coming in at ....
I used this ftp://people.redhat.com/ckloiber/mkdvdiso.sh
to create my DVD ISO .. 



On Thu, 2004-11-04 at 20:15 -0500, William Warren wrote:

> yep..i am using 9660...I have tried two different dvd dis both 
> have failed..
> 
> John Newbigin wrote:
> 
> > William Warren wrote:
> > 
> >> ack...i am not even familiar with how to look at source code rofl..:)
> > 
> > anaconda is a special case because the binary rpm contains the source 
> > code (some of which I have included below).
> > 
> > Your .discinfo looks correct, comma separated list of cd numbers.  It 
> > may well be a different issue.  Are you still using iso9660? 
> > Unfortunately I don't have a DVD ROM or burner so I can't test :(
> > 
> > John.
> > 
> > /usr/lib/anaconda/image.py looks like the place:
> >                         if os.access("/mnt/source/.discinfo", os.R_OK):
> >                             f = open("/mnt/source/.discinfo")
> >                             newStamp = f.readline().strip()
> >                             try:
> >                                 descr = f.readline().strip()
> >                             except:
> >                                 descr = None
> >                             try:
> >                                 arch = f.readline().strip()
> >                             except:
> >                                 arch = None
> >                             try:
> >                                 discNum = getDiscNums(f.readline().strip())
> >                             except:
> >                                 discNum = [ 0 ]
> >                             f.close()
> >                             if (newStamp == timestamp and
> >                                 arch == _arch and
> >                                 needed in discNum):
> >                                 done = 1
> >                                 self.currentDisc = discNum
> > 
> > 
> > def getDiscNums(line):
> >     # get the disc numbers for this disc
> >     nums = line.split(",")
> >     discNums = []
> >     for num in nums:
> >         discNums.append(int(num))
> >     return discNums
> > 
> >>
> >> John Newbigin wrote:
> >>
> >>> The best place to look is the anaconda source code.  It is mostly 
> >>> python which is not too hard to figure out but I have been bitten 
> >>> once or twice (sorry, the pun was intended).
> >>>
> >>> I am grabbing the source now and I'll have a look.
> >>>
> >>> John.
> >>>
> >>> William Warren wrote:
> >>>
> >>>> I edited the .discinfo file but still the installer does not
> >>>> recognize the dvd as an instllation medium.  I have attached the
> >>>> .discinfo file.  If i made a mistake let me know..otherwsie it
> >>>> looks like the installation program itself may need a bit of
> >>>> adjusting..no idea.
> >>>>
> >>>>
> >>>> William
> >>>>
> >>>> William Warren wrote:
> >>>>
> >>>>> Well that didn't work.  I got a bootable dvd out of it but the 
> >>>>> centos installed did not detect the media as having the 
> >>>>> installation files.  It asked for a cd instead of recognizing the 
> >>>>> dvd.  Winiso cannot handle dvd's..:(  Anyone have a way to make the 
> >>>>> centos installer realize all its files are on the dvd instead of 
> >>>>> looking for three cd's?
> >>>>>
> >>>>>
> >>>>
> >>>>
> >>>> ------------------------------------------------------------------------ 
> >>>>
> >>>>
> >>>> 1095354229.83
> >>>> update3
> >>>> i386
> >>>> 1,2,3
> >>>> RedHat/base
> >>>> RedHat/RPMS
> >>>> RedHat/pixmaps
> >>>>
> >>>
> >>>
> >>
> > 
> > 
> 

--=-E3AcxsP6zIZ4DvynkgWQ
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: 7bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.3.2">
</HEAD>
<BODY>
I am not sure what part of the conversation I am coming in at ....<BR>
I used this <A HREF="ftp://people.redhat.com/ckloiber/mkdvdiso.sh";>ftp://people.redhat.com/ckloiber/mkdvdiso.sh</A><BR>
to create my DVD ISO .. <BR>
<BR>
<BR>
<BR>
On Thu, 2004-11-04 at 20:15 -0500, William Warren wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
<FONT COLOR="#000000">yep..i am using 9660...I have tried two different dvd dis both </FONT>
<FONT COLOR="#000000">have failed..</FONT>

<FONT COLOR="#000000">John Newbigin wrote:</FONT>

<FONT COLOR="#000000">&gt; William Warren wrote:</FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt;&gt; ack...i am not even familiar with how to look at source code rofl..:)</FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt; anaconda is a special case because the binary rpm contains the source </FONT>
<FONT COLOR="#000000">&gt; code (some of which I have included below).</FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt; Your .discinfo looks correct, comma separated list of cd numbers.  It </FONT>
<FONT COLOR="#000000">&gt; may well be a different issue.  Are you still using iso9660? </FONT>
<FONT COLOR="#000000">&gt; Unfortunately I don't have a DVD ROM or burner so I can't test :(</FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt; John.</FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt; /usr/lib/anaconda/image.py looks like the place:</FONT>
<FONT COLOR="#000000">&gt;                         if os.access(&quot;/mnt/source/.discinfo&quot;, os.R_OK):</FONT>
<FONT COLOR="#000000">&gt;                             f = open(&quot;/mnt/source/.discinfo&quot;)</FONT>
<FONT COLOR="#000000">&gt;                             newStamp = f.readline().strip()</FONT>
<FONT COLOR="#000000">&gt;                             try:</FONT>
<FONT COLOR="#000000">&gt;                                 descr = f.readline().strip()</FONT>
<FONT COLOR="#000000">&gt;                             except:</FONT>
<FONT COLOR="#000000">&gt;                                 descr = None</FONT>
<FONT COLOR="#000000">&gt;                             try:</FONT>
<FONT COLOR="#000000">&gt;                                 arch = f.readline().strip()</FONT>
<FONT COLOR="#000000">&gt;                             except:</FONT>
<FONT COLOR="#000000">&gt;                                 arch = None</FONT>
<FONT COLOR="#000000">&gt;                             try:</FONT>
<FONT COLOR="#000000">&gt;                                 discNum = getDiscNums(f.readline().strip())</FONT>
<FONT COLOR="#000000">&gt;                             except:</FONT>
<FONT COLOR="#000000">&gt;                                 discNum = [ 0 ]</FONT>
<FONT COLOR="#000000">&gt;                             f.close()</FONT>
<FONT COLOR="#000000">&gt;                             if (newStamp == timestamp and</FONT>
<FONT COLOR="#000000">&gt;                                 arch == _arch and</FONT>
<FONT COLOR="#000000">&gt;                                 needed in discNum):</FONT>
<FONT COLOR="#000000">&gt;                                 done = 1</FONT>
<FONT COLOR="#000000">&gt;                                 self.currentDisc = discNum</FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt; def getDiscNums(line):</FONT>
<FONT COLOR="#000000">&gt;     # get the disc numbers for this disc</FONT>
<FONT COLOR="#000000">&gt;     nums = line.split(&quot;,&quot;)</FONT>
<FONT COLOR="#000000">&gt;     discNums = []</FONT>
<FONT COLOR="#000000">&gt;     for num in nums:</FONT>
<FONT COLOR="#000000">&gt;         discNums.append(int(num))</FONT>
<FONT COLOR="#000000">&gt;     return discNums</FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt; John Newbigin wrote:</FONT>
<FONT COLOR="#000000">&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt; The best place to look is the anaconda source code.  It is mostly </FONT>
<FONT COLOR="#000000">&gt;&gt;&gt; python which is not too hard to figure out but I have been bitten </FONT>
<FONT COLOR="#000000">&gt;&gt;&gt; once or twice (sorry, the pun was intended).</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt; I am grabbing the source now and I'll have a look.</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt; John.</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt; William Warren wrote:</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; I edited the .discinfo file but still the installer does not</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; recognize the dvd as an instllation medium.  I have attached the</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; .discinfo file.  If i made a mistake let me know..otherwsie it</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; looks like the installation program itself may need a bit of</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; adjusting..no idea.</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; William</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; William Warren wrote:</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;&gt; Well that didn't work.  I got a bootable dvd out of it but the </FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;&gt; centos installed did not detect the media as having the </FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;&gt; installation files.  It asked for a cd instead of recognizing the </FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;&gt; dvd.  Winiso cannot handle dvd's..:(  Anyone have a way to make the </FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;&gt; centos installer realize all its files are on the dvd instead of </FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;&gt; looking for three cd's?</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; ------------------------------------------------------------------------ </FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; 1095354229.83</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; update3</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; i386</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; 1,2,3</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; RedHat/base</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; RedHat/RPMS</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt; RedHat/pixmaps</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt;&gt;</FONT>
<FONT COLOR="#000000">&gt; </FONT>
<FONT COLOR="#000000">&gt; </FONT>

</PRE>
</BLOCKQUOTE>
</BODY>
</HTML>

--=-E3AcxsP6zIZ4DvynkgWQ--



[Index of Archives]     [CentOS]     [CentOS Announce]     [CentOS Development]     [CentOS ARM Devel]     [CentOS Docs]     [CentOS Virtualization]     [Carrier Grade Linux]     [Linux Media]     [Asterisk]     [DCCP]     [Netdev]     [Xorg]     [Linux USB]
  Powered by Linux