8 liens privés
A brief discussion of 6 facets of Linux performance:
- Observability
- Methodologies
- Benchmarking
- Profiling
- Tracing
- Tuning
Audience: Everyone (DBAs, developers, operations, …)
It's very annoying to have this limitation on my development box, when there won't ever be any users other than me.
I'm aware of the standard workarounds, but none of them do exactly what I want:
apt-key del 95BD4743; wget -nv -O - "https://packages.sury.org/php/apt.gpg" | sudo apt-key add -
Pour solutionner le problème, il faut utiliser la commande ci-dessous :
/usr/sbin/groupadd
-
Mettre à jour le système.
--> apt-get update ; apt-get upgrade -
Supprimer tout les packets liés à PHP.
--> apt-get remove php* -
Télécharger la clé GPG.
--> sudo apt -y install lsb-release apt-transport-https ca-certificates
--> sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg -
Ajoutez le dépôt PPA.
--> echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php.list -
Installez PHP 7.4
--> sudo apt update
--> sudo apt -y install php7.4 -
Installez le module Apache pour PHP.
--> sudo apt install libapache2-mod-php7.4 -
Installez les extensions les plus courantes.
--> sudo apt-get install php7.4-{common,bcmath,bz2,intl,gd,mbstring,mysql,zip,cli,fpm,json,pdo,mbstring,curl,xml,imagick,tidy,xmlrpc,dev,imap,opcache,soap} -y -
Testez votre version PHP
--> php -v
Pour quitter un Screen linux il suffit d’utiliser le raccourci suivant :
Ctrl + A puis D
Installation : apt-get install redis-server
Configuration : /etc/redis/redis.conf
Accès au serveur :
redis-cli
Node.js is a platform built on Chrome’s V8 JavaScript engine.Nodejs can used for easily building fast, scalable network applications. Latest version node.js ppa is maintaining by its official website. We can add this PPA to Debian 10 (Buster), Debian 9 (Stretch) Debian 8 (Jessie) and Debian 7 (Wheezy) systems. Use this tutorial to install latest Nodejs & NPM on Debian 10/9/8/7 systems.