airvpneasy 0 Posted ... Trying to install it using the .deb package gives dependencies error. Using the portable version asks for "gksu" package. But afaik gksu has been removed from Ubuntu 18.04. Anyone who has got it to run? Quote Share this post Link to post
corrado 100 Posted ... You could use a hack to allow root access to the xserver - open up a terminal and type (as your normal user): "xhost si:localuser:root". From the same terminal you should then be able to run airvpn via "sudo airvpn". There must be a better solution than this, though. Quote Share this post Link to post
bm9vbmUK 7 Posted ... Same here. Did a fresh install of 18.04 today and now can't install Eddie. Quote Share this post Link to post
LZ1 672 Posted ... Hello! Which release of Eddie is this? The Stable or Beta? Quote Hide LZ1's signature Hide all signatures Hi there, are you new to AirVPN? Many of your questions are already answered in this guide. You may also read the Eddie Android FAQ. Moderators do not speak on behalf of AirVPN. Only the Official Staff account does. Please also do not run Tor Exit Servers behind AirVPN, thank you. Did you make a guide or how-to for something? Then contact me to get it listed in my new user guide's Guides Section, so that the community can find it more easily. Share this post Link to post
corrado 100 Posted ... Try installing with: "sudo dpkg -i --ignore-depends=gksu /path/to/eddie.deb". This should allow you to install eddie even though the gksu dependency cannot be satisfied on Ubuntu 18.04. To start Eddie without gksu see my first answer. You can find details about this method in this post on ubuntu forums for example. As far as I can see using the experimental version of eddie is currently no solution as it, too, depends on gksu. Quote Share this post Link to post
greerd 5 Posted ... Here's a Linux Mint forum link to a discussion about Ubuntu 18.04 dropping gksu and migrating toward pkexec which will follow into Mint19.From forum member xenopeek in the discussion:gksu hasn't been maintained for many years and was only left to rot in the Ubuntu repository because some programs unfortunately still depended on it. Such programs have been migrating to PolKit's pkexec. Your examples of Synaptic, GParted and Update Manager all use pkexec now (if they didn't already before). PolKit allows for finer level of control than was possible with gksu. No longer does the entire program need to run as root.In short; removing gksu doesn't meaningfully affect users of Ubuntu or Linux Mint, aside from making their systems safer.As for editing system configuration files: aside from pkexec, gvfs now has builtin support for admin:// paths that automatically invoke PolKit as needed. So you can open Nautilus and press Ctrl+L and type the path admin:///etc/default to open the /etc/default directory with required elevated privileges. Opening a file from there with Gedit also opens that file with required elevated privileges. From the command line you can also use the admin:// paths so you could do gedit admin:///etc/default/grub to directly open /etc/default/grub for editing with Gedit. I guess that admin:// paths should also work with Linux Mint's developed software on Linux Mint 19 but I haven't tested that yet.So perhaps dpkg -i admin:///path/to/eddie.deb will work? Quote Share this post Link to post
kcr1spy 0 Posted ... I could not get dpkg -i admin:///path/to/eddie.deb to work for me. I also couldnt install with --ignore-depends=gksu either because it requires mono-runtime to continue install and that also needs gksu to install. Im fairly illiterate with ubuntu. If anyone solves this could you explain for the simple minded? Thanks Quote Share this post Link to post
corrado 100 Posted ... Alright, a complete albeit hacky solution would look like this:If you have already tried to unsuccessfully install airpvn, first run: sudo apt --fix-broken install Then install all dependencies (except gksu) manually: sudo apt install libc6 mono-runtime mono-utils libmono-system-core4.0-cil libmono-system-windows-forms4.0-cil openvpn stunnel4 curl Finally, install airvpn with dpkg: sudo dpkg -i --ignore-depends=gksu /path/to/eddie.deb Now, even though airvpn is installed, you cannot start eddie because this would require the gksu-package which is not available anymore on ubuntu 18.04. Simple "sudo" does not work as the root user by default is not allowed to run graphical applications. A workaround is to allow the root user to access the xserver - be aware that this is not an ideal solution for security reasons, though. The following command will allow the root user to run graphical applications: sudo xhost si:localuser:root You must run the xhost-command for each new user session. You might want to automate that with a startup script for example. Anyway, you should now be able to run airvpn with sudo: sudo airvpn I think that has to be urgently addressed by eddie developers, though. Gksu has long been deprecated in favor of more secure and flexible solutions based on policykit. 2 drohm and HeartTek reacted to this Quote Share this post Link to post
drohm 1 Posted ... Alright, a complete albeit hacky solution would look like this:If you have already tried to unsuccessfully install airpvn, first run: sudo apt --fix-broken install Then install all dependencies (except gksu) manually: sudo apt install libc6 mono-runtime mono-utils libmono-system-core4.0-cil libmono-system-windows-forms4.0-cil openvpn stunnel4 curl Finally, install airvpn with dpkg: sudo dpkg -i --ignore-depends=gksu /path/to/eddie.deb Now, even though airvpn is installed, you cannot start eddie because this would require the gksu-package which is not available anymore on ubuntu 18.04. Simple "sudo" does not work as the root user by default is not allowed to run graphical applications. A workaround is to allow the root user to access the xserver - be aware that this is not an ideal solution for security reasons, though. The following command will allow the root user to run graphical applications: sudo xhost si:localuser:root You must run the xhost-command for each new user session. You might want to automate that with a startup script for example. Anyway, you should now be able to run airvpn with sudo: sudo airvpn I think that has to be urgently addressed by eddie developers, though. Gksu has long been deprecated in favor of more secure and flexible solutions based on policykit. Agreed, I'm dead in the water until this gets fixed. Quote Share this post Link to post
corrado 100 Posted ... Just had a closer look at Eddie's changelog (should have done that earlier). Good news: Versions >= 2.14 do not need gksu anymore and have instead implemented authentication via policykit: Bravo! Hence, please ignore my previous comment, I only tested the stable release. In a nutshell: Users of recent Ubuntu releases including 18.04 should be fine as long as they use Eddie's beta release(s). 1 tethtibis reacted to this Quote Share this post Link to post
eesau 2 Posted ... Just had a closer look at Eddie's changelog (should have done that earlier). Good news: Versions >= 2.14 do not need gksu anymore and have instead implemented authentication via policykit: Bravo! Hence, please ignore my previous comment, I only tested the stable release. In a nutshell: Users of recent Ubuntu releases including 18.04 should be fine as long as they use Eddie's beta release(s). Just tried beta on 18.04, didn't work. It required gksu also. Quote Share this post Link to post
corrado 100 Posted ... Yeah package officially still depends on gksu, but actually works without gksu installed. See my previous post for how to install eddie without the gksu dependency. Essentially, it boils down to installing all dependencies except gksu manually and then install via dpkg: sudo dpkg -i --ignore-depends=gksu /path/to/eddie.deb 1 tethtibis reacted to this Quote Share this post Link to post
eesau 2 Posted ... Yeah package officially still depends on gksu, but actually works without gksu installed. See my previous post for how to install eddie without the gksu dependency. Essentially, it boils down to installing all dependencies except gksu manually and then install via dpkg: sudo dpkg -i --ignore-depends=gksu /path/to/eddie.deb Thanks. It works now, no need for any root things or anything. EDIT: Well... Yes, AirVPN works, but now i have a broken package (airvpn) in my system and i can't install anything or update the system in the terminal. If i want to fix the problem, it removes AirVPN, so... Quote Share this post Link to post
corrado 100 Posted ... Use "sudo apt --fix-broken install" - and cleanly install eddie again following the method I described above. Quote Share this post Link to post
whiskey_76 6 Posted ... Trying to install it using the .deb package gives dependencies error. Using the portable version asks for "gksu" package. But afaik gksu has been removed from Ubuntu 18.04. Anyone who has got it to run?Also, you can always use the portable version of the client that runs from an exectuable file as well. Look for that in the downloads for the client as also until you get the normal application straightened out. Quote Share this post Link to post
eesau 2 Posted ... Use "sudo apt --fix-broken install" - and cleanly install eddie again following the method I described above. That's exactly what i did. Tried it a few times now, but it always ended up with the broken package. Portable version doesn't work either, it gave some errors when launched. I guess i'll have to wait for the next beta or something. EDIT: Solved the problem by installing gksu and libgksu 2-0 for 17.10, seems to work ok. No broken packages in the system either. https://www.ubuntuupdates.org/package/core/artful/universe/base/gksuhttps://ubuntu.pkgs.org/17.10/ubuntu-universe-amd64/libgksu2-0_2.0.13~pre1-9ubuntu2_amd64.deb.html Quote Share this post Link to post
HeldImFeld 0 Posted ... A good Workaround you can find here:https://askubuntu.com/questions/1030054/how-to-install-an-application-that-requires-gksu-package-on-ubuntu-18-04---- Warning: do not execute the commands below if unsure! Add artful repositories to the system: cat <<EOF | sudo tee /etc/apt/sources.list.d/artful.listdeb http://archive.ubuntu.com/ubuntu/ artful main universedeb-src http://archive.ubuntu.com/ubuntu/ artful main universeEOF Update package cache sudo apt-get update Install necessary build tools sudo apt-get install build-essential debhelper dpkg-dev Install build-dependencies for gksu and compile its source package sudo apt-get build-dep gksusudo apt-get source --compile gksu Install self-compiled gksu packages: sudo apt-get install ./*gksu*.deb Test gksu (should work on Xorg-sessions) gksu-properties # check that it has "Authentication mode" to "sudo"gksu dategksudo date Remove artful repository from system for safety sudo rm /etc/apt/sources.list.d/artful.listsudo apt-get update Note: After installation the following packages will be marked as obsolete (locally-installed): gksu, libgksu2-0, libgksu2-dev. But they will work as expected.--- Quote Share this post Link to post
RedG 0 Posted ... It's the same for me on my system under Ubuntu 18.0.4 - I think I am too going to wait until a better solution for eddie comes along like a new release that works under the new Ubuntu. Quote Share this post Link to post
eesau 2 Posted ... It's the same for me on my system under Ubuntu 18.0.4 - I think I am too going to wait until a better solution for eddie comes along like a new release that works under the new Ubuntu. New beta is out, seems to work just fine. 1 RedG reacted to this Quote Share this post Link to post
corrado 100 Posted ... Wow, that has been addressed fast. Thanks, AirVPN! Quote Share this post Link to post
Mister_Craft 0 Posted ... Worked flawlessly with no need to run the "sudo xhost si:localuser:root" command. Thanks! Quote Share this post Link to post
metalingus 0 Posted ... Can confirm beta client installs on Debian Buster without issue Quote Share this post Link to post
razzmudge 0 Posted ... Where on the airvpn website can I find the 2.14 beta? Quote Share this post Link to post
eesau 2 Posted ... Where on the airvpn website can I find the 2.14 beta? It's in "Other versions" in Experimental. 1 razzmudge reacted to this Quote Share this post Link to post