(: Simple HTML webSITE :)

A# Install panel on VPS(CentOS&AlmaLinux)

1# timedatectl set-timezone Asia/Almaty

2# sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config //2.1# reboot //2.2# getenforce

3# rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux // if almalinux is not updated and install

4# yum update && yum upgrade -y

5# dd if=/dev/zero of=/swapfile bs=1M count=2048

6# chmod 600 /swapfile

7# mkswap /swapfile

8# swapon /swapfile

9# swapon -s

10# echo "/swapfile swap swap defaults 0 0" >> /etc/fstab

11# yum install nmap vim mc mtr nano wget htop curl net-tools nload ncdu httping -y

12# wget http://repo.fastpanel.direct/install_fastpanel.sh && bash install_fastpanel.sh --help | grep 'Available versions'

13# bash install_fastpanel.sh -m mariadb10.*

B# Detailed command history

vim or nano .bashrc

HISTSIZE=100000

HISTFILESIZE=200000

export HISTTIMEFORMAT="%d %h %Y %H:%M:%S "