-
Notifications
You must be signed in to change notification settings - Fork 12
Installing Fusera
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. 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)
If you run into issues running this command, they're most likely permission issues. In this case, you might have to run this command as root, or even go to the install script yourself and run each line in the terminal as root.
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.
$ 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