14778506
ORCL
3
버전 비교
비교대상
키
- 이 줄이 추가되었습니다.
- 이 줄이 삭제되었습니다.
- 서식이 변경되었습니다.
Oracle Linux 8 시작
Linux GUI 접속
설치 내역 확인
코드 블럭 | ||||
---|---|---|---|---|
| ||||
cat /etc/oracle-release cat /etc/redhat-release uname -r |
펼치기 | ||
---|---|---|
|
리눅스 설정 변경
코드 블럭 | ||||||
---|---|---|---|---|---|---|
| ||||||
vi /etc/hosts |
펼치기 | ||
---|---|---|
|
코드 블럭 | ||||||
---|---|---|---|---|---|---|
| ||||||
SELINUX=permissive |
코드 블럭 | ||||||
---|---|---|---|---|---|---|
| ||||||
setenforce permissive |
펼치기 | ||||
---|---|---|---|---|
기존의 값을 주석처리하고 permissive로 대체
실시간으로 적용
|
코드 블럭 | ||||||
---|---|---|---|---|---|---|
| ||||||
tmpfs /dev/shm tmpfs size=8g 0 0 |
코드 블럭 | ||||||
---|---|---|---|---|---|---|
| ||||||
mount -o remount /dev/shm |
펼치기 | ||||
---|---|---|---|---|
|
사용하지 않는 서비스 끄기
코드 블럭 |
---|
### 블루투스 중지
systemctl stop bluetooth.service
systemctl disable bluetooth.service
### 방화벽 중지
systemctl stop firewalld
systemctl disable firewalld
### 시간 동기화 중지
systemctl stop chronyd
systemctl disable chronyd
### NTP 중지
systemctl stop ntpdate
systemctl disable ntpdate
### DNS 중지
systemctl stop avahi-daemon
systemctl disable avahi-daemon
### 가상 시스템 관리 중지
systemctl stop libvirtd
systemctl disable libvirtd.service |
펼치기 | ||
---|---|---|
|
{}