Skip to content

Debian based system

Zsolt Ero edited this page Apr 10, 2014 · 2 revisions

How to setup the make-snake dev environment on a Debian based system, without using the Kano DevBox.

Install kano-debber

Download and extract the latest version

mkdir -p ~/kano-debber && cd ~/kano-debber
wget -qO- https://api.github.com/repos/KanoComputing/kano-debber/tarball/master | tar --strip-components 1 -xz

Prepare the system

Then you will need to run the two scripts to prepare your system.

  • Dependencies and needed programs: sudo ./prepare-system.sh
  • Necessary deb packages: sudo ./prepare-deb.py
  • Once those have been run it is time to get the repos that are available: sudo ./kano-debber.py -g all -dbi (this command will pull down all the repos available at the moment.)

Start developing

Now your system is ready for the kano packages.

  • Example: to download, build and install all repos
    sudo ./kano-debber.py -g all -dbi
  • Example: build and install the already downloaded repo "make-snake" and show the log files
    sudo ./kano-debber.py -n snake -bi -v

Guide by @alexaverill

Clone this wiki locally