728x90
Rufus로 OS USB 만들기
https://estar987.tistory.com/21
Rocky Linux 설치
ISO Rocky-8.6-x86_64-dvd1.iso 설치 과정 1. ISO 파일을 받는다. https://dl.rockylinux.org/vault/rocky/8.6/isos/x86_64/ 2. Rufus를 다운 받고 빈 USB 하나를 준비한다. https://github.com/pbatard/rufus/releases/download/v3.17/rufus-3.17.exe
estar987.com
kickstart 파일 생성
/images/pxeboot/ks.cfg 경로에 파일을 생성함(전에 포스팅한 글 참고)
https://estar987.tistory.com/42
PXE 설치 _ Kickstart
개요 https://estar987.tistory.com/38 PXE 설치(FTP 방식) 1. DHCP 서버 설치 yum -y install dhcp-server 혹은 dnf install dhcp-server # vi /etc/dhcp/dhcp.conf # # DHCP Server Configuration file. # see /usr/share/doc/dhcp-server/dhcpd.conf.example #
estar987.com
BIOS
# vim isolinux/isolinux.cfg
label Redhat(Kickstart)
menu label ^Redhat(Kickstart)
kernel vmlinuz
menu default
append initrd=initrd.img inst.repo=hd:LABEL=RHEL-8-6-0- inst.ks=hd:LABEL=RHEL-8-6-0-:/images/pxeboot/ks.cfg quiet
UEFI
# vim EFI/BOOT/grub.cfg
menuentry 'PXE' --class fedora --class gnu-linux --class gnu --class os {
linuxefi /images/pxeboot/vmlinuz inst.repo=hd:LABEL=RHEL-8-6-0- inst.ks=hd:LABEL=RHEL-8-6-0-:/images/pxeboot/ks.cfg quiet
initrdefi /images/pxeboot/initrd.img
}
'OS' 카테고리의 다른 글
[Rocky linux 8] IPXE (2) | 2024.10.02 |
---|---|
[Rocky linux 8] PXE할 서버 지정하기 (0) | 2024.07.08 |
[OS]RAID 수준 이해하기: RAID 0, 1, 5, 6, 10, 01 (0) | 2024.07.04 |
PXE 설치 시 BIOS / UEFI 자동 선택 (0) | 2024.02.26 |
레이드(Raid) (0) | 2024.02.17 |