Search My Blog

Wednesday, October 27, 2010

How to create and use a Live CD - FedoraProject

Well, after 29 Failed attempts to Remix my Fedora 13 with a Kickstart File and Revisor.... I don't know exactly how many... 29 just sounded good to me. It's been allot!:O. I'm now going backwards in time and looking at trying it in the Command Line. I stopped using the Command line after switching form Windows 3.1 to Windows XP... No, I'm not afraid of it. I hate all that typing or even pasting of commands. When all you should have to do on a Modern Computer is Read and Click;) But, I will work in the Terminal, when I have to... Here's the info on I found...



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]
1 Creating a Live image
1.1 How the livecd-creator Works
1.2 Live image Configuration Files
1.3 Set SELinux to permissive mode
1.4 Making a 32-bit spin ISO on a 64-bit machine
1.5 Example: Spinning the Fedora Desktop Live CD
1.6 Example: A Barebones Live CD
1.7 Testing your Live CD using KVM or qemu
2 Live image Installs
3 Live Image Media Verification
4 Using Live Images from USB Media
5 Other Resources



Creating a Live image

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



livecd-fedora-minimal.ks

The base live image system (included in the 'livecd-tools' package)


livecd-fedora-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 livecd-fedora-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.





You can use setarch command to create a x86 live cd/dvd on a x86_64 system. Ex: setarch i386 livecd-creator <..> .





Example: A Barebones Live CD

The command livecd-creator \ --config=/usr/share/doc/livecd-tools-<version>/livecd-fedora-minimal.ks --cache=/var/cache/live


will create a live CD that will boot to a login prompt.





Barebones Live CD does not support login capability.

Since no configuration is done, the user will not be able to login to the system as the root password is not set/cleared.





Testing your Live CD using KVM or qemu

As root: qemu-kvm -m 512 -cdrom filename.iso

If you do not have KVM support, you can use qemu instead

qemu -m 512 --cdrom filename.iso>

Replace filename.iso with the name of your created Live CD image. NOTE: be sure to "yum install kvm qemu" as root for releases before Fedora 11. Fedora 11 has merged kvm and qemu into a single package. Just installing qemu package is enough.


Live image Installs

As of Fedora 7, anaconda has support for doing an installation from a live image. To use this, double click on the Install to Hard Drive item on the desktop or run /usr/bin/liveinst


if you don't have such an icon.


Live Image Media Verification

The live image can incorporate functionality to verify itself. To do so, you need to have isomd5sum installed both on the system used for creating the image and installed into the image. This is so that the implantisomd5 and checkisomd5 utilities can be used. These utilities take advantage of embedding an md5sum into the application area of the iso9660 image. This then gets verified before mounting the real root filesystem.


Using Live Images from USB Media

USB sticks are becoming increasingly prevalent and are a nice way to use live images. You can take a live CD or DVD iso image and transform it so that it can be used on a USB stick. To do so, use the livecd-iso-to-disk script: /usr/bin/livecd-iso-to-disk /path/to/live.iso /dev/sdb1


Replace /dev/sdb1 with the (unmounted) partition where you wish to put the live image. This is not a destructive process; any data you currently have on your USB stick will be preserved.

Additional information available at How to create and use Live USB.


Other Resources
A Fedora Classroom class covering creating Fedora remixes.
If you are distributing your spin you need to be concerned about trademark usage and GPL responsibilities.




Go there...

http://fedoraproject.org/wiki/How_to_create_and_use_a_Live_CD#How_the_livecd-creator_Works




Here's my Terminal Output from running the install commands for livecd-tools spin-kickstarts and l10n-kickstarts...




[don@fedora13gt5408 ~]$ su

Password:

[root@fedora13gt5408 don]# -c 'yum install livecd-tools spin-kickstarts'

bash: -c: command not found

[root@fedora13gt5408 don]# yum install livecd-tools spin-kickstarts

Loaded plugins: fastestmirror, presto, refresh-packagekit

Loading mirror speeds from cached hostfile

* fedora: mirrors.servercentral.net

* rpmfusion-free: mirror.hiwaay.net

* rpmfusion-free-updates: mirror.hiwaay.net

* rpmfusion-nonfree: mirror.hiwaay.net

* rpmfusion-nonfree-updates: mirror.hiwaay.net

* updates: mirrors.servercentral.net

Setting up Install Process

Package livecd-tools-033-3.fc13.i686 already installed and latest version

Package spin-kickstarts-0.13.5-1.fc13.noarch already installed and latest version

Nothing to do

[root@fedora13gt5408 don]# yum install l10n-kickstarts

Loaded plugins: fastestmirror, presto, refresh-packagekit

Loading mirror speeds from cached hostfile

* fedora: mirrors.servercentral.net

* rpmfusion-free: mirror.hiwaay.net

* rpmfusion-free-updates: mirror.hiwaay.net

