CentOS 8 사용시 AMD 라이젠 이전 cpu 사용할 경우 아래와 같은 메시지와 mcelog 서비스 실패가 표시 된다면 mcelog: AMD Processor family 21: CPU is unsupported systemctl disable mcelog yum -y erase mcelog 참고 링크 – https://bugzilla.redhat.com/show_bug.cgi?id=1166978
[카테고리:] CentOS
CentOS 8에서 htop 설치
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm 설치 후 다음과 같이 설치 dnf -y update dnf -y install htop
Centos NetworkManager 끄기
NetworkManager 끄기 systemctl stop NetworkManager 재부팅시 자동 실행 해제 systemctl disable NetworkManager /etc/sysconfig/network-scripts/ifcfg-ethX 파일 편집 NM_CONTROLLED=”no”
Centos SELINUX 끄기
vi /etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing – SELinux security policy is enforced. # permissive – SELinux prints warnings instead of enforcing. # disabled – No SELinux policy is loaded. SELINUX=disabled # SELINUXTYPE= can take one of three …
Centos SELINUX 끄기 더보기
Centos 7 방화벽 끄기(firewalld)
실행중인 방화벽 중지 systemctl stop firewalld 재부팅시 자동시작 해제 systemctl disable firewalld