View Full Version : More granular Customization LiveCD
rmdelano
17th March 2010, 09:21 PM
I see on the wiki were you can pick and choose packages when making a Live CD. I need a little more granular configuration of IPTables email client/server, etc.
Is there any way to do this with just the configuration file?
Is there any way to take a regular installation on a HD and turn that into a Live CD?
Thank you for any help.
Robert
rockdoctor
18th March 2010, 12:58 AM
I see on the wiki were you can pick and choose packages when making a Live CD. I need a little more granular configuration of IPTables email client/server, etc.
Is there any way to do this with just the configuration file?
I think revisor with a custom kickstart file may be what you're looking for. I found this somewhere on the web:
#!/bin/bash
# Kickstart from presently installed
# Modified from http://forums.fedoraforum.org/showthread.php?t=236679
# Posted 2009-12-16, 11:48 PM CST by macemoneta
ks=$(zenity --entry --text="Name of kickstart file: ")
echo 'part / --size 8000' > $ks
echo '%packages' >> $ks
/usr/bin/yum -C --color=never list installed | \
/usr/bin/awk '{print $1}' | \
/bin/grep -v -E "^[0-9]*[.:]" | \
/bin/grep -v "^\@" | \
/bin/sed -e 's/\.noarch$//;s/\.x86_64$//;s/\.i[3456]86$//' | \
/bin/sort -u >> $ks
echo '%end' >> $ks
Is there any way to take a regular installation on a HD and turn that into a Live CD?That's what I'm aiming for with this request:
http://forums.fedoraforum.org/showthread.php?t=242072
rmdelano
18th March 2010, 03:29 PM
Thanks for the response, I look more into kickstart, may be that will help me. I will follow your thread as will because that would be sweet to be able to do.
Thanks,
R
vBulletin® v3.8.7, Copyright ©2000-2013, vBulletin Solutions, Inc.