Search My Blog

Tuesday, October 4, 2011

Update: Fedora Linux - How to create and use a Live CD - FedoraProject

I am gathering information, to try doing this again. What I want is to make a Remix of my Fedora 14 System, as it is now. I use to do this with Revisor, back in Fedora 11 and previous releases. But, Revisor installs just fine, But, wont run on any of my Fedora Systems since Fedora 11. I've never found out how to fix it or why it crashes now. Here's the Command Line output from running "revisor" as root...

[don@RedBlackBioStarFedora14 ~]$ su
Password:
[root@RedBlackBioStarFedora14 don]# revisor
Cannot find anaconda-runtime in /usr/lib/anaconda-runtime
[root@RedBlackBioStarFedora14 don]#

I have every
"anaconda" App that is available in the Fedora 14 Repos installed. But I don't have an "anaconda-runtime" file in that Directory. I guess I should see if there is a way to make or copy one...

Here's how they tell you to do it in the Command Line ane with some GUI Apps too...

Don

How to create and use a Live CD

From FedoraProject

Jump to: navigation, search

This page explains how to make a custom-content Live CD or DVD on Fedora-based systems including derived distributions such as RHEL, CentOS and others.
If you simply want to burn a pre-made ISO to a disc, visit http://fedoraproject.org/en/get-fedora to download a LiveCD or LiveDVD, then see the install guide or burning how-to for further instructions.
See the project wiki for more details. Discussion of this project takes places at http://admin.fedoraproject.org/mailman/listinfo/livecd.

This project and its source files are licensed under the GPLv2 license. See the file COPYING for details.

Contents

[hide]

Creating a Live image

Read More...
http://fedoraproject.org/wiki/How_to_create_and_use_a_Live_CD

10.4. Automating the Installation with Kickstart

You can allow an installation to run unattended by using Kickstart. A Kickstart file specifies settings for an installation. Once the installation system boots, it can read a Kickstart file and carry out the installation process without any further input from a user.

Every Installation Produces a Kickstart File

The Fedora installation process automatically writes a Kickstart file that contains the settings for the installed system. This file is always saved as /root/anaconda-ks.cfg. You may use this file to repeat the installation with identical settings, or modify copies to specify settings for other systems.

Important — Kickstart installations and Firstboot

Firstboot does not run after a system is installed from a Kickstart file unless a desktop and the X Window System were included in the installation and graphical login was enabled. Either specify a user with the user option in the Kickstart file before installing additional systems from it (refer to Section 14.4, “Kickstart Options” for details) or log into the installed system with a virtual console as root and add users with the adduser command.
Fedora includes a graphical application to create and modify Kickstart files by selecting the options that you require. Use the package system-config-kickstart to install this utility. To load the Fedora Kickstart editor, choose Applications → System Tools → Kickstart.
Kickstart files list installation settings in plain text, with one option per line. This format lets you modify your Kickstart files with any text editor, and write scripts or applications that generate custom Kickstart files for your systems.
To automate the installation process with a Kickstart file, use the ks option to specify the name and location of the file:
linux ks=location/kickstart-file.cfg
You may use Kickstart files that are held on either removable storage, a hard drive, or a network server. Refer to Table 10.2, “Kickstart sources” for the supported Kickstart sources.

Read More...
http://docs.fedoraproject.org/en-US/Fedora/14/html-single/Installation_Guide/#sn-automating-installation

To create a live image, the livecd-creator tool is used. Super user privileges are needed. The tool is more or less self-documenting, use the --help option to see options.
The livecd-creator tool is part of the livecd-tools package. If it is not installed on your system, add it with:
su -c 'yum install livecd-tools spin-kickstarts' 
If you are interested in localized live cd files, install also l10n-kickstarts.

How the livecd-creator Works

In a nutshell, the livecd-creator program
  • Sets up a file for the ext3 file system that will contain all the data comprising the live CD
  • Loopback mounts that file into the file system so there is an installation root
  • Bind mounts certain kernel file systems (/dev, /dev/pts, /proc, /sys, /selinux) inside the installation root
  • Uses a configuration file to define the requested packages and default configuration options. The format of this file is the same as is used for installing a system via kickstart.
  • Installs, using yum, the requested packages into the installation using the given repositories in the kickstart file
  • Optionally runs scripts as specified by the live CD configuration file.
  • Relabels the entire installation root (for SELinux)
  • Creates a live CD specific initramfs that matches the installed kernel
  • Unmounts the kernel file systems mounted inside the installation root
  • Unmounts the installation root
  • Creates a squashfs file system containing only the default ext3/4 file (compression)
  • Configures the boot loader
  • Creates an iso9660 bootable CD/DVD

