Getting Started
Installing

Requirements

  • GNU/Linux
  • jq
  • awk
  • grep
  • tput
  • systemd
  • coreutils
  • mkdir
  • bash
  • nano
  • ncat
  • Basic Linux understanding

Installation on Debian-based distributions

Step 1

Add Xmanage Repository list

curl https://xmanage.ftp.sh/apt-repo/xmanage.list -o /etc/apt/sources.list.d/xmanage.list

Step 2

Import keyrings using apt-key

wget -qO - https://xmanage.ftp.sh/apt-repo/xmanage.key | sudo apt-key add -

Step 3

Update packages list

sudo apt-get update

Step 4

Install the package

sudo apt-get install xmanage

Step 5

Check if it's working

xmanage --version # or /usr/bin/xmanage --version

Installation on other distributions

Step 1

Install required packages

RedHat-based distributions:

# RPM
rpm -i sudo jq gawk coreutils nano ncat
# DNF
dnf install sudo jq gawk coreutils nano ncat
# YUM
yum install sudo jq gawk coreutils nano ncat
Arch-based distributions:
pacman -S sudo jq gawk coreutils nano ncat
Alpine:
apk add sudo jq gawk coreutils nano ncat
Gentoo:
emerge sudo jq gawk coreutils nano ncat

Step 2

Download the latest release from the XManage Repository

wget https://xmanage.ftp.sh/binaries/xmanage-{LATEST_VERSION} -O /usr/bin/xmanage

Step 3

Make the downloaded binary executable

chmod +x /usr/bin/xmanage

Step 4

Run the binary

xmanage --version # or /usr/bin/xmanage --version