Skip to content

Instantly share code, notes, and snippets.

@deargonaut
Created August 1, 2017 10:23
Show Gist options
  • Save deargonaut/078048128be204cfc265281c7c2c1f5b to your computer and use it in GitHub Desktop.
Save deargonaut/078048128be204cfc265281c7c2c1f5b to your computer and use it in GitHub Desktop.
Install cloudfuse on RHEL / CentOS
cd ~ \
&& yum install -y gcc make fuse-devel curl-devel libxml2-devel openssl-devel json-c-devel \
&& git clone https://github.com/redbo/cloudfuse.git \
&& cd cloudfuse \
&& ./configure \
&& make \
&& make install \
&& cd ../ \
&& rm -Rf cloudfuse \
&& yum install -y fuse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment