버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

Oracle Linux 8 시작

Linux GUI 접속










설치 내역 확인

코드 블럭
languagebash
linenumberstrue
cat /etc/oracle-release
cat /etc/redhat-release
uname -r


펼치기


서식 미적용
[root@ol8 ~]# cat /etc/oracle-release
Oracle Linux Server release 8.1

[root@ol8 ~]# cat /etc/redhat-release
Red Hat Enterprise Linux release 8.1 (Ootpa)

[root@ol8 ~]# uname -r
4.18.0-147.el8.x86_64




리눅스 설정 변경

코드 블럭
languagebash
titlevi /etc/hosts 로 서버 정보 추가
linenumberstrue
vi /etc/hosts


펼치기


서식 미적용
[root@ol8 ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

10.0.1.20       ol8





코드 블럭
languagebash
titlevi /etc/selinux/config 로 SELinux 설정 변경
linenumberstrue
SELINUX=permissive


코드 블럭
languagebash
titleSELinux 모드 permissive 로 적용
linenumberstrue
setenforce permissive


펼치기

기존의 값을 주석처리하고 permissive로 대체

서식 미적용
[root@ol8 ~]# cat /etc/selinux/config | grep SELINUX=
# SELINUX= can take one of these three values:
#SELINUX=enforcing
SELINUX=permissive

실시간으로 적용

서식 미적용
[root@ol8 ~]# setenforce permissive





코드 블럭
languagebash
titlevi /etc/fstab 로 tmpfs 재설정
linenumberstrue
tmpfs                   /dev/shm                tmpfs   size=8g         0 0


코드 블럭
languagebash
title/dev/shm 영역 remount 수행
linenumberstrue
mount -o remount /dev/shm


펼치기


서식 미적용
tmpfs                   /dev/shm                tmpfs   size=8g         0 0


서식 미적용
[root@ol8 ~]# df -h | grep shm
tmpfs                4.9G     0  4.9G   0% /dev/shm
 
[root@ol8 ~]# mount -o remount /dev/shm

[root@ol8 ~]# df -h | grep shm
tmpfs                8.0G     0  8.0G   0% /dev/shm