mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2025-06-26 04:53:59 +03:00
36 lines
873 B
Markdown
36 lines
873 B
Markdown
---
|
|
title: Активация и автоматические обновления в RHEL 9
|
|
description: Небольшая памятка
|
|
date: 2025-02-27T23:10:00+01:00
|
|
tags: [linux, rhel]
|
|
---
|
|
|
|
## Активация
|
|
|
|
```shell
|
|
subscription-manager register --auto-attach
|
|
insights-client --register
|
|
```
|
|
|
|
## Автоматическая установка обновлений
|
|
|
|
```shell
|
|
yum -y install dnf-automatic
|
|
systemctl enable --now dnf-automatic-install.timer
|
|
```
|
|
|
|
## Установка расширенного репозитория
|
|
|
|
```shell
|
|
subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms
|
|
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
|
|
```
|
|
|
|
## Отключение дампов ядра
|
|
|
|
```shell
|
|
systemctl disable --now kdump
|
|
grubby --update-kernel=ALL --remove-args="crashkernel"
|
|
init 6
|
|
```
|