I am unable to install VPN unlimited on Ubuntu 18.04 despite following the instructions on the official website (the instructions are quite outdated as they pertain to Ubuntu 14.04). I am currently stuck as I am getting messages such as:
user $ sudo dpkg -i vpn-unlimited_4.22-amd64_001_release_STANDALONE.deb
Selecting previously unselected package vpn-unlimited.
(Reading database ... 216364 files and directories currently installed.)
Preparing to unpack vpn-unlimited_4.22-amd64_001_release_STANDALONE.deb ...
Unpacking vpn-unlimited (4.22) ...
dpkg: dependency problems prevent configuration of vpn-unlimited:
vpn-unlimited depends on libcurl3 (>= 7.22.0); however:
Package libcurl3 is not installed.
vpn-unlimited depends on iproute; however:
Package iproute is not installed.
dpkg: error processing package vpn-unlimited (--install):
dependency problems - leaving unconfigured
Processing triggers for systemd (237-3ubuntu10) ...
Processing triggers for ureadahead (0.100.0-20) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.18.04.1) ...
Processing triggers for gnome-menus (3.13.3-11ubuntu1) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Errors were encountered while processing:
vpn-unlimited
sudo apt-get install libcurl3 iproute
). Then try installing the vpn-unlimited package again. – user535733 Jun 30 '18 at 00:05dpkg -i
command to try and install this app. The problem is that the app isn't currently compatible with 18.04 for the reasons that I speak of earlier. – heynnema Jul 03 '18 at 01:08dpkg
doesn't resolve dependencies but that a subsequentapt-get install -f
will. Whether those are satisfiable is a different matter (and we couldn't tell without knowledge of the result because OP may have configured suitable package repositories). – David Foerster Jul 03 '18 at 10:49