minimal 설치후 작업
네트워크 설정
$ if addr
하면 eth0 또는 ens33, enp0s3 암튼 e로 시작하는 것 나옴$ cd /etc/sysconfig/network-scripts/
$ ls -al ifcfg*
하면 위의 이름중 하나가 나온다$ vi ifcfg-eth0
(ens33 등) 해당 파일 수정- DHCP 사용하려면
ONBOOT=no
부분을ONBOOT=yes
로 바꾸면 된다 dhclient -r eth0
(ens33 등)dhclient eth0
(ens33 등)
DHCP 사용시(전체 파일내용)
1 | >TYPE=Ethernet |
정적 IP 설정 (위에 내용에 아래만 수정 및 추가)
1 | >BOOTPROTO=static |
네트워크 확인
$ yum check-update
로 네트워크 확인한다. (또는 curl ipinfo.io 등)
ssh 서버 설치
$ yum install -y openssh-server
$ service sshd start
또는 CentOS7systemctl start sshd
후$ chkconfig sshd on
또는 CentOS7systemctl enable sshd.service
$ systemctl status sshd
로 확인
ifconfig
또는 netstat
등 명령어 사용하려면
$ yum install -y net-tools
설치
yum 업데이트
$ yum update -y
로 패키지를 최신버전으로 업데이트
시간대 설정
$ ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
hostname 설정
hostnamectl stutus
로 확인hostnamectl set-hostname aaa.com
로 설정