3

Someone managed to get openfortivpn installed and working on a Raspberry PI with vanilla Raspian image? It seems it should be supported but all I get with

apt-get install openfortivpn

is that "the package has no versions available but is cited by another package"

The raspberry device is PI3 B+

and the uname -a command report

Linux raspberrypi 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l GNU/Linux

The available package would be 1.8.1 but it has unsatisfied dependency libc6 >= 2.28 while the Raspian has 2.24-11+deb9u4

I'm thinking to build from sources but having an official version would be highly preferred

-- UPDATE -- Thanks to answers below I've double checked and found that I'm still using Raspian 9 instead of 10 I'm now upgrading to 10 to check if this solve the issue

-- UPDATE 2 -- Ok, upgrading to Raspian 10 solved the issue.

Thanks to all

2 Answers2

1

You didn't mention the Raspbian version, however, I imagine it's the latest one and if you are using any version before Buster, suggest upgrade to Buster.

However, follow procedure:

wget http://raspbian.raspberrypi.org/raspbian/pool/main/o/openfortivpn/openfortivpn_1.10.0-1_armhf.deb  

dpkg -i openfortivpn_1.10.0-1_armhf.deb  
M. Rostami
  • 4,323
  • 1
  • 17
  • 36
1

The command you cited in your answer should work. Make sure your Internet connection works fine and sudo apt-get update completes without errors.

Dmitry Grigoryev
  • 27,928
  • 6
  • 53
  • 144