차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
| rhel7_kickstart [2015/06/18 15:48] – 만듦 admin | rhel7_kickstart [2015/06/18 15:49] (현재) – 바깥 편집 127.0.0.1 | ||
|---|---|---|---|
| 줄 1: | 줄 1: | ||
| + | <code vim> | ||
| + | # | ||
| + | # 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=' | ||
| + | # System language | ||
| + | lang en_US.UTF-8 | ||
| + | |||
| + | # Network information | ||
| + | network | ||
| + | network | ||
| + | # Root password | ||
| + | rootpw --iscrypted $6$xrBseKMavU4Z0EBi$pQ4uZ/ | ||
| + | # System services | ||
| + | services --enabled=" | ||
| + | # 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 | ||
| + | </ | ||