* rpmfusion-nonfree: mirror.hiwaay.net

* rpmfusion-nonfree-updates: mirror.hiwaay.net

* updates: mirrors.servercentral.net

Setting up Install Process

Resolving Dependencies

--> Running transaction check

---> Package l10n-kickstarts.noarch 0:0.13.5-1.fc13 set to be installed

--> Finished Dependency Resolution




Dependencies Resolved




================================================================================

Package Arch Version Repository Size

================================================================================

Installing:

l10n-kickstarts noarch 0.13.5-1.fc13 updates 21 k




Transaction Summary

================================================================================

Install 1 Package(s)




Total download size: 21 k

Installed size: 42 k

Is this ok [y/N]: y

Downloading Packages:

Setting up and reading Presto delta metadata

Processing delta metadata

Package(s) data still to download: 21 k

l10n-kickstarts-0.13.5-1.fc13.noarch.rpm | 21 kB 00:00

Running rpm_check_debug

Running Transaction Test

Transaction Test Succeeded

Running Transaction

Installing : l10n-kickstarts-0.13.5-1.fc13.noarch 1/1




Installed:

l10n-kickstarts.noarch 0:0.13.5-1.fc13




Complete!

[root@fedora13gt5408 don]#




I'll Post more after I try making a Remix again...




Ok, I figured out that for some reason my Kickstart File which I made with Kickstart, does not have any Repos listed in it. Also, the default file extension in Kickstart (cfg) is not what livecd-creator looks for, it looks for (.ks) files. So, I renamed mine to (.ks). I found some Repos listed for Fedora 10 in the /usr/share/spin-kickstarts/fedora-aos.ks file and changed the f10's to f13, just to see if it would work. For the most part it did. But I still got an error that stopped the process. "Error creating Live CD : Unable to disable SELinux because the installed package set did not include the file /usr/sbin/lokkit" That's enough for me Tonight!:O




Here's my Terminal Output...




[root@fedora13gt5408 /]# livecd-creator \

>

Kickstart file must be provided

[root@fedora13gt5408 /]# livecd-creator \

> --config=/usr/share/spin-kickstarts/dons-fedora-13-upgrade-ks-10-23-10-cfg.ks \

> --fslabel=Fedora-LiveCD --cache=/var/cache/live

/usr/lib/python2.6/site-packages/imgcreate/errors.py:40: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6

return str(self.message)

Traceback (most recent call last):

File "/usr/bin/livecd-creator", line 144, in <module>

sys.exit(main())

File "/usr/bin/livecd-creator", line 117, in main

creator = imgcreate.LiveImageCreator(ks, name, fs_label)

File "/usr/lib/python2.6/site-packages/imgcreate/live.py", line 47, in __init__

LoopImageCreator.__init__(self, *args)

File "/usr/lib/python2.6/site-packages/imgcreate/creator.py", line 807, in __init__

ImageCreator.__init__(self, ks, name)

File "/usr/lib/python2.6/site-packages/imgcreate/creator.py", line 77, in __init__

self.__sanity_check()

File "/usr/lib/python2.6/site-packages/imgcreate/creator.py", line 401, in __sanity_check

raise CreatorError("No repositories specified")

imgcreate.errors.CreatorError: No repositories specified

[root@fedora13gt5408 /]# livecd-creator \

> --config=/usr/share/spin-kickstarts/dons-fedora-13-upgrade-ks-10-23-10-cfg.ks \

> --fslabel=Fedora-LiveCD --cache=/var/cache/live

mke2fs 1.41.10 (10-Feb-2009)

Filesystem label=_Fedora-LiveCD

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

Stride=0 blocks, Stripe width=0 blocks

262144 inodes, 1048576 blocks

10485 blocks (1.00%) reserved for the super user

First data block=0

Maximum filesystem blocks=1073741824

32 block groups

32768 blocks per group, 32768 fragments per group

8192 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.10 (10-Feb-2009)

Setting maximal mount count to -1

Setting interval between checks to 0 seconds

Retrieving http://mirror.pnl.gov/fedora/linux/development/rawhide/i386/os/repodata/repomd.xml ...OK

Retrieving http://mirror.pnl.gov/fedora/linux/development/rawhide/i386/os/repodata/530df6a088f34000027044f1cb2c36ec6562cb5edd4f0faa687831b3fb4b72a0-primary.sqlite.bz2 ...OK

Retrieving http://nas1.itc.virginia.edu/fedora/updates/13/i386/repodata/repomd.xml ...OK

Retrieving http://nas1.itc.virginia.edu/fedora/updates/13/i386/repodata/6335695cc790a12f056b2f8b8b81cea376a7f410fd06f664a7bd3e2f7da672bc-primary.sqlite.bz2 ...OK

