Mobian can't see OpenVPN is installed.
#1
I have something I am trying to figure out and haven't been able to. I have a paid VPN service that uses the OpenVPN protocol. I have used it on the Pinephone on Arch and Manjaro but for some reason the eOVPN app cant see Open VPN is installed and up to date in Mobian and won't connect. See attached pictures. See the bottom line in the picture. Left Mobian-Right Arch. Anyone suggest anything?


Attached Files Thumbnail(s)
   
  Reply
#2
(03-10-2021, 01:15 PM)C0ffeeFreak Wrote: I have something I am trying to figure out and haven't been able to. I have a paid VPN service that uses the OpenVPN protocol. I have used it on the Pinephone on Arch and Manjaro but for some reason the eOVPN app cant see Open VPN is installed and up to date in Mobian and won't connect. See attached pictures. See the bottom line in the picture. Left Mobian-Right Arch. Anyone suggest anything?

Hmm, I can't say I ever used the gui eOVPN. Have you tried setting up openVPN through the commandline interface instead? Just try it with one servers openvpn configuration, to rule out if its the app or something else.

Sorry can't be anymore useful :/
  Reply
#3
(03-10-2021, 05:06 PM)theD0ctor Wrote:
(03-10-2021, 01:15 PM)C0ffeeFreak Wrote: I have something I am trying to figure out and haven't been able to. I have a paid VPN service that uses the OpenVPN protocol. I have used it on the Pinephone on Arch and Manjaro but for some reason the eOVPN app cant see Open VPN is installed and up to date in Mobian and won't connect. See attached pictures. See the bottom line in the picture. Left Mobian-Right Arch. Anyone suggest anything?

Hmm, I can't say I ever used the gui eOVPN. Have you tried setting up openVPN through the command line interface instead? Just try it with one servers openvpn configuration, to rule out if its the app or something else.

Sorry can't be anymore useful :/
Thanks for the suggestion anyway. Yes it works through the command line but that's not a practical solution without being attached to a monitor, keyboard. When I need a a VPN I am usually traveling. Needs to work through the GUI in the long term but for now I am using the Proton VPN GUI which uses another protocol. It's the free version of their VPN and slow but a temporary fix till I can figure out.
  Reply
#4
Native or flatpak? The readme mentions the '--debug [LEVEL]' command line option or an environment variable to set, which is easy for a native install but I don't know how it works for flatpak.
https://github.com/jkotra/eOVPN
The code getting the version is here:
https://github.com/jkotra/eOVPN/blob/mas...openvpn.py
See get_version(self) at line 172. It's trying to run 'openvpn --version' and find the version in the output using a regular expression. Is it unable to run the command (no openvpn in the path, sandboxing preventing it running, something else?) or does the response not contain a matching string? Or is there some other problem like a missing python library that's getting hidden by error trapping?
  Reply
#5
(03-11-2021, 06:56 AM)wibble Wrote: Native or flatpak? The readme mentions the '--debug [LEVEL]' command line option or an environment variable to set, which is easy for a native install but I don't know how it works for flatpak.
https://github.com/jkotra/eOVPN
The code getting the version is here:
https://github.com/jkotra/eOVPN/blob/mas...openvpn.py
See get_version(self) at line 172. It's trying to run 'openvpn --version' and find the version in the output using a regular expression. Is it unable to run the command (no openvpn in the path, sandboxing preventing it running, something else?) or does the response not contain a matching string? Or is there some other problem like a missing python library that's getting hidden by error trapping?
Thanks, I have been through all the debugging. No joy. I gave up.  I purchased a subscription to ProtonVPN for a year to use on the Pinephone when I am running Mobian. That app is fairly new. I will pass that bug on to the developer and let him see if he can figure it out. Somehow the file system must be different although I couldn't find it or something is missing in Mobian. There are files for OpenVpn everywhere throughout the system.
  Reply
#6
Hi @C0ffeeFreak 

from v0.20, eOVPN supports NetworkManager. for this to work, make sure you are using NetworkManager and has openvpn plugin installed.

Code:
sudo apt install network-manager-openvpn
sudo apt install network-manager-openvpn-gnome

then install eOVPN flaptak with --user option.

Code:
flatpak install --user flathub com.github.jkotra.eovpn
  Reply
#7
(03-11-2021, 08:36 PM)C0ffeeFreak Wrote:
(03-11-2021, 06:56 AM)wibble Wrote: Native or flatpak? The readme mentions the '--debug [LEVEL]' command line option or an environment variable to set, which is easy for a native install but I don't know how it works for flatpak.
https://github.com/jkotra/eOVPN
The code getting the version is here:
https://github.com/jkotra/eOVPN/blob/mas...openvpn.py
See get_version(self) at line 172. It's trying to run 'openvpn --version' and find the version in the output using a regular expression. Is it unable to run the command (no openvpn in the path, sandboxing preventing it running, something else?) or does the response not contain a matching string? Or is there some other problem like a missing python library that's getting hidden by error trapping?
Thanks, I have been through all the debugging. No joy. I gave up.  I purchased a subscription to ProtonVPN for a year to use on the Pinephone when I am running Mobian. That app is fairly new. I will pass that bug on to the developer and let him see if he can figure it out. Somehow the file system must be different although I couldn't find it or something is missing in Mobian. There are files for OpenVpn everywhere throughout the system.

