-
Notifications
You must be signed in to change notification settings - Fork 365
Setup script for Ubuntu 15.10
romu70 edited this page Feb 26, 2016
·
8 revisions
This script has been tested only on Ubuntu 15.10. It doesn't work on Ubuntu 14.04 (some dependencies are not satisfied), and as it uses systemd commands, it should work on Ubuntu 16.04 and newer.
#!/bin/bash
# Get the binary packages
wget http://kimchi-project.github.io/wok/downloads/wok-2.0.0-0.noarch.deb
wget http://kimchi-project.github.io/gingerbase/downloads/ginger-base-2.0.0-0.noarch.deb
wget http://kimchi-project.github.io/kimchi/downloads/kimchi-2.0.0-0.noarch.deb
# Do not try to install the stack on a single line, it doesn't work.
dpkg -i wok-*.deb
dpkg -i ginger-base-*.deb
dpkg -i kimchi-*.deb
# By default, Kimchi has a wrong dependency on libvirt, let's so fix it!
sed -i 's/libvirtd.service/libvirt-bin.service/g' /etc/systemd/system/wokd.service.d/kimchi.conf
# Reload the wok service
systemctl daemon-reload
systemctl restart wokd
Now, you can point your browser to https://localhost:8001 and you should see Kimchi up and running.