User Tools

Site Tools


rocky_start

Обновить пакеты

yum update

Отключить firewalld

systemctl disable firewalld
systemctl stop firewalld

Отключить SELINUX

sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
init 6

Включить поиск по истории

mcedit /etc/inputrc
"\e[A":history-search-backward
"\e[B":history-search-forward

Установить репозитарий EPEL (rocky 9)

dnf config-manager --set-enabled crb
dnf install epel-release

Синхронизация времени

yum install systemd-timesyncd
systemctl enable systemd-timesyncd.service
systemctl start systemd-timesyncd.service
systemctl status systemd-timesyncd.service
mcedit /etc/systemd/timesyncd.conf
...
[Time]
NTP=192.168.150.2 192.168.150.109
...
systemctl restart systemd-timesyncd.service

Проверяем

timedatectl

Установить необходимые пакеты

yum install mc
yum install net-tools 
yum install bind-utils
rocky_start.txt · Last modified: 2024/03/26 11:06 by admin