我正在尝试安装VMWare播放器。我已经在~/下载中下载了.bundle文件。要安装,我切换到根帐户,将目录改为~/下载并运行apt-get install VMware-Player-15.0.2-10952284.x86_64.bundle
。但我得到了:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package VMware-Player-15.0.2-10952284.x86_64.bundle
E: Couldn't find any package by glob 'VMware-Player-15.0.2-10952284.x86_64.bundle'
E: Couldn't find any package by regex 'VMware-Player-15.0.2-10952284.x86_64.bundle'
如何成功安装VMWare?
发布于 2019-01-05 20:22:12
VMware包不能与apt-get
一起安装。这是它自己的独立安装程序包。
在包上运行chmod +x
,然后使用sudo ./VMware-Player-*.bundle
执行它
这是运行VMware安装程序的唯一方法,因为它不是一个与apt
兼容的包,而是自己独立运行的安装包。
发布于 2019-01-05 20:17:34
您需要给予安装程序执行和运行它的权限。
chmod +x Vmware-Player-15.0.2-10952284.x86_64.bundle
现在由你来负责。
./Vmware-Player-15.0.2-10952284.x86_64.bundle
https://askubuntu.com/questions/1107256
复制相似问题