Voici une liste des paquets à installer en priorité:
# yum install \
epel-release.noarch \
bash-completion.noarch \
bash-completion-extras.noarch \
net-tools.x86_64 \
dpkg-devel.x86_64 dpkg-dev.noarch dpkg.x86_64 \
perl-Apache-Htpasswd.noarch \
python34.x86_64 \
gcc.x86_64 \
python34-devel.x86_64 \
python-devel.x86_64 \
python-pip.noarch \
python34-setuptools.noarch \
glances.noarch \
python34-pip.noarch \
man-db.x86_64 \
bind-utils
Liste non exhaustive.
Lister les paquets installés
# yum list installed
Connaitre le statut d'un service (exemple avec le service ntpd)
# systemctl status ntpd
ou
# service ntpd status
Redémarrer le réseau
# systemctl restart network
Activer un service (exemple avec le service nginx)
# systemctl enable nginx
Démarrer un service (exemple avec le service nginx)
# systemctl start nginx
Pour configurer le bon fuseau horaire sur CentOS, il faut indiquer les bons paramètres dans le fichier /etc/localtime
On trouve dans le dossier /usr/share/zoneinfo tous les fichiers pour toutes les zones de la planète.
Il suffit donc de faire un lien entre le bon fichier fichier correspondant à la zone souhaitée et le fichier /etc/localtime.
# unlink /etc/localtime
# ln -s /usr/share/zoneinfo/Europe/Paris /etc/localtime