Skip to content

Instantly share code, notes, and snippets.

@safebuffer
Created September 7, 2021 10:00
Show Gist options
  • Save safebuffer/0e1e55f2e414ffbaba6afb97f9c3ab96 to your computer and use it in GitHub Desktop.
Save safebuffer/0e1e55f2e414ffbaba6afb97f9c3ab96 to your computer and use it in GitHub Desktop.
Install FortiClient 7.0 VPN on Kali Linux
curl -p --insecure "http://ftp.br.debian.org/debian/pool/main/liba/libappindicator/libappindicator1_0.4.92-8_amd64.deb" --output libappindicator1_0.4.92-8_amd64.deb
curl -p --insecure "http://ftp.br.debian.org/debian/pool/main/libi/libindicator/libindicator7_0.5.0-4_amd64.deb" --output libindicator7_0.5.0-4_amd64.deb
wget https://filestore.fortinet.com/forticlient/downloads/forticlient_vpn_7.0.0.0018_amd64.deb
sudo dpkg -i libindicator7_0.5.0-4_amd64.deb
sudo apt-get install libdbusmenu-gtk4
sudo apt-get install libgconf-2-4
sudo dpkg -i libappindicator1_0.4.92-8_amd64.deb
sudo dpkg -i forticlient_vpn_7.0.0.0018_amd64.deb
@rucete
Copy link

rucete commented Jul 18, 2024

According to the apt-key manual, with the deprecation the step 2:

Add the Fortinet GPG key to your system to ensure the authenticity of the packages:

sudo wget -O - https://repo.fortinet.com/repo/7.0/ubuntu/DEB-GPG-KEY | sudo apt-key add -

Should be something like this:

sudo wget -O - https://repo.fortinet.com/repo/7.0/ubuntu/DEB-GPG-KEY | sudo tee /etc/apt/trusted.gpg.d/DEB-GPG-KEY.asc

Next, I ran for the second time:

sudo apt update
sudo apt --fix-broken install    # Running this a second time is the important bit
dpkg -i forticlient_vpn_7.2.2.0753_amd64.deb

Which installed the dependencies and the package. This is what worked for me, with:

Kali Linux 6.8.11-amd64 #1 SMP PREEMPT_DYNAMIC Kali 6.8.11-1kali2 (2024-05-30) x86_64 GNU/Linux

I think this step is not necessary but I'll document it anyways. After the step 4, apt returned the following warning:

Warning: Conflicting distribution: https://repo.fortinet.com/repo/7.0/ubuntu xenial InRelease (expected xenial but got )

I fixed this warning following this answer and changing xenial by ./xenial in sources.list. I do not know if this particular change affected the process at all, I recommend you try skipping this modification of sources.list first and see if it gets your dependencies installed. My sources.list line was like this when I got it working:

deb [arch=amd64] https://repo.fortinet.com/repo/7.0/ubuntu ./xenial multiverse

If the previous steps still do not work for you, try that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment