diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-26 09:02:22 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-26 10:01:42 +0200 |
commit | d35f3a86c63955083cc55dcf8930e0335203139e (patch) | |
tree | 509136cd9266386d17fe09d9892f50f94a7f0059 | |
parent | 818045ef04b321aa0a66bb8abce30a2e94e9fefa (diff) | |
download | PeerTube-d35f3a86c63955083cc55dcf8930e0335203139e.tar.gz PeerTube-d35f3a86c63955083cc55dcf8930e0335203139e.tar.zst PeerTube-d35f3a86c63955083cc55dcf8930e0335203139e.zip |
Fix archlinux dep
-rw-r--r-- | support/doc/dependencies.md | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/support/doc/dependencies.md b/support/doc/dependencies.md index 6f14d33a0..bb60ba6f4 100644 --- a/support/doc/dependencies.md +++ b/support/doc/dependencies.md | |||
@@ -56,7 +56,7 @@ sudo systemctl start redis postgresql | |||
56 | 1. Run: | 56 | 1. Run: |
57 | 57 | ||
58 | ``` | 58 | ``` |
59 | sudo pacman -S nodejs-lts-dubnium yarn ffmpeg postgresql openssl redis git wget unzip python2 base-devel npm nginx | 59 | sudo pacman -S nodejs-lts-fermium yarn ffmpeg postgresql openssl redis git wget unzip python2 base-devel npm nginx |
60 | ``` | 60 | ``` |
61 | 61 | ||
62 | Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis: | 62 | Now that dependencies are installed, before running PeerTube you should start PostgreSQL and Redis: |
@@ -152,26 +152,26 @@ sudo systemctl enable --now redis | |||
152 | sudo systemctl enable --now postgresql | 152 | sudo systemctl enable --now postgresql |
153 | ``` | 153 | ``` |
154 | 154 | ||
155 | ## Rocky Linux 8.4 | 155 | ## Rocky Linux 8.4 |
156 | 156 | ||
157 | 1. Pull the latest updates: | 157 | 1. Pull the latest updates: |
158 | ``` | 158 | ``` |
159 | sudo dnf update -y | 159 | sudo dnf update -y |
160 | ``` | 160 | ``` |
161 | 161 | ||
162 | 2. Install NodeJS 12.x (why 12 and not 14? Not sure...): | 162 | 2. Install NodeJS 12.x (why 12 and not 14? Not sure...): |
163 | ``` | 163 | ``` |
164 | sudo dnf module install -y nodejs:12 | 164 | sudo dnf module install -y nodejs:12 |
165 | ``` | 165 | ``` |
166 | 166 | ||
167 | 3. Install yarn: | 167 | 3. Install yarn: |
168 | ``` | 168 | ``` |
169 | sudo npm install --global yarn | 169 | sudo npm install --global yarn |
170 | ``` | 170 | ``` |
171 | 171 | ||
172 | 4. Install or compile ffmpeg (if you want to compile... enjoy): | 172 | 4. Install or compile ffmpeg (if you want to compile... enjoy): |
173 | ``` | 173 | ``` |
174 | sudo dnf install -y epel-release | 174 | sudo dnf install -y epel-release |
175 | sudo dnf --enablerepo=powertools install -y SDL2 SDL2-devel | 175 | sudo dnf --enablerepo=powertools install -y SDL2 SDL2-devel |
176 | sudo dnf install -y --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-8.noarch.rpm | 176 | sudo dnf install -y --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-8.noarch.rpm |
177 | sudo dnf install -y ffmpeg | 177 | sudo dnf install -y ffmpeg |
@@ -193,10 +193,10 @@ sudo useradd -m -d /var/www/peertube -s /bin/bash -p peertube peertube | |||
193 | ``` | 193 | ``` |
194 | 194 | ||
195 | 7. Unknown missing steps: | 195 | 7. Unknown missing steps: |
196 | - Steps missing here... these were adapted from the CentOS 8 steps which abruptly ended. | 196 | - Steps missing here... these were adapted from the CentOS 8 steps which abruptly ended. |
197 | - /var/www/peertube does not exist yet (expected? done in future steps? documentation?). | 197 | - /var/www/peertube does not exist yet (expected? done in future steps? documentation?). |
198 | - Nothing about Certbot, NGINX, Firewall settings, and etc. | 198 | - Nothing about Certbot, NGINX, Firewall settings, and etc. |
199 | - Hopefully someone can suggest what is missing here with some hints so I can add it? | 199 | - Hopefully someone can suggest what is missing here with some hints so I can add it? |
200 | 200 | ||
201 | ## Fedora | 201 | ## Fedora |
202 | 202 | ||
@@ -472,7 +472,7 @@ sudo vim /etc/shells # Add in this file : /usr/local/bin/bash | |||
472 | chsh -s /usr/local/bin/bash # To set the brew-installed bash as default bash | 472 | chsh -s /usr/local/bin/bash # To set the brew-installed bash as default bash |
473 | ``` | 473 | ``` |
474 | 474 | ||
475 | In a new shell, type `bash --version` to assert your changes took effect and | 475 | In a new shell, type `bash --version` to assert your changes took effect and |
476 | correctly modified your default bash version. | 476 | correctly modified your default bash version. |
477 | 477 | ||
478 | 2. Run the services: | 478 | 2. Run the services: |