feat(docs/installation): integrate old from_the_sources changes

This commit is contained in:
Julien Fontanet
2022-03-10 19:26:13 +01:00
parent c99120bd24
commit f8b5dbbba5

View File

@@ -89,7 +89,7 @@ We'll consider at this point that you've got a working node on your box. E.g:
```
$ node -v
v14.17.0
v16.14.0
```
If not, see [this page](https://nodejs.org/en/download/package-manager/) for instructions on how to install Node.
@@ -107,7 +107,7 @@ XO needs the following packages to be installed. Redis is used as a database by
For example, on Debian/Ubuntu:
```
$ apt-get install build-essential redis-server libpng-dev git python-minimal libvhdi-utils lvm2 cifs-utils
$ apt-get install build-essential redis-server libpng-dev git python3-minimal libvhdi-utils lvm2 cifs-utils
```
On Fedora/CentOS like:
@@ -121,7 +121,7 @@ $ dnf install redis libpng-devel git libvhdi-utils lvm2 cifs-utils make automake
You need to use the `git` source code manager to fetch the code. Ideally, you should run XO as a non-root user, and if you choose to, you need to set up `sudo` to be able to mount NFS remotes. As your chosen non-root (or root) user, run the following:
```
git clone -b master http://github.com/vatesfr/xen-orchestra
git clone -b master https://github.com/vatesfr/xen-orchestra
```
:::tip