Package openoffice.org-ogltrans is obsoleted by libreoffice-ogltrans, trying to install libreoffice-ogltrans-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-wiki-publisher is obsoleted by libreoffice-wiki-publisher, trying to install libreoffice-wiki-publisher-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-base is obsoleted by libreoffice-base, trying to install libreoffice-base-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-emailmerge is obsoleted by libreoffice-emailmerge, trying to install libreoffice-emailmerge-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-report-builder is obsoleted by libreoffice-report-builder, trying to install libreoffice-report-builder-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-javafilter is obsoleted by libreoffice-javafilter, trying to install libreoffice-javafilter-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-presentation-minimizer is obsoleted by libreoffice-presentation-minimizer, trying to install libreoffice-presentation-minimizer-3.2.99.1-2.fc15.i686 instead

Retrieving http://mirror.pnl.gov/fedora/linux/development/rawhide/i386/os/repodata/902c5aec88583a99f7ef08c53d78eb47d611e286cd2dd6c6adf09a32d9719f7b-comps-rawhide.xml.gz ...OK

Retrieving http://nas1.itc.virginia.edu/fedora/updates/13/i386/repodata/6e0ed21945b78a43ac3fac3596c2e6c604204a7f463fb05987ec76f48ec9f3f2-comps-f13.xml.gz ...OK

Package pam_passwdqc is obsoleted by passwdqc, trying to install passwdqc-1.2.2-1.fc15.i686 instead

Package perl-Verilog is obsoleted by perl-Verilog-Perl, trying to install perl-Verilog-Perl-3.303-1.fc15.i686 instead

Package m17n-contrib-bengali is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-punjabi is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-assamese is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-oriya is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-kannada is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-telugu is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-hindi is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-maithili is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-db-sinhala is obsoleted by m17n-db, trying to install m17n-db-1.6.2-1.fc15.noarch instead

Package m17n-contrib-marathi is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-urdu is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-tamil is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-contrib-malayalam is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package m17n-db-thai is obsoleted by m17n-db, trying to install m17n-db-1.6.2-1.fc15.noarch instead

Package m17n-contrib-gujarati is obsoleted by m17n-contrib, trying to install m17n-contrib-1.1.12-1.fc15.noarch instead

Package knetworkmanager is obsoleted by kde-plasma-networkmanagement, trying to install 1:kde-plasma-networkmanagement-0.9-0.28.20101011.fc15.i686 instead

Package openoffice.org-impress is obsoleted by libreoffice-impress, trying to install libreoffice-impress-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-writer is obsoleted by libreoffice-writer, trying to install libreoffice-writer-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-math is obsoleted by libreoffice-math, trying to install libreoffice-math-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-calc is obsoleted by libreoffice-calc, trying to install libreoffice-calc-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-graphicfilter is obsoleted by libreoffice-graphicfilter, trying to install libreoffice-graphicfilter-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-draw is obsoleted by libreoffice-draw, trying to install libreoffice-draw-3.2.99.1-2.fc15.i686 instead

Package openoffice.org-xsltfilter is obsoleted by libreoffice-xsltfilter, trying to install libreoffice-xsltfilter-3.2.99.1-2.fc15.i686 instead

No such package ibus-pinyin-open-phrase to remove

No such package ueagle-atm4-firmware to remove

No such package ngspice-doc to remove

/usr/lib/python2.6/site-packages/imgcreate/errors.py:45: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6

return unicode(self.message)

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

[root@fedora13gt5408 /]#




Here's my Kickstart file...




#platform=x86, AMD64, or Intel EM64T

#version=DEVEL

# Firewall configuration

firewall --disabled

# Upgrade existing installation

upgrade

# Use CDROM installation media

cdrom

# Root password

rootpw --iscrypted $1$qEFVipGP$dsDZUBBXC.pF7FNqXMl4G1

# Network information

network --bootproto=dhcp --device=eth0 --onboot=on

network --bootproto=dhcp --device=eth1 --onboot=on

network --bootproto=static --device=eth2 --gateway=192.168.2.1 --ip=192.168.2.10 --netmask=255.255.255.0 --onboot=on

network --bootproto=static --device=eth3 --gateway=192.168.0.1 --ip=192.168.0.10 --nameserver=68.113.206.10 --netmask=255.255.255.0 --onboot=on

# System authorization information

auth --useshadow --passalgo=md5

# Use graphical install

graphical

firstboot --disable

# System keyboard

keyboard us

# System language

lang en_US

# SELinux configuration

selinux --permissive

# Installation logging level

logging --level=info




# System timezone

timezone America/Chicago

# System bootloader configuration

bootloader --location=mbr

# Partition clearing information

clearpart --none




# Repositories

#

# To compose against the current release tree, use the following "repo" (enabled by default)

#repo --name=released --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-10&arch=$basearch

# To include updates, use the following "repo" (enabled by default)

repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f13&arch=$basearch




