Skip to content
Lorenzo Ariemma edited this page Oct 30, 2019 · 41 revisions

Kathará depends on Docker. If you already have it installed you can probably skip to step 2.

  1. Install Docker.
    • Some linux distos may have already docker in their default repos named docker.io or docker-ce so you can install it with sudo apt install docker.io or sudo apt install docker-ce
    • Otherwise, we suggest installing Docker from here with this simple instructions:
      • curl -fsSL https://get.docker.com -o get-docker.sh
      • sudo sh get-docker.sh
      • The script require root or sudo privileges to run. Therefore, you should carefully examine and audit the scripts before running them.
  2. (suggested) Install xterm terminal emulator (usually sudo apt install xterm), that is used by default.
    • You can also specify a different terminal emulator by using kathara settings command.
  3. Add Kathara public key to your keyring: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 21805A48E6CBBA6B991ABE76646193862B759810
  4. Add the kathara repo to your repos:
    • If you have Ubuntu: sudo add-apt-repository ppa:katharaframework/kathara
    • If you have other debian based distos:
      • Create a kathara.list file in /etc/apt/sources.list.d and put inside the following lines:
       deb http://ppa.launchpad.net/katharaframework/kathara/ubuntu eoan main 
       deb-src http://ppa.launchpad.net/katharaframework/kathara/ubuntu eoan main 
      
      You can do it by running the following commands:
      • echo "deb http://ppa.launchpad.net/katharaframework/kathara/ubuntu eoan main" | sudo tee /etc/apt/sources.list.d/kathara.list
      • echo "deb-src http://ppa.launchpad.net/katharaframework/kathara/ubuntu eoan main" | sudo tee -a /etc/apt/sources.list.d/kathara.list
  5. Update your apt cache by running sudo apt update
  6. Install Kathara running sudo apt install kathara
Clone this wiki locally