일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- YMODEM
- 디자인패턴
- homeassistant
- STM32
- 전기차
- dynamodb
- Android
- 플라스크
- 보안
- esp8266
- AWS
- 라즈베리파이
- 충전기
- raspberry
- flask
- OCPP
- IOT Core
- 홈어시스턴트
- 파이썬
- 펌웨어
- 에버온
- everon
- lambda
- 전기차충전기
- thread
- 완속충전기
- 서버리스
- 안드로이드
- 전기차충전
- 급속충전기
- Today
- Total
Louie NRT Story
[Cloud_Training] Linux PXE 본문
Linux PXE(Pre-boot eXecution Environment)
The environment can help computer booting by network interface
yum install -y dhcp tftp-server httpd syslinux system-config-kickstart
mkdir /cd
mount /dev/cdrom /cd
mkdir /var/www/html/cent6
cp -a /cd/ /var/www/html/cent6
cp /usr/share/doc/dhcp-4.1.1/dhcpd.conf.sample /etc/dhcp/dhcpd.conf
vi /etc/dhcp/dhcpd.conf
Check the dhcpd setting
cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot/
mkdir /var/lib/tftpboot/pxelinux.cfg
vi /etc/xinetd.d/tftp
mkdir /var/lib/tftpboot/cent6
cp –a /var/www/html/cent6/cd/images/pxeboot/vmlinuz /var/lib/tftpboot/cent6
cp –a /var/www/html/cent6/cd/images/pxeboot/initrd.img /var/lib/tftpboot/cent6
vi /var/lib/tftpboot/pxelinux.cfg/default
service iptables stop
service httpd start
service dhcpd start
service xinetd start
*Tip about xinetd
Start other CenTOS box
Choose the URL Setup and input the OS distributing server IP and path
Finally, Power on this CenTOS
'서버시스템' 카테고리의 다른 글
[Cloud_Training] SElinux (0) | 2018.10.06 |
---|---|
[Cloud_Training] Install XenServer (0) | 2018.10.04 |
[Cloud_Class] 181004 Xen,DHCP_OS배포 (0) | 2018.10.04 |
[Cloud_Class] 181002 리눅스 FTP,MAIL,NFS (0) | 2018.10.03 |
[Cloud_Class] 181001 리눅스 httpd 설정 (0) | 2018.10.01 |