我正在试用 Ubuntu 的 Live CD,并且已从 USB 启动。我想检查它是否适用于我的 VPN。我已经安装了网络管理器,但当我转到“配置 VPN”时,我只能看到 PPTP 选项,而我需要添加 OpenVPN 类型的 VPN。
按照我的 VPN 上的说明文档我尝试使用以下命令安装 openvpn:
sudo apt-get install network-manager-openvpn
但我得到的答复是:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package network-manager-openvpn 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' has no installation candidate
知道问题是什么吗?
答案1
network-manager-openvpn
在 universe 中,默认情况下不包含在 live 映像中。但您仍然可以在 live 环境中临时安装它。假设您使用的是 12.10,请将此行添加到您的/etc/apt/sources.list
:
deb http://archive.ubuntu.com/ubuntu quantal universe
然后运行sudo apt-get update
,并重试sudo apt-get install network-manager-openvpn
。
我不确定安装后是否需要重新启动网络管理器。如果需要,sudo restart network-manager
应该可以。