user1165418
user1165418

Reputation: 37

Create a package of OS image and Software

Suppose when we install ubuntu we get so many default application on it like firefox or media player etc.So can we see the source code of ubuntu and understand how these application are actually put into it so that they get installed along with the OS.I want to create a package of OS image and a set of softwares to be deployed on a VM

Upvotes: 0

Views: 164

Answers (1)

klobucar
klobucar

Reputation: 6335

in CentOS, RHEL, and Fedora you have something called anaconda, which installs out of a repo of rpm packages ( http://fedoraproject.org/wiki/Anaconda/BuildEnvironment )

With Ubuntu you have options like kickstart (https://help.ubuntu.com/11.04/installation-guide/i386/automatic-install.html) or the roll your own live cd distro (https://help.ubuntu.com/community/LiveCDCustomization)

Kickstart is somewhat similar to Anaconda as well. It does not take much to add custom packages, or change whats installed by default. you can do more advanced things with %post install scripts as well.

Upvotes: 1

Related Questions