[dnf/yum] Killed
# sudo yum update
Killed
# sudo dnf update
Killed
# sudo dnf module list php
Killed
yum이나 dnf를 실행할 때 모두 Killed라고 나오고 멈춘다면, 메모리가 모자라기 때문일 수 있다.
# sudo sysctl vm.swappiness
vm.swappiness = 0
sysctl로 vm.swappiness 값을 확인해 본다. 값이 0이면 가상 메모리를 쓰지 못하는 상태일 수 있으므로, 1 이상으로 높혀 준다.
# sudo sysctl vm.swappiness=30
vm.swappiness = 30
다시 부팅할 때에도 vm.swappiness 값이 이어지게 하고 싶다면, /etc/sysctl.conf 파일에 "vm.swappiness = 30"을 넣어 준다.
# sysctl settings are defined through files in
# /usr/lib/sysctl.d/, /run/sysctl.d/, and /etc/sysctl.d/.
#
# Vendors settings live in /usr/lib/sysctl.d/.
# To override a whole file, create a new file with the same in
# /etc/sysctl.d/ and put new settings there. To override
# only specific settings, add a file with a lexically later
# name in /etc/sysctl.d/ and put new settings there.
#
# For more information, see sysctl.conf(5) and sysctl.d(5).
vm.swappiness = 30
덧글을 달아 주세요