Linux

Download

# Download the latest release
curl -LO https://gitlab.com/sucos/sucos/-/releases/permalink/latest/downloads/sucos-linux-x64

# Rename and make it executable
mv sucos-linux-x64 sucos
chmod +x sucos

Install system-wide

Move the binary to /usr/local/bin so it's available to all users:

sudo mv sucos /usr/local/bin/sucos

Install for your user only

If you don't have sudo access, install it in ~/bin:

mkdir -p ~/bin
mv sucos ~/bin/sucos

# Add ~/bin to PATH if it isn't already
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

Verify

sucos --version

Troubleshooting

Permission denied when running sucos

chmod +x /path/to/sucos

SELinux systems (Fedora, RHEL, CentOS)

If SELinux blocks execution, update the security context:

sudo chcon -t bin_t /usr/local/bin/sucos

Package managers (apt, dnf, pacman, Snap, Flatpak) are not yet supported. The binary install above is the recommended method.