summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorSimon Rettberg2022-05-20 21:18:05 +0200
committerSimon Rettberg2022-05-20 21:18:05 +0200
commitd8d2a19cfd48056a6b600432a80cb2848bf3d6a5 (patch)
tree95ada283088d156bdf69acf09e8336592c1030d1 /README.md
parent[FUSE] Adapt to changed macro names (diff)
downloaddnbd3-d8d2a19cfd48056a6b600432a80cb2848bf3d6a5.tar.gz
dnbd3-d8d2a19cfd48056a6b600432a80cb2848bf3d6a5.tar.xz
dnbd3-d8d2a19cfd48056a6b600432a80cb2848bf3d6a5.zip
Update README
Unify copy & pasted RedHat 8-like sections, tweak introduction.
Diffstat (limited to 'README.md')
-rw-r--r--README.md44
1 files changed, 4 insertions, 40 deletions
diff --git a/README.md b/README.md
index a20f00f..c0116b9 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# dnbd3 - distributed network block device (version 3)
-The distributed network block device in version 3 (dnbd3) is a network protocol similar to [nbd](https://github.com/NetworkBlockDevice/nbd) to implement a distributed block-based read-only storage system. Such a distributed block-based storage system consists of dnbd3 components, namly one or more servers and several clients. Servers are meant to expose virtual disk images as block devices to clients using dnbd3. Clients request data blocks from servers and can implement a load balancing mechanism to connect to the fastest available server for data exchange.
+The distributed network block device version 3 (dnbd3) is a network protocol similar to [nbd](https://github.com/NetworkBlockDevice/nbd) to implement a distributed block-based read-only storage system. Such a distributed block-based storage system consists of dnbd3 components, namly one or more servers and several clients. Servers are meant to expose virtual disk images as block devices to clients using dnbd3. Clients read data blocks from servers and implement failover and a load balancing mechanism to connect to the fastest server available for data exchange.
This repository contains the source code for the following dnbd3 components:
@@ -11,7 +11,7 @@ This repository contains the source code for the following dnbd3 components:
The dnbd3 components can be built for the following Linux kernel versions and Unix distributions:
- - Generic/Vanilla Kernel **4.14** – **5.15**
+ - Generic/Vanilla Kernel **4.9** to **5.15**
- Archlinux with **Linux kernel 5.15.x** or **5.10.x**
- Raspberry Pi OS with **Linux kernel 5.4.x**
- Ubuntu 20.04 with **Linux kernel 5.4.x**
@@ -86,7 +86,7 @@ apt-get install git \
rpm
```
-#### CentOS 8 with Linux kernel 4.18.x
+#### {CentOS, AlmaLinux, Rocky Linux} 8 with Linux kernel 4.18.x
```shell
yum install git \
make \
@@ -101,7 +101,7 @@ yum install git \
rpm-build
```
-Note that `afl` is not available on CentOS 8 and should be built from the [original sources](https://github.com/google/AFL).
+Note that `afl` is not available on CentOS 8 and the likes and should be built from the [original sources](https://github.com/google/AFL).
#### CentOS 7 with Linux kernel 3.10.x
Before any required preliminaries can be installed, enable the `epel` package repository with the following command line calls:
@@ -157,42 +157,6 @@ Now, GCC 7.3 is the default version in your current shell.
This allows you to build all dnbd3 components on CentOS 7.
-#### AlmaLinux 8 with Linux kernel 4.18.x
-```shell
-yum install git \
- make \
- cmake \
- gcc \
- clang-tools-extra \
- kernel-devel \
- elfutils-libelf-devel \
- fuse-devel \
- jansson-devel \
- libatomic \
- rpm-build
-```
-
-Note that `afl` is not available on AlmaLinux 8 and should be built from the [original sources](https://github.com/google/AFL).
-
-
-#### Rocky Linux 8 with Linux kernel 4.18.x
-```shell
-yum install git \
- make \
- cmake \
- gcc \
- clang-tools-extra \
- kernel-devel \
- elfutils-libelf-devel \
- fuse-devel \
- jansson-devel \
- libatomic \
- rpm-build
-```
-
-Note that `afl` is not available on Rocky Linux 8 and should be built from the [original sources](https://github.com/google/AFL).
-
-
#### FreeBSD 12.x and 13.x
```shell
pkg install git \