ETC
[CentOS] CentOS7 Minimal 기본 설정
행복안테나
2016. 3. 31. 15:28
1. http://ftp.daumkakao.com/centos/7.2.1511/isos/x86_64/에서 CentOS Minimal 버전 다운 (CentOS-7-x86_64-Minimal-1511.iso) 후 설치
2. vi /etc/selinux/config
- SELINUX=disabled 로 변경 후 재부팅
3. vi /etc/sysconfig/network-scripts/ifcfg-enp3s0
- ONBOOT=yes로 변경 후 service network restart
4. 패키지 설치
- yum install epel-release
- yum update
- yum install net-tools
- yum install ntp
- yum groupinstall 'Development Tools'
5. ntp 설정
- server 0.centos.pool.ntp.org iburst 부분 모두 주석 처리 후 아래 내용 추가
----------------------------------------------------
server 0.kr.pool.ntp.org
server 1.asia.pool.ntp.org
server 3.asia.pool.ntp.org
----------------------------------------------------
- systemctl start ntpd
- systemctl enable ntpd