what is the entrance point of anaconda? #3549
-
Hello community! I am newbie and trying to figure out how does centos kickstart work. I am able to boot a virtual machine using Is anaconda a auto start service which got executed when iso boots? If so, what is the program that gets executed? Sorry if this has already be answered... Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hi Norman! In most cases, we have an environment that we call As to kickstart... During system start in There are other modes of running anaconda, but they mostly forbid or restrict use of kickstart, so they are probably not as relevant to your question. (Feel free to ask for more details.) |
Beta Was this translation helpful? Give feedback.
Hi Norman! In most cases, we have an environment that we call
boot.iso
. That is a self-contained system which has one purpose, to start anaconda. We have somedracut
hooks to do stuff as the system is starting, so technically there is some "anaconda" executed even "before the system". Later,systemd
startsanaconda.service
, which has some dependencies (see oursystemd
files) and runsanaconda.py
(the toplevel one) within atmux
session. Anaconda then decides if GUI is needed and startsXorg
(or not). From there, you are "in the installer" as you know it as an user.As to kickstart... During system start in
dracut
(see dir dracut in repo),%pre
scripts run, so that might be interpreting to…