728x90
wget 프로그램 패키지 설치
# dnf -y install bind-utils net-tools wget unzip bzip2
dnf 저장소 설정
# cd /etc/yum.repos.d/
# rm -f *.repo
# ls
# wget http://download.hanbit.co.kr/centos/8/This.repo
# ls -l
#dnf clean all
네트워크 설정
# cd /etc/sysconfig/network-scripts
# ls
# vi ifcfg-ens160
BOOTPROTO="none" IPADDR=192.168.111.200 NETMASK=255.255.255.0 GATEWAY=192.168.111.2 DNS1=192.168.111.2 |
[A] → 위의 내용으로 수정 → [ESC] → :wq → [ENTER]
# nmcli connection down ens160
# nmcli connection up ens160
# reboot
# ipaddr
# ping -c 3 www.google.com
SELinux 기능 끄기
# vi /etc/sysconfig/selinux
해상도 설정
# vi /etc/grub.d/10_linux
문서 파일이 열리면 :set number를 입력해 라인의 숫자가 나오도록 한다.
169번째 줄의 맨 끝에 vga=771을 추가한다. 이는 해상도를 800x600으로 설정하는 것이다.
# grub2-mkconfig -o /boot/grub2/grub.cfg
# reboot
SMALL
'System > OS - Linux' 카테고리의 다른 글
[리눅스 명령어] 도움말 사용법 - man (0) | 2020.09.19 |
---|---|
LINUX 기초 개념 - 시작과 종료, 재부팅, 가상콘솔, 자동완성, history (0) | 2020.09.16 |
CentOS Client 가상 머신 설치 (0) | 2020.09.14 |
centOS 네트워크 설정 (0) | 2020.09.11 |
lrzsz (0) | 2020.07.12 |