Changes

From Amahi Wiki
Jump to: navigation, search
For this example, we will be doing the Fedora Base OS for 32-bit.
* Make directory to hold all Fedora i386 base os:
{{Code| mkdir -p /var/hda/files/yum/f12/i386/os}}
* Build the OS tree
<blockquote>a. From the Fedora DVD:
{{Code| cp -a /mount/..../* /var/hda/files/yum/f12/i386/os}}
b. From the DVD iso:
{{Code|<pre>mkdir -p /mnt/iso
mount -o loop .../Fedora-12-i386-DVD.iso /mnt/iso
cp -a /mnt/iso/* /var/hda/files/yum/f12/i386/os
umount /mnt/iso}}</pre>
c. From the CD isos (Note that the CD #1 can be used for a network install, see below):
{{Code|<pre>mkdir -p /mnt/iso
mount -o loop .../Fedora-12-i386-disc1.iso /mnt/iso
cp -a /mnt/iso/* /var/hda/files/yum/f12/i386/os
mount -o loop .../Fedora-12-i386-disc2.iso /mnt/iso
cp -an /mnt/iso/* /var/hda/files/yum/f12/i386/os
umount /mnt/iso}}</pre>
... (continue with the other CD isos)</blockquote>
<br>
12,424

edits