1

I am trying to install vpnc using:

sudo apt-get install vpnc network-manager-vpnc network-manager-vpnc-gui

I get an error:

unable to locate package network-manager-vpnc-gui

I'm not sure what to do. Do I need to add something to my /etc/apt/sources.list? Any help is great!

wjandrea
  • 14,504
Kdrumz
  • 447

1 Answers1

3

The correct package candidates for the application vpnc are network-manager-vpnc & vpnc. And from the question it also seemed like you need a gui so, the package for that will be network-manager-vpnc-gnome.

To install your desired application, type in the command:

sudo apt-get update; sudo apt-get install vpnc network-manager-vpnc network-manager-vpnc-gnome
Raphael
  • 8,135