# To compose against rawhide, use the following "repo" (disabled by default)

repo --name=rawhide --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=rawhide&arch=$basearch




# To compose against local trees, (edit and) use:

#repo --name=f13 --baseurl=http://localrepo/fedora/releases/10/Everything/$basearch/os/

#repo --name=f13-updates --baseurl=http://localrepo/fedora/updates/10/$basearch/




%packages

@admin-tools

@authoring-and-publishing

@base

@base-x

@books

@clustering

@development-tools

@dial-up

@directory-server

@eclipse

@editors

@education

@electronic-lab

@engineering-and-scientific

@fedora-packager

@fonts

@ftp-server

@games

@gnome-desktop

@graphical-internet

@graphics

@hardware-support

@input-methods

@java

@kde-desktop

@legacy-fonts

@legacy-network-server

@legacy-software-support

@lxde-desktop

@mail-server

@mingw32

@mysql

@network-server

@office

@printing

@server-cfg

@smb-server

@sound-and-video

@sugar-desktop

@system-tools

@text-internet

@virtualization

@web-development

@web-server

@window-managers

@xfce-desktop

AcetoneISO2

Miro

PackageKit-command-not-found

abiword

alsamixergui

amarok

amsn

ardour

audacious

audacity

aumix

banshee

basket

beagle-evolution

beagle-gnome

bibletime

blender

bluefish

bluez-alsa

bzr

calibre

camE

cdlabelgen

cinepaint

contacts

cowbell

digikam

dvdisaster

dvgrab

easytag

eclipse-dltk-tcl

eclipse-epic

eclipse-texlipse

eclipse-veditor

ekiga

emacs

f-spot

festvox-clb-arctic-hts

filezilla

gconf-editor

gcstar

gdm

geany

gedit-plugins

gnome-applet-netspeed

gnome-applet-sensors

gnome-commander

gnome-device-manager

gnome-phone-manager

gnome-scan

gnome-theme-curvylooks

gnomebaker

gnomeradio

gnucash

gnumeric

gnumeric-plugins-extras

gobby

gok

gonvert

gourmet

gpsim

gputils

gramps

grip

grisbi

grsync

gtk-gnutella

gtk-v4l

gtkpod

gtkterm

htmldoc

inkscape

isomaster

jokosher

k3b

k3d

kaffeine

kdeedu

kdegames

kdegraphics

kdemultimedia

kdepim

kid3

kipi-plugins

koji

konversation

kover

kpackagekit

krecipes

kreetingkard

kreetingkard_templates

leafpad

lxpanel

lyx

mercurial

mikmod

milkytracker

minicom

mock

multimedia-menus

nautilus-actions

nautilus-image-converter

nautilus-open-terminal

nautilus-search-tool

nautilus-sound-converter

obconf

openbox

openoffice.org-base

openoffice.org-emailmerge

openoffice.org-extendedPDF

openoffice.org-javafilter

openoffice.org-ogltrans

openoffice.org-ooolatex

openoffice.org-presentation-minimizer

openoffice.org-report-builder

openoffice.org-voikko

openoffice.org-wiki-publisher

openswan

pacemaker

paprefs

pcmanfm

php-mysql

picard

pikdev

pitivi

plague-client

pocketsphinx

pulseaudio-module-zeroconf

pyvnc2swf

qcad

qtcurve-gtk2

qtoctave

quodlibet

rakarrack

rawstudio

rpmdevtools

samba

sane-frontends

scribus

seamonkey

soundconverter

subtitlecomposer

sugar-distance

sugar-finance

sugar-help

sugar-infoslicer

sugar-jukebox

sugar-moon

sunbird

sweep

system-config-network

tagtool

taskjuggler

tetex-IEEEtran

tftp

thunar-shares-plugin

thunar-vcs-plugin

thunderbird

tkcvs

totem-lirc

tvtime

twinkle

ufraw

v4l2ucp

vdr

vdr-epgsearch

vdr-femon

vdr-osdteletext

vdr-remote

vdr-skins

vdr-skinsoppalusikka

vdr-streamdev-client

vdr-streamdev-server

vdr-text2skin

vdr-ttxtsubs

vdr-tvonscreen

vdr-wapd

vdradmin-am

vorbis-tools

vym

wine

xfce4-dict

xfce4-genmon-plugin

xfce4-mount-plugin

xfce4-xfapplet-plugin

xorg-x11-fonts-ISO8859-1-100dpi

xorg-x11-fonts-ISO8859-9-100dpi

xournal

xscreensaver-base

-evolution

-evolution-help

-ibus-pinyin-open-phrase

-ngspice-doc

-perl-Verilog

-ueagle-atm4-firmware




%end

Here's an Update to this Post:

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

http://donsdeals.blogspot.com/2011/10/update-fedora-linux-how-to-create-and.html

Don

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: