[Brotli](https://brotli.org/) is a new compression method with a better compression ratio than Gzip. Its source code is publicly hosted on [Github](https://github.com/google/brotli). This guide will show you the commands you need to run and build Brotli from source code on CentOS 7. Check the CentOS version. cat /etc/centos-release Create a new *non-root* user account with `sudo` access and switch to it. useradd -c "John Doe" johndoe && passwd johndoe usermod -aG wheel j......