rhel7_kickstart

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

rhel7_kickstart [2015/06/18 15:48] – 만듦 adminrhel7_kickstart [2015/06/18 15:49] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 +<code vim>
 +#version=RHEL7
 +# System authorization information
 +auth --enableshadow --passalgo=sha512
  
 +# Use CDROM installation media
 +cdrom
 +# Run the Setup Agent on first boot
 +firstboot --enable
 +ignoredisk --only-use=sda
 +# Keyboard layouts
 +keyboard --vckeymap=us --xlayouts='us'
 +# System language
 +lang en_US.UTF-8
 +
 +# Network information
 +network  --bootproto=dhcp --device=eno16777736 --ipv6=auto --activate
 +network  --hostname=rhcs3
 +# Root password
 +rootpw --iscrypted $6$xrBseKMavU4Z0EBi$pQ4uZ/hV97jhfrJQWLnt0PvzDzSSUEhOHPo/BQ1h7e9wFw1VbpMLAvMUyvHtRfPcwcPHCcCcFZK0BaT6F1buO0
 +# System services
 +services --enabled="chronyd"
 +# System timezone
 +timezone Asia/Seoul --isUtc
 +# System bootloader configuration
 +bootloader --location=mbr --boot-drive=sda
 +autopart --type=lvm
 +# Partition clearing information
 +clearpart --none --initlabel 
 +
 +%packages
 +@core
 +chrony
 +
 +%end
 +</code>