diff options
author | Okhin <okhin@okhin.fr> | 2018-03-24 20:38:25 +0100 |
---|---|---|
committer | Rigel Kent <par@rigelk.eu> | 2018-03-24 21:17:29 +0100 |
commit | 0414ed1066e4d4c24f98e375cd8f14d44401c09a (patch) | |
tree | 1619b076e37e1f4ad588d15f3046a1933e7379d3 /support/doc/dependencies.md | |
parent | f5b611f9ee8b6cb6236cf01c4963eb01bdadb7c9 (diff) | |
download | PeerTube-0414ed1066e4d4c24f98e375cd8f14d44401c09a.tar.gz PeerTube-0414ed1066e4d4c24f98e375cd8f14d44401c09a.tar.zst PeerTube-0414ed1066e4d4c24f98e375cd8f14d44401c09a.zip |
Improving the CentOS7 specific parts
Changing the link for ffmpeg toward a tutorial with an actual mirror of ffmpeg, and with less hassle.
Adding the deendencies to devtoolset-6 and centos-release-scl to provide a C++11 compatible G++
Diffstat (limited to 'support/doc/dependencies.md')
-rw-r--r-- | support/doc/dependencies.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md index 6db8a57d0..ab7fb2e4e 100644 --- a/support/doc/dependencies.md +++ b/support/doc/dependencies.md | |||
@@ -46,15 +46,19 @@ $ sudo pacman -S nodejs yarn ffmpeg postgresql openssl redis git wget unzip pyth | |||
46 | 2. Install yarn: | 46 | 2. Install yarn: |
47 | [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install) | 47 | [https://yarnpkg.com/en/docs/install](https://yarnpkg.com/en/docs/install) |
48 | 3. Install or compile ffmpeg: | 48 | 3. Install or compile ffmpeg: |
49 | * Install - [https://www.webfoobar.com/index.php/node/17](https://www.webfoobar.com/index.php/node/17) | 49 | * Install - [https://linoxide.com/linux-how-to/install-ffmpeg-centos-7/](https://linoxide.com/linux-how-to/install-ffmpeg-centos-7/) |
50 | * Compile - [https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh](https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh) | 50 | * Compile - [https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh](https://gist.github.com/mustafaturan/7053900#file-latest-ffmpeg-centos6-sh) |
51 | 4. Run: | 51 | 4. Run: |
52 | 52 | ||
53 | ``` | 53 | ``` |
54 | $ sudo yum update | 54 | $ sudo yum update |
55 | $ sudo yum install epel-release | 55 | $ sudo yum install epel-release centos-release-scl |
56 | $ sudo yum update | 56 | $ sudo yum update |
57 | $ sudo yum install nginx postgresql postgresql-server openssl gcc make redis git | 57 | $ sudo yum install nginx postgresql postgresql-server openssl gcc-c++ make redis git devtoolset-6 |
58 | ``` | ||
59 | |||
60 | 5. You need to use a more up to date version of G++ in order to run the yarn install command, hence the installation of devtoolset-6. | ||
61 | $ sudo scl devtoolset-6 bash | ||
58 | ``` | 62 | ``` |
59 | 63 | ||
60 | ## Other distributions | 64 | ## Other distributions |