Adds missing required procps package

In very limited environments, Homebrew manual install fails with :

```
/root/.linuxbrew/Homebrew/Library/Homebrew/cmd/shellenv.sh: line 9: /bin/ps: No such file or directory
```

This has to be fixed by explicitly provisioning `ps` command on the system, since Brew 2.4.7 (see `c1666676`).
This commit is contained in:
Samuel FORESTIER 2021-04-05 11:23:16 +00:00 committed by GitHub
parent 698c49067d
commit c5acda3e5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,14 +57,14 @@ Paste at a terminal prompt:
### Debian or Ubuntu ### Debian or Ubuntu
```sh ```sh
sudo apt-get install build-essential curl file git sudo apt-get install build-essential procps curl file git
``` ```
### Fedora, CentOS, or Red Hat ### Fedora, CentOS, or Red Hat
```sh ```sh
sudo yum groupinstall 'Development Tools' sudo yum groupinstall 'Development Tools'
sudo yum install curl file git sudo yum install procps-ng curl file git
sudo yum install libxcrypt-compat # needed by Fedora 30 and up sudo yum install libxcrypt-compat # needed by Fedora 30 and up
``` ```