C0ffeeFreak: Did you install the ProtonVPN app? I tried, but my ethernet connection broke just after the repository install. I didn't even get to the main app install. I tried to disable the kill switch, but it did not recognize the command since the main app was not installed yet. I deleted everything and my ethernet connection came back up. I have the new Bookworm edition of Mobian, but I have tried it on the previous version with the same results. Thanks for any advice.
  Reply
#8
(10-03-2021, 04:10 PM)county93 Wrote:
(03-11-2021, 08:36 PM)C0ffeeFreak Wrote:
(03-11-2021, 06:56 AM)wibble Wrote: Native or flatpak? The readme mentions the '--debug [LEVEL]' command line option or an environment variable to set, which is easy for a native install but I don't know how it works for flatpak.
https://github.com/jkotra/eOVPN
The code getting the version is here:
https://github.com/jkotra/eOVPN/blob/mas...openvpn.py
See get_version(self) at line 172. It's trying to run 'openvpn --version' and find the version in the output using a regular expression. Is it unable to run the command (no openvpn in the path, sandboxing preventing it running, something else?) or does the response not contain a matching string? Or is there some other problem like a missing python library that's getting hidden by error trapping?
Thanks, I have been through all the debugging. No joy. I gave up.  I purchased a subscription to ProtonVPN for a year to use on the Pinephone when I am running Mobian. That app is fairly new. I will pass that bug on to the developer and let him see if he can figure it out. Somehow the file system must be different although I couldn't find it or something is missing in Mobian. There are files for OpenVpn everywhere throughout the system.

C0ffeeFreak: Did you install the ProtonVPN app? I tried, but my ethernet connection broke just after the repository install. I didn't even get to the main app install. I tried to disable the kill switch, but it did not recognize the command since the main app was not installed yet. I deleted everything and my ethernet connection came back up. I have the new Bookworm edition of Mobian, but I have tried it on the previous version with the same results. Thanks for any advice.

Yes, I installed the app with no problems. It's been a long time ago though.
  Reply
#9
(10-05-2021, 08:29 PM)C0ffeeFreak Wrote:
(10-03-2021, 04:10 PM)county93 Wrote:
(03-11-2021, 08:36 PM)C0ffeeFreak Wrote:
(03-11-2021, 06:56 AM)wibble Wrote: Native or flatpak? The readme mentions the '--debug [LEVEL]' command line option or an environment variable to set, which is easy for a native install but I don't know how it works for flatpak.
https://github.com/jkotra/eOVPN
The code getting the version is here:
https://github.com/jkotra/eOVPN/blob/mas...openvpn.py
See get_version(self) at line 172. It's trying to run 'openvpn --version' and find the version in the output using a regular expression. Is it unable to run the command (no openvpn in the path, sandboxing preventing it running, something else?) or does the response not contain a matching string? Or is there some other problem like a missing python library that's getting hidden by error trapping?
Thanks, I have been through all the debugging. No joy. I gave up.  I purchased a subscription to ProtonVPN for a year to use on the Pinephone when I am running Mobian. That app is fairly new. I will pass that bug on to the developer and let him see if he can figure it out. Somehow the file system must be different although I couldn't find it or something is missing in Mobian. There are files for OpenVpn everywhere throughout the system.

C0ffeeFreak: Did you install the ProtonVPN app? I tried, but my ethernet connection broke just after the repository install. I didn't even get to the main app install. I tried to disable the kill switch, but it did not recognize the command since the main app was not installed yet. I deleted everything and my ethernet connection came back up. I have the new Bookworm edition of Mobian, but I have tried it on the previous version with the same results. Thanks for any advice.

Yes, I installed the app with no problems. It's been a long time ago though.

Ok. Thanks for the reply.
  Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  bookworm vs trixie discussion for mobian in pinephone regular. zetabeta 44 11,388 02-13-2025, 01:47 PM
Last Post: anonymous
  mobian phosh on screen keyboard not popping up for Chromium/Electron apps grump_fiddle_reinstall 1 261 01-15-2025, 08:08 PM
Last Post: Kevin Kofler
  How to use QR codes on Mobian Sid(unstable) Pinephone Pro biketool 1 287 01-02-2025, 12:47 PM
Last Post: zetabeta
  Upgrade to Mobian (Trixie) Staging biketool 13 1,379 12-29-2024, 10:35 AM
Last Post: biketool
  Short Guide to Using OpenVPN client GUI and .ovpn config file on PP biketool 0 290 12-16-2024, 02:07 PM
Last Post: biketool
  Mobian Bulleyes aberrio 0 302 12-16-2024, 08:27 AM
Last Post: aberrio
  Mobian, Suspend, and Audio Playback biketool 0 349 12-11-2024, 12:56 AM
Last Post: biketool
  how to update mobian over tor vusra 14 10,223 12-04-2024, 07:01 PM
Last Post: vusra
  atinout binaries for mobian/debian? NeutralGrey 4 1,862 10-31-2024, 04:16 AM
Last Post: astylethargic
  Mobian-Kicksecure? 3460p 0 1,116 05-26-2024, 02:09 PM
Last Post: 3460p

Forum Jump:


Users browsing this thread: 1 Guest(s)