New installation instructions for Fedora >= 27 and CentOS7

This commit is contained in:
Julio Gonzalez Gil 2018-10-06 22:20:44 +02:00
parent c5af62b023
commit 5634f9bdcd
1 changed files with 11 additions and 6 deletions

View File

@ -36,6 +36,17 @@ Some systems provide pre-built packages:
sudo zypper in s3fs
```
* On Fedora 27 and newer:
```
sudo yum install s3fs-fuse
```
* On RHEL 7 and CentOS 7 trough EPEL 7 repositories:
```
sudo yum install epel-release
sudo yum install s3fs-fuse
```
* On Mac OS X, install via [Homebrew](http://brew.sh/):
```ShellSession
@ -54,12 +65,6 @@ On Ubuntu 14.04:
sudo apt-get install automake autotools-dev fuse g++ git libcurl4-openssl-dev libfuse-dev libssl-dev libxml2-dev make pkg-config
```
On CentOS 7:
```
sudo yum install automake fuse fuse-devel gcc-c++ git libcurl-devel libxml2-devel make openssl-devel
```
Then compile from master via the following commands:
```