Live image Configuration Files

The configuration of the live image is defined by a file that uses the same format as installing a system via kickstart. They can include some basic system configuration items, the package manifest and a script to be run at the end of the build process.
For the Fedora project, the two most important live image configurations files are
  • fedora-live-minimization.ks : The base live image system (included in the 'livecd-tools' package)
  • fedora-live-desktop.ks : Complete desktop with applications and input/output support for all supported locales in Fedora (this one is part of the 'spin-kickstarts' package)
kickstart files for other spins (e.g. Fedora Electronics Lab) can be found in /usr/share/spin-kickstarts/ after installing the 'spin-kickstarts' package

Set SELinux to permissive mode

SELinux should be in permissive mode for livecd-creator to work. Run the following as root user first before attempting to create a live cd or dvd.
setenforce 0 

Making a 32-bit spin ISO on a 64-bit machine

If you have an x86_64 machine you're building on but you want a 32-bit happy iso image, add the following before your livecd-creator command:
setarch i686 livecd-creator [...] 

Example: Spinning the Fedora Desktop Live CD

Note that because of the way livecd-creator works, it is not possible to choose a different set of packages or a different filesystem during installation. Assuming that you use the fedora-live-desktop.ks configuration file, then the following command:
livecd-creator \ --config=/usr/share/doc/livecd-tools-<version>/livecd-fedora-desktop.ks \ --fslabel=Fedora-LiveCD --cache=/var/cache/live 
or
livecd-creator \ --config=/usr/share/spin-kickstarts/fedora-livecd-desktop.ks \ --fslabel=Fedora-LiveCD --cache=/var/cache/live 
will create a live CD called "Fedora-LiveCD".
The name given by --fs-label is used:
  • as a file system label on the ext3 and iso9660 file systems (As such, it's visible on the desktop as the CD name)
  • in the isolinux boot loader.
If you have the repositories available locally and don't want to wait for the download of packages, just substitute the URLs listed in the configuration file to point to your local repositories.
Read More...
http://fedoraproject.org/wiki/How_to_create_and_use_a_Live_CD#Set_SELinux_to_permissive_mode

I followed these instructions and made a Kickstart File from the a Yum Apps List that I made from my Fedora 14 System. And then added my Apps List to a Fusion 14 Kickstart file that I had saved. See, my Other Posts on making an installed Apps List with Yum ...

Let's see if it makes a Remix for me..

livecd-creator \
--config=/usr/share/spin-kickstarts/Dons-Fedora-14-and-fusion-14-RC4-to-08-11.ks \
--fslabel=Fedora-LiveCD --cache=/var/cache/live

It gave an error, saying that it could not read the "/home/don/fusion-14-base.ks' file. So I copied "fusion-14-base.ks" to my /home/don Dir... Now it is running just fine. It will take a while since I have a couple hundred Apps on my System. Even more with all of the Dependencies...

Well see... Nope: I got an Error...  Fedora 14 Building a Remix with my Kickstart file. Error Creating Live CD failed to find package. See at the end of my konsole output below...


[don@RedBlackBioStarFedora14 ~]$ su
Password:
[root@RedBlackBioStarFedora14 don]# setenforce 0
[root@RedBlackBioStarFedora14 don]# livecd-creator \
> --config=/usr/share/spin-kickstarts/Dons-Fedora-14-and-fusion-14-RC4-to-08-11.ks \
> --fslabel=Fedora-LiveCD --cache=/var/cache/live
Traceback (most recent call last):
  File "/usr/bin/livecd-creator", line 150, in <module>
    sys.exit(main())
  File "/usr/bin/livecd-creator", line 119, in main
    ks = imgcreate.read_kickstart(options.kscfg)
  File "/usr/lib/python2.7/site-packages/imgcreate/kickstart.py", line 60, in read_kickstart
    e.args[0]))
imgcreate.errors.KickstartError: Failed to read kickstart file '/usr/share/spin-kickstarts/Dons-Fedora-14-and-fusion-14-RC4-to-08-11.ks' : The following problem occurred on line 0 of the kickstart file:

Unable to open input kickstart file: Could not open/read file:///home/don/fusion-14-base.ks

