0

I am integrating AWS and using boxfuse.

  • I set up the boxfuse account.
  • I install the boxfuse client.
  • I connect the AWS account.

When I type in terminal :- boxfuse -v, it shows me error:-

boxfuse: command not found

How to install and deploy web services on mac machine?

Axel Fontaine
  • 32,887
  • 14
  • 101
  • 134
pkc456
  • 8,256
  • 34
  • 50
  • 104

1 Answers1

1

You need to add the Boxfuse installation directory to the PATH.

Windows: Adding directory to PATH Environment Variable in Windows

macOS: How to add /usr/local/bin in $PATH on Mac

Linux: How to permanently set $PATH on Linux?

Community
  • 1
  • 1
Axel Fontaine
  • 32,887
  • 14
  • 101
  • 134
  • In my system, boxfuse is located at software -> boxfuse. I run the following command in terminal:- `export PATH=$PATH:/usr/local/git/bin:software/boxfuse`. But I am facing same error. – pkc456 Apr 10 '17 at 07:10
  • 1
    Shouldn't there be a leading slash? `export PATH=$PATH:/usr/local/git/bin:/software/boxfuse` Alternatively you can always use the full path. – Axel Fontaine Apr 10 '17 at 08:37