File: other-linux.md

package info (click to toggle)
jekyll 4.3.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,356 kB
  • sloc: ruby: 16,765; javascript: 1,455; sh: 214; xml: 29; makefile: 9
file content (60 lines) | stat: -rw-r--r-- 873 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: Jekyll on Linux
permalink: /docs/installation/other-linux/
---

Installation on other Linux distributions works similarly to installing on [Ubuntu](../ubuntu/).

## Install prerequisites

### Fedora

```sh
sudo dnf install ruby ruby-devel openssl-devel redhat-rpm-config @development-tools
```
### RHEL8/CentOS8

```sh
sudo dnf install ruby ruby-devel
sudo dnf group install "Development Tools"
```

### Debian

```sh
sudo apt-get install ruby-full build-essential
```

### Gentoo

```sh
sudo emerge -av jekyll
```

or

```sh
sudo emerge --ask --verbose jekyll
```

### ArchLinux

```sh
sudo pacman -S ruby base-devel
```

### OpenSUSE

```sh
sudo zypper install -t pattern devel_ruby devel_C_C++
sudo zypper install ruby-devel
```

### Clear Linux

```sh
sudo swupd bundle-add ruby-basic
```
## Install Jekyll

Follow the instructions for [Ubuntu](../ubuntu/).