Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
redhat:other-redhat:pxe-installation-server-redhat [2017/07/07 10:20] – [Step 5 - Create kickStart & PXE menu file.] michael | redhat:other-redhat:pxe-installation-server-redhat [2017/09/26 21:19] (current) – [Configure PXE (Network Boot) installation Server on CentOS 7] michael | ||
---|---|---|---|
Line 3: | Line 3: | ||
Once the PXE server is configured we can install hundreds of System at the same time over the network.As it works on Client-Server architecture, | Once the PXE server is configured we can install hundreds of System at the same time over the network.As it works on Client-Server architecture, | ||
+ | |||
+ | FIXME | ||
+ | |||
+ | * **https:// | ||
+ | * https:// | ||
Line 130: | Line 135: | ||
<WRAP center round box 100%> | <WRAP center round box 100%> | ||
< | < | ||
- | # openssl passwd -1 Pxe@123# | + | # openssl passwd -1 MY-STR0NGpW123! |
</ | </ | ||
- | $1$e2wrcGGX$tZPQKPsXVhNmbiGg53MN41 | + | $6$bDp6BGDIUOTz487Q$Kw3w/ |
</ | </ | ||
- | System default kickstart file is placed under **/root** with name **anaconda-ks.cfg**. We will be creating | + | System default kickstart file is placed under **/root** with name **anaconda-ks.cfg**. We will now creating |
- | Copy the following content into the new kickstart file. Please modify the kickstart | + | Copy the following content into the new kickstart file. Please modify the file as per your needs. |
< | < | ||
Line 144: | Line 149: | ||
<sxh bash; first-line: 1> | <sxh bash; first-line: 1> | ||
- | #platform=x86, AMD64, or Intel EM64T | + | #version=CentOS 7 |
- | #version=DEVEL | + | |
+ | # Action - Install OS instead of upgrade | ||
+ | install | ||
+ | |||
+ | |||
+ | # Accept Eula | ||
+ | eula --agreed | ||
# Firewall configuration | # Firewall configuration | ||
firewall --disabled | firewall --disabled | ||
- | # Install OS instead of upgrade | + | repo --name=" |
- | install | + | |
# Use FTP installation media | # Use FTP installation media | ||
url --url=" | url --url=" | ||
- | # Root password | + | rootpw --iscrypted $6$bDp6BGDIUOTz487Q$Kw3w/ |
- | rootpw --iscrypted $1$e2wrcGGX$tZPQKPsXVhNmbiGg53MN41 | + | |
# System authorization information | # System authorization information | ||
Line 166: | Line 175: | ||
firstboot disable | firstboot disable | ||
- | # System keyboard | + | # Keyboard layouts |
- | keyboard | + | keyboard |
# System language | # System language | ||
- | lang en_US | + | lang en_US.UTF-8 |
- | # SELinux | + | # SELinux |
- | selinux | + | selinux |
- | + | ||
- | # Installation logging level | + | |
- | logging level=info | + | |
# System timezone | # System timezone | ||
- | timezone Europe/Amsterdam | + | timezone Europe/Zurich --isUtc --ntpservers=0.centos.pool.ntp.org, |
# System bootloader configuration | # System bootloader configuration | ||
- | bootloader location=mbr | + | bootloader |
+ | |||
+ | # Partition clearing information | ||
clearpart --all --initlabel | clearpart --all --initlabel | ||
- | part swap --asprimary | + | |
- | part /boot --fstype xfs --size=300 | + | |
- | part pv.01 --size=1 --grow | + | # Disk partitioning information |
+ | part pv.01 --fstype=" | ||
+ | part /boot --fstype="xfs" --ondisk=sda | ||
+ | part /boot/efi --fstype=" | ||
volgroup root_vg01 pv.01 | volgroup root_vg01 pv.01 | ||
- | logvol / --fstype xfs --name=lv_01 --vgname=root_vg01 --size=1 --grow | + | logvol swap --fstype=" |
+ | logvol / --fstype="xfs" | ||
%packages | %packages | ||
Line 280: | Line 295: | ||
BILDER VON VM BOOT EINFügen | BILDER VON VM BOOT EINFügen | ||
+ | **Alte Links:** | ||
https:// | https:// | ||
- | |||
https:// | https:// | ||
+ | |||
+ | ---- | ||
+ | |||
+ | **Neue Links, Besser erklährt: | ||
+ | https:// | ||
+ | https:// | ||
+ | |||
+ | https:// | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Fine-Tuneing des Kickstartfiles ===== | ||
+ | * https:// | ||
+ | |||
+ |