[root@RedBlackBioStarFedora14 don]# livecd-creator \
> --config=/usr/share/spin-kickstarts/Dons-Fedora-14-and-fusion-14-RC4-to-08-11.ks \
> --fslabel=Fedora-LiveCD --cache=/var/cache/live
mke2fs 1.41.12 (17-May-2010)
Filesystem label=_Fedora-LiveCD
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
384272 inodes, 1536000 blocks
15360 blocks (1.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1572864000
47 block groups
32768 blocks per group, 32768 fragments per group
8176 inodes per group
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736

Writing inode tables: done                           
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 28 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.
tune2fs 1.41.12 (17-May-2010)
Setting maximal mount count to -1
Setting interval between checks to 0 seconds
Retrieving http://linuxdownload.adobe.com/linux/i386/repodata/repomd.xml ...OK
Retrieving http://linuxdownload.adobe.com/linux/i386/repodata/primary.xml.gz ...OK
Retrieving http://linux.dropbox.com/fedora/13/repodata/repomd.xml ...OK
Retrieving http://linux.dropbox.com/fedora/13/repodata/primary.xml.gz ...OK
Retrieving http://repos.fedorapeople.org/repos/spot/chromium/fedora-14/i386/repodata/repomd.xml ...OK
Retrieving http://repos.fedorapeople.org/repos/spot/chromium/fedora-14/i386/repodata/primary.sqlite.bz2 ...OK
Retrieving http://repos.fedorapeople.org/repos/spot/firefox4/fedora-14/i386/repodata/repomd.xml ...OK
Retrieving http://repos.fedorapeople.org/repos/spot/firefox4/fedora-14/i386/repodata/primary.sqlite.bz2 ...OK
Retrieving http://repos.fedorapeople.org/repos/luya/gimp/fedora-14/i386/repodata/repomd.xml ...OK
Retrieving http://repos.fedorapeople.org/repos/luya/gimp/fedora-14/i386/repodata/430e02aab2613822b17f09916655dba7b36a2d73f5bf7bd7a847e05a4bb04ac8-primary.sqlite.bz2 ...OK
Retrieving http://iso.linux.hr/fusion-linux/fusion-repo/fusion-14/i386/repodata/repomd.xml ...OK
Retrieving http://iso.linux.hr/fusion-linux/fusion-repo/fusion-14/i386/repodata/primary.xml.gz ...OK
Retrieving http://dl.google.com/linux/rpm/stable/i386/repodata/repomd.xml ...OK
Retrieving http://dl.google.com/linux/rpm/stable/i386/repodata/primary.xml.gz ...OK
Retrieving http://ftp-stud.fht-esslingen.de/pub/Mirrors/rpm.livna.org/repo/14/i386/repodata/repomd.xml ...OK
Retrieving http://ftp-stud.fht-esslingen.de/pub/Mirrors/rpm.livna.org/repo/14/i386/repodata/primary.sqlite.bz2 ...OK
Retrieving http://download.opensuse.org/repositories/home:/unamanic/Fedora_14/repodata/repomd.xml ...OK
Retrieving http://download.opensuse.org/repositories/home:/unamanic/Fedora_14/repodata/1179b74b43a39213021c2ea5327a85587013a1513273a2806e6bedac15a188ae-primary.xml.gz ...OK
Retrieving http://rpm.playonlinux.com/fedora/yum/base/repodata/repomd.xml ...OK
Retrieving http://rpm.playonlinux.com/fedora/yum/base/repodata/primary.xml.gz ...OK
Retrieving http://mirror.uoregon.edu/fedora/linux/releases/14/Everything/i386/os/repodata/repomd.xml ...OK
Retrieving http://mirror.uoregon.edu/fedora/linux/releases/14/Everything/i386/os/repodata/72f870f3e28571eda6bed2c260d245a970fcc74786c5445e847a40890e1c471f-primary.sqlite.bz2 ...OK
Retrieving http://download1.rpmfusion.org/free/fedora/releases/14/Everything/i386/os/repodata/repomd.xml ...OK
Retrieving http://download1.rpmfusion.org/free/fedora/releases/14/Everything/i386/os/repodata/3e2b72ec035943d287472384fc74b160495310c62d66b54218a78448546f4b3e-primary.sqlite.bz2 ...OK
Retrieving http://download1.rpmfusion.org/free/fedora/updates/14/i386/repodata/repomd.xml ...OK
Retrieving http://download1.rpmfusion.org/free/fedora/updates/14/i386/repodata/2fdbc279a1d80bd7d257a149407ded4af448da026e1f9dfe8d67d22d8c3d6d09-primary.sqlite.bz2 ...OK
Retrieving http://download1.rpmfusion.org/nonfree/fedora/releases/14/Everything/i386/os/repodata/repomd.xml ...OK
Retrieving http://download1.rpmfusion.org/nonfree/fedora/releases/14/Everything/i386/os/repodata/145d3b9415d1a921c982c138ad99d051c5adf4ecaf42d91b9c7c53630ec19a21-primary.sqlite.bz2 ...OK
Retrieving http://download1.rpmfusion.org/nonfree/fedora/updates/14/i386/repodata/repomd.xml ...OK
Retrieving http://download1.rpmfusion.org/nonfree/fedora/updates/14/i386/repodata/0cf18a194336a0a8c40c81a0bd493c5c13536af0ae9e729ae3407b9bcacb5878-primary.sqlite.bz2 ...OK
Retrieving http://download.skype.com/linux/repos/fedora/updates/i586/repodata/repomd.xml ...OK
Retrieving http://download.skype.com/linux/repos/fedora/updates/i586/repodata/primary.xml.gz ...OK
Retrieving http://linux.mirrors.es.net/fedora/updates/14/i386/repodata/repomd.xml ...OK
Retrieving http://linux.mirrors.es.net/fedora/updates/14/i386/repodata/eb1c9de44fb1d98bec0f19a88e91d69627cfe402af50e48daf1133e58177a1bd-primary.sqlite.bz2 ...OK
Error creating Live CD : Failed to find package 'libpng-debuginfo.i686' : No package(s) available to install
[root@RedBlackBioStarFedora14 don]#

I was thinking about adding "--skip-broken" to my Apps list in my kickstart file. But, then I wouldn't know which packages or dependencies I was missing to even try to find them to install later (even if that worked). I suppose it would be best to try the Local Repositories Route, if I want to keep these Apps. Like they say... "If you have the repositories available locally and don't want to wait for the download of packages, just substitute the URLs listed in the configuration file to point to your local repositories." I use to use some Apps the made Local Repositories Automatically as you Install Apps on your System. But, they can quickly fill up your HD. So, I stopped installing them quite a while back. I could try Finding what I have in Repo Cache (can't remember where that is right now). Would probably be the better option. But, that sounds like too much work, figuring out how to put that in my Kickstart file, manually. One mistake, will hold up the whole thing...

So, I used the Kickstart GUI App to make a new Kickstart file. Well, if defaults to a "ks.cfg" file. And the ".cfg" file extension does not work in this instance. So, I saved it again and make the file extension ".ks". The file looks pretty much just like the Fusion 14 ".ks" file, so I think it would work. But, then I remembered the Extra Repos that I use to get the Non Fedora Apps that I like. RPM Fusion and the others that are added automatically, like Google, when you manually install their Apps. So, then I opened up my Dons-Fedora-14-and-fusion-14-RC4-to-08-11.ks file in the Kickstart GUI App and Edited it to suite my needs. I saved it as, Dons-Fedora-14-and-fusion-14-RC4-to-08-11-Edited-Kickstart-GUI-All-Apps.ks. Then I opened the file up in a Text Editor. I noticed that only the Apps that I selected in the GUI Apps Section were listed. So, I opened up my Dons-Fedora-14-and-fusion-14-RC4-to-08-11.ks file and Copied and Pasted the Parts that I wanted from it. This had Fusion 14's settings and Apps List, as well as my Apps list form my present Fedora 14 installation. I'm betting that now the same missing App will show up. But, I want all of my Apps and I know that they worked when I installed them the first time. I know I'm flying by the Seat of my Pants here and I'm just about to get lost in all of these Kickstart text files tool. But, what the heck... lets see if it works...

livecd-creator \
--config=/usr/share/spin-kickstarts/
Dons-Fedora-14-and-fusion-14-RC4-to-08-11-Edited-Kickstart-GUI-All-Apps.ks \
--fslabel=Dons-Fedora-Fusion-14-Remix --cache=/var/cache/live

First Error...
[root@RedBlackBioStarFedora14 don]# livecd-creator \
> --config=/usr/share/spin-kickstarts/Dons-Fedora-14-and-fusion-14-RC4-to-08-11-Edited-Kickstart-GUI-All-Apps.ks \
> --fslabel=Fedora-LiveCD --cache=/var/cache/live
Traceback (most recent call last):
  File "/usr/bin/livecd-creator", line 150, in <module>
    sys.exit(main())
  File "/usr/bin/livecd-creator", line 119, in main
    ks = imgcreate.read_kickstart(options.kscfg)
  File "/usr/lib/python2.7/site-packages/imgcreate/kickstart.py", line 63, in read_kickstart
    "'%s' : %s" % (path, e))
