04-03-2022
This commit is contained in:
@@ -10,10 +10,10 @@ Le boitier accepte les SSD M.2 (Key-B ou Key-B&M)
|
||||
|
||||
### Installer Raspberry Pi OS sur la MicroSD:
|
||||
|
||||
Télécharger [Raspberry Pi OS](https://www.raspberrypi.org/software/operating-systems/)
|
||||
Télécharger [Raspberry Pi OS](https://www.raspberrypi.org/software/operating-systems/)
|
||||
|
||||
```
|
||||
https://downloads.raspberrypi.org/raspios_full_armhf/images/raspios_full_armhf-2021-01-12/2021-01-11-raspios-buster-armhf-full.zip
|
||||
```bash
|
||||
wget https://downloads.raspberrypi.org/raspios_full_armhf/images/raspios_full_armhf-2021-01-12/2021-01-11-raspios-buster-armhf-full.zip
|
||||
```
|
||||
|
||||
Copier Raspberry Pi OS sur la MicroSD avec [Etcher](https://www.balena.io/etcher/)
|
||||
@@ -23,9 +23,9 @@ Booter sur la MicroSD.
|
||||
Mettre à jour l'OS et le firmware:
|
||||
|
||||
```bash
|
||||
$ sudo apt update
|
||||
$ sudo apt full-upgrade
|
||||
$ sudo rpi-update
|
||||
sudo apt update
|
||||
sudo apt full-upgrade
|
||||
sudo rpi-update
|
||||
```
|
||||
|
||||
Redémarrer le Raspberry.
|
||||
@@ -33,7 +33,7 @@ Redémarrer le Raspberry.
|
||||
Installer le dernier bootloader;
|
||||
|
||||
```bash
|
||||
$ sudo rpi-eeprom-update -d -a
|
||||
sudo rpi-eeprom-update -d -a
|
||||
```
|
||||
|
||||
Redémarrer le Raspberry.
|
||||
@@ -45,7 +45,7 @@ Redémarrer le Raspberry.
|
||||
Ouvrir **raspi-config**:
|
||||
|
||||
```bash
|
||||
$ sudo raspi-config
|
||||
sudo raspi-config
|
||||
```
|
||||
|
||||
1. Choisir **Advanded Options** puis Enter
|
||||
@@ -76,7 +76,7 @@ $ sudo raspi-config
|
||||
Installer Bouton Power et contrôle ventilo:
|
||||
|
||||
```bash
|
||||
$ curl https://download.argon40.com/argon1.sh | bash
|
||||
curl https://download.argon40.com/argon1.sh | bash
|
||||
```
|
||||
|
||||
Fonctions Bouton Power:
|
||||
@@ -100,13 +100,13 @@ Vitesse ventilo:
|
||||
Pour configurer:
|
||||
|
||||
```bash
|
||||
$ argonone-config
|
||||
argonone-config
|
||||
```
|
||||
|
||||
Désinstaller:
|
||||
|
||||
```bash
|
||||
$ argonone-uninstall
|
||||
argonone-uninstall
|
||||
```
|
||||
|
||||
|
||||
@@ -118,7 +118,7 @@ $ argonone-uninstall
|
||||
#### Installer le correcteur orthographique français:
|
||||
|
||||
```bash
|
||||
$ sudo apt-get install myspell-fr
|
||||
sudo apt-get install myspell-fr
|
||||
```
|
||||
|
||||
|
||||
@@ -301,14 +301,14 @@ AllowUsers user1 user2
|
||||
#### Redémarrer le service ssh:
|
||||
|
||||
```bash
|
||||
$ sudo service ssh restart
|
||||
sudo service ssh restart
|
||||
```
|
||||
|
||||
#### Si pas besoin de SSH, il faut le désactiver:
|
||||
|
||||
```bash
|
||||
$ sudo systemctl stop sshd
|
||||
$ sudo systemctl disable sshd
|
||||
sudo systemctl stop sshd
|
||||
sudo systemctl disable sshd
|
||||
```
|
||||
|
||||
|
||||
@@ -339,7 +339,9 @@ export NVM_DIR="$HOME/.config/nvm"
|
||||
$ nvm install --lts=fermium
|
||||
Installing with latest version of LTS line: fermium
|
||||
Downloading and installing node v14.16.0...
|
||||
```
|
||||
|
||||
```bash title="Version"
|
||||
$ node -v
|
||||
v14.16.0
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user