From Fedora Project Wiki
(Fix bullet list layout. Seems it was damaged somewhere along the line.)
(review doc)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<!-- page was renamed from AnacondaHowItWorks
<!-- page was renamed from AnacondaHowItWorks
-->
-->
= II. How Anaconda Works =
= How Anaconda Works =


1 [[Anaconda/Boot| Boot process]]  
[[Anaconda/Boot| Boot process]]  
== II. 1. Boot Process ==
== Boot Process ==


A different boot processes is needed when booting from a CD-ROM because linux does not really know how to do it. When booting from a CD-ROM an initrd (initial ramdisk) is used as the root filesystem. This initrd is loaded by the *boot loader*, not the kernel, making it possible to boot from any device the bootloader can access. ISOLINUX is the boot loader commonly used for booting from a CD-ROM.
A different boot process is needed when booting from a CD-ROM because linux does not really know how to do it. When booting from a CD-ROM an initrd (initial ramdisk) is used as the root filesystem. This initrd is loaded by the *bootloader*, not the kernel, making it possible to boot from any device the bootloader can access. ISOLINUX is the boot loader commonly used for booting from a CD-ROM.


=== Linux boot process from hard drive: ===
=== Linux boot process from hard drive: ===


1. PC initializion phase - BIOS, POST.
# PC initialization phase - BIOS, POST.
 
# PC starts boot loader - usually grub or lilo.
2. PC starts boot loader - usually grub or lilo.
# The bootloader locates kernel image on the hard drive.
 
# The kernel decompresses and loads itself. Once finished it tries to mount the root filesystem.
3. The bootloader locates kernel image on the hard drive.
# When the root filesystem is mounted, /sbin/init is executed and continues booting the system using inittab and /etc/rc*.d scripts
 
4. The kernel decompresses and loads itself. Once finished it tries to mount the root filesystem.
 
5. When the root filesystem is mounted, /sbin/init is executed and continues booting the system using inittab and /etc/rc*.d scripts


=== Linux boot process from CD-ROM: ===
=== Linux boot process from CD-ROM: ===


# PC initializion phase - BIOS, POST.
# PC initialization phase - BIOS, POST.
# ISOLINUX is invoked from bootable CD in CD-ROM device (=isolinux.bin=)
# ISOLINUX is invoked from bootable CD in CD-ROM device (=isolinux.bin=)
# ISOLINUX loads the kernel from the CD-ROM device (the =/isolinux= directory on the CD)
# ISOLINUX loads the kernel from the CD-ROM device (the =/isolinux= directory on the CD)
# ISOLINUX loads the the initrd image (=initrd.img=)
# ISOLINUX loads the the initrd image (=initrd.img=)
# The kernel then takes over, and attempts to decompresses the initrd.img into memory (=/dev/ram0=), and mounts this new filesystem as root (=/=).
# The kernel then takes over, and attempts to decompress the initrd.img into memory (=/dev/ram0=), and mounts this new filesystem as root (=/=).
# The kernel attempts to run =/linuxrc= in the newly created root filesystem.
# The kernel attempts to run =/linuxrc= in the newly created root filesystem.
# The linuxrc program then mounts the CD-ROM (by trial and error), and decompresses a 'true' root filesystem from CD-ROM to =/dev/ram1=.
# The linuxrc program then mounts the CD-ROM (by trial and error), and decompresses a 'true' root filesystem from CD-ROM to =/dev/ram1=.

Latest revision as of 08:28, 8 August 2018

How Anaconda Works

Boot process

Boot Process

A different boot process is needed when booting from a CD-ROM because linux does not really know how to do it. When booting from a CD-ROM an initrd (initial ramdisk) is used as the root filesystem. This initrd is loaded by the *bootloader*, not the kernel, making it possible to boot from any device the bootloader can access. ISOLINUX is the boot loader commonly used for booting from a CD-ROM.

Linux boot process from hard drive:

  1. PC initialization phase - BIOS, POST.
  2. PC starts boot loader - usually grub or lilo.
  3. The bootloader locates kernel image on the hard drive.
  4. The kernel decompresses and loads itself. Once finished it tries to mount the root filesystem.
  5. When the root filesystem is mounted, /sbin/init is executed and continues booting the system using inittab and /etc/rc*.d scripts

Linux boot process from CD-ROM:

  1. PC initialization phase - BIOS, POST.
  2. ISOLINUX is invoked from bootable CD in CD-ROM device (=isolinux.bin=)
  3. ISOLINUX loads the kernel from the CD-ROM device (the =/isolinux= directory on the CD)
  4. ISOLINUX loads the the initrd image (=initrd.img=)
  5. The kernel then takes over, and attempts to decompress the initrd.img into memory (=/dev/ram0=), and mounts this new filesystem as root (=/=).
  6. The kernel attempts to run =/linuxrc= in the newly created root filesystem.
  7. The linuxrc program then mounts the CD-ROM (by trial and error), and decompresses a 'true' root filesystem from CD-ROM to =/dev/ram1=.
  8. The kernel takes over and mounts the newly configured root filesystem. The new filesystem is mounted so that a softlink for the CD-ROM can be added in its =/dev= directory, so the system can access the CD-ROM.
  9. Finally, the kernel runs the /sbin/loader binary which then invokes the anaconda installer.
  1. actual anaconda process
    1. /sbin/init
    2. /sbin/loader
    3. ...
    4. probing for hardware (what is happening behind the scenes/what programs are doing what)
      1. Probe for video card
      2. Probe for monitor
      3. Probe for mouse
    5. Welcome to Fedora
    6. Choose language for the installation
    7. Choose the keyboard
    8. Choose the mouse
    9. Choose the monitor
    10. Searching for Fedora Core/Red Hat Linux installations (/etc/redhat-release)
    11. Upgrade and existing installation or Install Fedora Core
    12. Choose class [Personal Desktop (default), Workstation, Server, Custom]
    13. Partition setup
    14. Boot Loader configuration
      1. Change bootloader (no bootloader instead of grub)
      2. Choose the default OS to boot, and add/remove other OS's from grub
      3. Setup a bootloader (grub) password
      4. Configure advanced boot loader options
        1. Install grub on the MBR (hda) or on the first sector of the boot partition (hda1)
        2. Change drive order
        3. Force LBA32
        4. Other kernel parameters
      5. Network configuration
      6. Firewall configuration
        1. WWW
        2. FTP
        3. SSH
        4. Telnet
        5. Mail (SMTP)
        6. Other ports
        7. Allow all traffic from a device
      7. Select default language on the system and any other additional languages
      8. Time zone selection
      9. Root password (at least 6 characters long)
      10. Package Selection (custom install)
      11. About to install POINT OF NO RETURN!!
    15. ...

1 Anaconda ISOLINUX options

1 Anaconda options