imgcreate.errors.KickstartError: Failed to parse kickstart file '/usr/share/spin-kickstarts/Dons-Fedora-14-and-fusion-14-RC4-to-08-11-Edited-Kickstart-GUI-All-Apps.ks' : The following problem occurred on line 7 of the kickstart file:

no such option: --telnet

So, I removed
--telnet from the Kickstart file...

Next Error (Same as my first run)...
Error creating Live CD : Failed to find package 'libpng-debuginfo.i686' : No package(s) available to install. And there have been several more. So, I tried putting a minus (-) sign in front of them. Because that is what I thought was going on in the Fusion Linux Kickstart file (after reading through it). But, that made no difference. So, then I commented them out with the number sign (#). Since I noticed that this seemed to work, noticing the hidden comments in the Fusion Kickstart file. This is working. Now I just have to keep going until I get all of the missing App files to be skipped, for now. I don't want to loose all track of what they are. So, that I can run my Yum Apps List Install Script later
(which I already have several). I can do this after I do an installation of my Remix. But, this is taking a very long time to do. Each time I run the Remix Commands I find another missing App. And once I noticed a missing App right above one I had already Commented out with the numbers (#) sign. I'm wondering if the Repos are just not Responding all of the time. I'm giving up on this Kickstart file. And I'm going to try the one I made new in the Kickstart GUI. I has my Apps install Script added to it (in the GUI) so maybe it will work. No Fusion 14 stuff in this one though. Here's the Commands I will Run...

livecd-creator \
--config=/usr/share/spin-kickstarts/Dons-Fedora-14-Remix.ks
\
--fslabel=Dons-Fedora-Fusion-14-Remix --cache=/var/cache/live


First Error...
raise CreatorError("No repositories specified")
imgcreate.errors.CreatorError: No repositories specified

So, I added the Repos from my other Fedora and Fusion 14 Kickstart file...

Now another Error, a Missing Dependency this time... 


Error creating Live CD : Failed to build transaction : 2:gimp-2.7.2-1.fc15.i686 requires libpoppler.so.13
2:gimp-2.7.2-1.fc15.i686 requires libpoppler-glib.so.6

Here's my next attempt at running Fedora livecd-creator, on 10-05-11. I'm now using my, 'Dons-Fedora-14-RedBlackBioStar-anaconda-ks-10-05-11-cfg.ks" file made from my anaconda-ks.cfg file with the Kickstart GUI App. According to what I read here... http://docs.fedoraproject.org/en-US/Fedora/14/html-single/Installation_Guide/#sn-automating-installation. You can make a Duplicate of your Running Fedora System with this file and livecd-creator in the Command Line - Terminal...

"Every Installation Produces a Kickstart File"
"The Fedora installation process automatically writes a Kickstart file that contains the settings for the installed system. This file is always saved as /root/anaconda-ks.cfg. You may use this file to repeat the installation with identical settings, or modify copies to specify settings for other systems."

Here's the Commands I used for my next run of livecd-creator in the Terminal...

livecd-creator \
--config=/usr/share/spin-kickstarts/Dons-Fedora-14-RedBlackBioStar-anaconda-ks-10-05-11-cfg.ks \
--fslabel=Fedora-LiveCD --cache=/var/cache/live

Error creating Live CD : Unable to disable SELinux because the installed package set did not include the file /usr/sbin/lokkit

I had changed SELinux to Warn instead of Active, hoping that this would stop SELinux from Stopping things (Silently) that I want to do upon initial Run of the Live OS and the initial install too. But, evidently, that wont work. So, I changed it back to Active.

Here we go again...

Error creating Live CD : Failed to build transaction : 2:gimp-2.7.2-1.fc15.i686 requires libpoppler.so.13
2:gimp-2.7.2-1.fc15.i686 requires libpoppler-glib.so.6

I'm beginning to wonder if Fedora livecd-creator will run all they way through at all, with anything besides the basic Fedora Apps and settings that come with the Fedora Releases!:O??? If you can't run it with all of the Apps that are already installed on your Running Fedora System. Then there is no point in making your own Remix. We might as well just download the Fedora Releases. But, I know it can be done, somehow. Because Fusion 14 and all of the other Fedora Remixes and Spins are out there. Maybe I should ask Valent at Fusion 14 how he Remixes his Distro... If he uses livecd-creator or what...

I'm going to try running my system generated "ks.cfg' file as it is. Instead of my edited ".ks" file and see what happens. I think I tried this before last year. But, not sure... So, here we go again...

livecd-creator \
--config=/usr/share/spin-kickstarts/Dons-Fedora-14-RedBlackBioStar-anaconda-ks-10-05-11.cfg \
--fslabel=Fedora-LiveCD --cache=/var/cache/live

Well, it will run ok. But, it seems to be seen just like a regular Kickstart file and I there are no Packages or Repos Specified in it. So, it wont run either...

Error: raise CreatorError("No packages or groups specified")
imgcreate.errors.CreatorError: No packages or groups specified

If I could figure out how to add my Fedora 14 Apps List, as a shell script to the Fusion 14 Kickstart file. My shell script, which I have already made and used successfully. And have it run after the initial installation of the OS. Then maybe I would have a chance. But I only know how to do that with the Kickstart GUI App, right now. And the Kickstart GUI App erases all Customizations to a ".ks" or '.cfg" file when you open it up in the GUI. Stuck again:(


I may want to revisit, Fixing Revisor. I know it did work for me, Once Upon A Time...

Also, I just found this site, http://thincrust.net/

Thincrust looks interesting. It's a whole other way of creating Linux Distros and Virtuial Machines too. But it is talking about Fedora 10. So I don't know how current it is... I will look again later...

Don



"Thincrust is a set of tools and metadata which make it easier for anyone (ISVs, developers, OEMS, etc) to create and deploy appliances. These appliances can be virtual or traditional "bare metal" appliances. The thincrust tools extend and utilize existing fedora tools, which are focused around best practices for appliance development and delivery. With these tools anyone with basic scripting experience can build appliances.

There are many versions of appliances. Some are database driven web applications combined with an operating system, while others are small embedded operating systems (e.g. toasters). Therefore, Thincrust will look to provide tooling and metadata to address the common patterns seen in appliance development for various scenarios. In addition, it will look to collect best practices to aid developers in their work."

I tired it out and here's the links to my Post on trying out Thincrust...

Trying out Thincrust, Tools for Building Appliances in Fedora 14 

Go there...
http://donsdeals.blogspot.com/2011/10/trying-out-thincrust-tools-for-building.html

( Here's a Post on My first attempt at this...)

How to create and use a Live CD - FedoraProject

http://donsdeals.blogspot.com/2010/10/how-to-create-and-use-live-cd.html

Links... 
 
Fedora Linux - How to create and use a Live CD Fedora Project Remix Duplicate your Installation
Fedora Live Images
DonsDeals: How to create and use a Live CD - FedoraProject
DonsDeals: Update: Fedora Linux - How to create and use a Live CD - FedoraProject
FedoraLiveCD - FedoraProject
How to create and use Live USB - FedoraProject
Fedora Hosted Git Repositories - livecd/summary
linux - How to boot Fedora Live CD iso from a Hard Drive? - Super User
fedora 14 /.liveimg-configured - Google Search
livecd-tools
liveusb-creator - Trac
How to create and use Live USB - FedoraProject
How to create and use a Live CD - FedoraProject
Musicians' Guide
2.3. Using the JACK Audio Connection Kit
Deployment Guide
/fedora-live-desktop.ks - spin-kickstarts - Trac
Remix Fedora 14
fedora 14 /.liveimg-configured - Google Search
Fedora 14 post-installation setup | Randell's Blog
Booting Fedora 14 - Hak5 Forums
ISO Booting with Grub 2 - Page 9 - Ubuntu Forums
linux - How to boot Fedora Live CD iso from a Hard Drive? - Super User
Google Custom Search
DonsDeals: So... I would like to build my self a Custom Fedora Distro of my Own.
DonsDeals: How to create and use a Live CD - FedoraProject
How to create and use a Live CD - FedoraProject
Installation Guide
Installation Guide
How to create and use a Live CD - FedoraProject
fedora 14 make kickstart file live system - Google Search
Fedora Package Database -- Revisor
Fedora Package Database
http://thincrust.net/
http://thincrust.net/ace.html
http://thincrust.net/tooling.html
http://thincrust.net/ace-setup.html
http://thincrust.net/aos.html
Revisor Fedora Remixing App
App to remix Fedora - Google Search
Fedora Package Database -- Revisor
Fedora Package Database
fedora 13 revisor error fixed - Google Search
[SOLVED] Revisor -- Need More Information
Introduction - revisor - Trac
gui app to remix fedora - Google Search

No comments: