Skip to content

Instantly share code, notes, and snippets.

@ndunks
Created May 12, 2018 18:35
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ndunks/b9e245927b8654c0d508808ab2a61cfe to your computer and use it in GitHub Desktop.
Save ndunks/b9e245927b8654c0d508808ab2a61cfe to your computer and use it in GitHub Desktop.
Install kimchi on ubuntu 18.04 bionic
#For Indonesian server
#locale fix
sudo locale-gen id_ID.UTF-8
#change miror
sudo sed -i_old 's/archive.ubuntu.com/kambing.ui.ac.id/' /etc/apt/sources.list
sudo apt update
#INSTALL WOK
#build depencies
sudo apt-get install gcc make autoconf automake gettext git pkg-config \
xsltproc logrotate
#runtime depencies
sudo apt-get install python-cherrypy3 python-cheetah python-pam \
python-m2crypto python-jsonschema \
python-psutil python-ldap python-lxml nginx \
openssl websockify gettext
cd ~
#Clone
git clone https://github.com/kimchi-project/wok.git
cd wok
./autogen.sh --system
make
sudo make install
#KIMCHI WOK PLUGIN
#build depencies
sudo apt-get install gcc make autoconf automake gettext git pkg-config xsltproc
#runtime depencies
sudo apt-get install python-configobj novnc python-libvirt \
libvirt-bin nfs-common qemu-kvm python-parted \
python-ethtool sosreport python-ipaddr \
python-lxml open-iscsi python-guestfs \
libguestfs-tools spice-html5 python-magic \
python-paramiko python-pil \
fonts-font-awesome geoip-database gettext \
nginx-light python-cheetah python-cherrypy3 \
python-ldap python-m2crypto python-pam
cd ~
#clone
git clone https://github.com/kimchi-project/kimchi.git
cd kimchi
./autogen.sh --system
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment