-
Notifications
You must be signed in to change notification settings - Fork 365
Setup script for Ubuntu 15.10
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
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
dpkg -i wok-.deb dpkg -i ginger-base-.deb dpkg -i kimchi-*.deb
sed -i 's/libvirtd.service/libvirt-bin.service/g' /etc/systemd/system/wokd.service.d/kimchi.conf
systemctl daemon-reload systemctl restart wokd`
Now, you can point your browser to https://localhost:8001 and you should see Kimchi up and running.