Linux installation
Linux installation steps
Section titled “Linux installation steps”You can install the Connect SFTP tool on Linux in two ways:
- System-wide (all users)
- Single user (local install)
System-wide installation
Section titled “System-wide installation”To install the Connect SFTP tool system-wide, you can use the following steps:
- Download the Connect binary from the official website (https://connect.io/downloads).
Choose the correct binary for your system:
- connect-linux-amd64
- connect-linux-arm64
- connect-darwin-amd64
- connect-darwin-arm64
Once downloaded, you can rename it to connect
and make it executable:
$ mv connect-linux-amd64 connect$ chmod +x connect
- Create installation directory
Create a directory for Connect in /opt:
$ sudo mkdir -p /opt/connect
- Copy binary to /opt/connect
Copy the downloaded binary to the new directory:
$ sudo cp connect /opt/connect/
- Create a symbolic link
Create a symbolic link to the binary in /usr/local/bin so that it can be accessed from anywhere:
$ sudo ln -s /opt/connect/connect /usr/local/bin/connect
- Set correct permissions
Set the correct permissions for the binary:
$ sudo chmod 755 /opt/connect/connect
- Verify installation
You can verify that the installation was successful by running the following command:
$ connect --version
- Proceed to license activation
If the installation was successful, you can proceed to activate your license.
Single user installation
Section titled “Single user installation”To install the Connect SFTP tool for a single user, you can follow these steps:
- Download the Connect binary from the official website (https://connect.io/downloads).
Choose the correct binary for your system:
- connect-linux-amd64
- connect-linux-arm64
- connect-darwin-amd64
- connect-darwin-arm64
Once downloaded, you can rename it to connect
and make it executable:
$ mv connect-linux-amd64 connect$ chmod +x connect
- Create a directory for Connect in your home directory
Create a directory for Connect in your home directory:
$ mkdir -p ~/connect
- Move the binary to the new directory
Move the downloaded binary to the new directory:
$ mv connect ~/connect/
- Add Connect to your PATH
Add the Connect directory to your PATH by adding the following line to your ~/.bashrc or ~/.zshrc file:
export PATH="$HOME/connect:$PATH"
- Source your shell configuration file
Source your shell configuration file to apply the changes:
$ source ~/.bashrc# or$ source ~/.zshrc
- Verify installation
You can verify that the installation was successful by running the following command:
$ connect --version
- Proceed to license activation
If the installation was successful, you can proceed to activate your license.
Activate your license