因此,我正在尝试安装一个旧版本的Teamviewer,它不要求我每次都在主机上接受。所以使用之前的版本,11.但是在尝试安装时有一些问题:
$ sudo dpkg -i teamviewer_11.0.67687_amd64.deb
Selecting previously unselected package teamviewer.
(Reading database ... 222321 files and directories currently installed.)
Preparing to unpack teamviewer_11.0.67687_amd64.deb ...
Unpacking teamviewer (11.0.67687) ...
dpkg: dependency problems prevent configuration of teamviewer:
teamviewer depends on lib32asound2; however:
Package lib32asound2 is not installed.
teamviewer depends on ia32-libs; however:
Package ia32-libs is not installed.
dpkg: error processing package teamviewer (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
teamviewer
$因此,当试图自己安装依赖项时:
$ sudo apt-get install lib32asound2
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package lib32asound2 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 'lib32asound2' has no installation candidate
$我在googled上搜索了一下,并被告知做$apt -f安装,我做了,但没有任何帮助。所以我们起来了?甚至安装新版本的teamviewer也不起作用:
$ sudo apt-get install teamviewer
Reading package lists... Done
Building dependency tree
Reading state information... Done
teamviewer is already the newest version (11.0.67687).
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
teamviewer : Depends: lib32asound2 but it is not installable
Depends: ia32-libs but it is not installable
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
$但是我刚做了这个..。-.-
发布于 2018-01-15 23:36:04
xxxx depends on xxxx; however:
Package xxxx is not installed.这通常意味着依赖关系不再可用。如果你谷歌ia32-libs和lib32asound2,你会发现讨论说他们被删除了。
回到您的问题,您可以将远程计算机设置为无人值守访问,这样每次都不需要手动接受连接。
https://stackoverflow.com/questions/42838288
复制相似问题