English translation below
Sur la page Install /e/OS on a Fairphone FP4 - “FP4”
Au paragraphe
- Installing /e/OS
- nous avons la commande
chmod +x flash_FP4_factory.sh && ./flash_FP4_factory.sh
Pourquoi faire compliqué quand on peut faire plus simple
- sudo : inutile car vous êtes le propriétaire du fichier
- chmod +x flash_FP4_factory.sh : inutile car le fichier est déjà exécutable
- && : inutile car il ne reste plus qu’une commande sur la ligne
Donc la commande simplifiée est
./flash_FP4_factory.sh
====================================================================
On the page Install /e/OS on a Fairphone FP4 - “FP4”
In the paragraph
- Installing /e/OS
- we have the command
chmod +x flash_FP4_factory.sh && ./flash_FP4_factory.sh
Why make things complicated when they can be simpler?
- sudo: unnecessary because you are the owner of the file
- chmod +x flash_FP4_factory.sh: unnecessary because the file is already executable
- &&: unnecessary because there is only one command left on the line
So the simplified command is
./flash_FP4_factory.sh
Translated with DeepL.com (free version)