无法在 ubuntu 12.04 64 位中配置 kerio-control-vpnclient

Ema*_*man 6 dpkg

我在 Ubuntu 12.04 64bit 中配置 kerio-control-vpnclient 时遇到问题

这个命令必须对我有用。输出说它没有安装。但它已安装:

# dpkg-reconfigure kerio-control-vpnclient
Package `kerio-control-vpnclient' is not installed and no info is available.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
/usr/sbin/dpkg-reconfigure: kerio-control-vpnclient is not installed
Run Code Online (Sandbox Code Playgroud)

我第一次安装 kerio-control-vpnclient 时,它会启动配置向导并进行设置。但在那之后,我无法使用它提供的重新配置命令再次配置它。

我仍然可以 start stop restart kerio 并且它在我的系统上,但是 dpkg-reconfigure 找不到它。我认为这是因为64位系统。我尝试使用以下命令添加 i386 arch:

sudo sh -c "echo 'foreign-architecture i386' > /etc/dpkg/dpkg.cfg.d/multiarch"
Run Code Online (Sandbox Code Playgroud)

但还是什么都没有。

Avi*_*Raj 12

正如op所说,dpkg --get-selections | grep kerio命令的输出显示,

kerio-control-vpnclient:i386
Run Code Online (Sandbox Code Playgroud)

所以重新配置上面的包会起作用,

sudo dpkg-reconfigure kerio-control-vpnclient:i386
Run Code Online (Sandbox Code Playgroud)