0

When I try to install vpn I get this:

root@root:~# apt-get install network-manager-openvpn-gnome
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package network-manager-openvpn-gnome is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'network-manager-openvpn-gnome' has no installation candidate
root@root:~#
edwinksl
  • 23,789

1 Answers1

1

The package network-manager-openvpn-gnome is in Universe repository of Ubuntu.

Enable this repository first.

Then install using

sudo apt-get install network-manager-openvpn-gnome

Extra suggestion, don't be root. Use sudo whenever possible.

Anwar
  • 76,649