Skip to content

Instantly share code, notes, and snippets.

@samuraee
Last active February 25, 2021 07:56
Show Gist options
  • Save samuraee/9c8e7aeee64c40b3711dd9b00b6a2a95 to your computer and use it in GitHub Desktop.
Save samuraee/9c8e7aeee64c40b3711dd9b00b6a2a95 to your computer and use it in GitHub Desktop.
Install kerio vpn client on RHEL 8 8 amd 64

Install kerio vpn client on RHAEL8 (Fedora 33 & Centos 8) amd 64

This tutorial show you how to install kerio vpnClient on rhel8 64bit. Kerio vpnClient does not have any .rpm official version!

  1. First of all download kerio-control-vpnclient-###-linux-amd64.deb from http://www.ryadel.com/en/kerio-control-vpn-client-all-versions-direct-download-links/ which contain many version of kerio-control-vpn-client or everywhere else.

  2. after download kerio-control-vpnclient-###-linux-amd64.deb we must convert it to .rpm package, to convert .deb to .rpm use alien which convert packages.

$ alien --to-rpm kerio-control-vpnclient-###-linux-amd64.deb
  1. After convert .deb to .rpm install .rpm which locate beside the original .deb file. while install kerio-control-vpnclient-###.x86_64.rpm normally, some confilcts with filesystem and chkconfig occures .
$ rpm -Uvh --force kerio-control-vpnclient-###.x86_64.rpm 

be consider using rpmrebuild is harmful beacause you can fix conficts but kerio dose not work after install

  1. Aftre install use $ /etc/init.d/kerio-kvc.service start if you have some error on library missing try to find them and check existing them on /usr/lib64 in my case i fixed promblems with this commands:
$ ln -s  /usr/lib/libktssl.so.1.0.0 /usr/lib64/libktssl.so.1.0.0
$ ln -s /usr/lib/libktcrypto.so.1.0.0 /usr/lib64/libktcrypto.so.1.0.0
$ ln -s /usr/lib/libktz.so.1 /usr/lib64/libktz.so.1
$ ln -s /usr/lib/libkvnet.so /usr/lib64/libkvnet.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment