jmack5497 0 Posted 09/10/2016 Hello, I am trying to install the client on TAILS. I downloaded the 64-bit .deb package and tried this command to install it: Quote sudo dpkg -i airvpn_linux_x64_debian.deb Here is the result: Quote Selecting previously unselected package airvpn.(Reading database ... 143959 files and directories currently installed.)Preparing to unpack airvpn_linux_x64_debian.deb ...Unpacking airvpn (2.10) ...dpkg: dependency problems prevent configuration of airvpn: airvpn depends on mono-runtime; however: Package mono-runtime is not installed. airvpn depends on mono-utils; however: Package mono-utils is not installed. airvpn depends on libmono-system-runtime2.0-cil; however: Package libmono-system-runtime2.0-cil is not installed. airvpn depends on libmono-winforms2.0-cil; however: Package libmono-winforms2.0-cil is not installed. airvpn depends on libmono-corlib2.0-cil; however: Package libmono-corlib2.0-cil is not installed. airvpn depends on openvpn; however: Package openvpn is not installed. airvpn depends on stunnel4; however: Package stunnel4 is not installed.dpkg: error processing package airvpn (--install): dependency problems - leaving unconfiguredProcessing triggers for man-db (2.7.0.2-5) ...Processing triggers for gnome-menus (3.13.3-6) ...Processing triggers for desktop-file-utils (0.22-1) ...Processing triggers for mime-support (3.58) ...Errors were encountered while processing: airvpn I can't find a detailed guide to installing on TAILS, can you help me? Thank you. Quote Share this post Link to post
zhang888 1067 Posted 09/11/2016 You should install 2.11 on Tails, if your Tails version is >2.0 (Debian 8 based) Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post
jmack5497 0 Posted 09/19/2016 On 9/11/2016 at 12:47 PM, zhang888 said: You should install 2.11 on Tails, if your Tails version is >2.0 (Debian 8 based) Yes, I'm using Tails 2.5 But where can I find AirVPN client 2.11? I only see 2.10 or earlier on the download page. Quote Share this post Link to post
danielmarkov11 0 Posted 09/27/2016 Dependencies missing. if : sudo dpkg -i airvpn_linux_x64_debian.deb fails, then run :sudo apt-get -f installto install the dependencies, then : sudo dpkg -i airvpn_linux_x64_debian.deb It should be ok. Quote Share this post Link to post
LZ1 675 Posted 09/27/2016 On 9/19/2016 at 7:31 PM, jmack5497 said: On 9/11/2016 at 12:47 PM, zhang888 said: You should install 2.11 on Tails, if your Tails version is >2.0 (Debian 8 based) Yes, I'm using Tails 2.5 But where can I find AirVPN client 2.11? I only see 2.10 or earlier on the download page.Hello! It's under Other Versions>Experimental. 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
Omnomnom 0 Posted 09/27/2016 I have a question on this: I installed it (experimental version) on Tails but after the password prompt, the client doesn't start? Quote Share this post Link to post
lilghisa 0 Posted 04/19/2018 Hello I have the very same issue. I just installed latest Tails and tried to install Eddie. Even version 2.10. I get the OP's error and furthermore. Not even runningsudo apt-get -f installworked.Idk what to do Quote Share this post Link to post
Jonnny 0 Posted 07/24/2020 (edited) I tried all the various methods to get it installed in Tails and none seemed to work until I tried this one. apt-get -f install ./eddie-ui_2.18.9_linux_x64_debian.deb followed by: dpkg -i ./eddie-ui_2.18.9_linux_x64_debian.deb It even placed a menu item under Applications>Internet. Sadly, it doesn't run correctly. If started from the command line, there are a couple pages of exception errors, mostly "at System.Windows.Forms............. Bummer. Eddie-UI ErrorsFetching info... Edited 07/24/2020 by Jonnny Added error messages file Quote Share this post Link to post
OpenSourcerer 1467 Posted 07/30/2020 On 7/24/2020 at 7:35 PM, Jonnny said: Sadly, it doesn't run correctly. If started from the command line, there are a couple pages of exception errors, mostly "at System.Windows.Forms............. The main error is "connection refused". Maybe it's because apps that are not on a X.org whitelist are automatically forbidden to show GUI windows? Would make sense for Tails, but I don't know myself. Quote Hide OpenSourcerer's signature Hide all signatures NOT AN AIRVPN TEAM MEMBER. USE TICKETS FOR PROFESSIONAL SUPPORT. LZ1's New User Guide to AirVPN « Plenty of stuff for advanced users, too! Want to contact me directly? All relevant methods are on my About me page. Share this post Link to post
Jonnny 0 Posted 08/03/2020 Thanks. Fixed the disconnect problem. Now I have another: ..... ValueError: too many values to unpack (expected 9) N: Download is performed unsandboxed as root as file '/home/amnesia/Persistent/Tor Broswer/eddie-ui_2.18.9_linux_x64_debian.deb' couldn't be accesses by user '_apt'. - pkgAcquire::Run (13: Permission denied) E: Sub-process /usr/local/sbin/tails-additional--software apt-pre returned an error code (1) E: Failure running script /usr/local/sbin/tails-additional-software apt-pre Quote Share this post Link to post
OpenSourcerer 1467 Posted 08/04/2020 _apt is the APT user in all Debian-like distros. It's got write access to /var/lib/apt/ and /var/cache/apt/ in normal conditions, and nowhere else. /var/cache/apt/archives/ is where apt, in normal conditions, is downloading packages to, by the way, so something, maybe the config of Tails itself, makes apt download packages as user amnesia into its home, logically unreachable for _apt. Or you did something. You can fix this by moving the package to /var/cache/apt/archives, or allowing others to read /home/amnesia and the file: $ sudo chmod o+r /home/amnesia "/home/amnesia/Persistent/Tor Browser/eddie-ui_2.18.9_linux_x64_debian.deb" . Quote Hide OpenSourcerer's signature Hide all signatures NOT AN AIRVPN TEAM MEMBER. USE TICKETS FOR PROFESSIONAL SUPPORT. LZ1's New User Guide to AirVPN « Plenty of stuff for advanced users, too! Want to contact me directly? All relevant methods are on my About me page. Share this post Link to post
Jonnny 0 Posted 08/07/2020 Okay, thank you for the input. I will try a workaround and see what happens. Quote Share this post Link to post