Skip to content

Installing Fusera

Matt Bianchi edited this page Jul 20, 2018 · 9 revisions

One Step Installation

This shell command downloads an install script and executes it.

The install script downloads the fusera and sracp binaries and installs them under /usr/local/bin, one of the most common places for executables to live on Linux.

It is recommended to use fusera on Ubuntu, but it can be run on most other forms of Linux and macOS. MacOS and some distro's of Linux will require their appropriate fuse utilities to be installed.

bash <(curl -fsSL https://raw.githubusercontent.com/mitre/fusera/master/install.sh)

Note: This command might have to be ran as root (sudo), depending on your setup.

"I'll Do It Myself, Thank You"

If you do not like running other people's shell scripts, releases of Fusera and Sracp can be found at https://github.com/mitre/fusera/releases

Make sure to grab the latest release, which is signified on the left sidebar with a green badge. Also note that changing the binary to be executable will probably be necessary:

chmod +x fusera
chmod +x sracp

It is advisable to move this file somewhere in your PATH.

"I Build My Own Binaries"

$ go get github.com/mitre/fusera/cmd/fusera
$ go install github.com/mitre/fusera/cmd/fusera
$ go get github.com/mitre/fusera/cmd/sracp
$ go install github.com/mitre/fusera/cmd/sracp
Clone this wiki locally