使用虚拟机的 Ubuntu 双屏 - AMD GPU

使用虚拟机的 Ubuntu 双屏 - AMD GPU

我一直在网上搜索并阅读有关如何使我的 ubuntu VM 双屏(x86_64)的教程等。我首先尝试运行以下命令:

sudo aticonfig --initial -f

这给了我以下输出:

sudo: aitconfig: command not found

然后,我用 Google 搜索输出并按照这些说明将我的 ATI 驱动程序安装到我的 ubuntu 上。

wget http://www2.ati.com/drivers/linux/ati-driver-installer-11-5-x86.x86_64.run
sudo sh ati-driver-installer-11-5-x86.x86_64.run --buildpkg Ubuntu/natty
sudo dpkg -i *.deb
sudo apt-get -f install
sudo aticonfig -f --initial --adapter=all
sudo reboot

一切运行良好,直到我输入 sudo apt-get -f install 它给了我以下输出:

sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 25 not upgraded.
3 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up fglrx (2:8.850-0ubuntu1) ...
update-alternatives: error: alternative link /usr/bin/aticonfig is already managed     by x86_64-linux-gnu_gl_conf.
dpkg: error processing fglrx (--configure):
subprocess installed post-installation script returned error exit status 2
dpkg: dependency problems prevent configuration of fglrx-amdcccle:
fglrx-amdcccle depends on fglrx; however:
Package fglrx is not configured yet.
dpkg: error processing fglrx-amdcccle (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of fglrx-dev:
fglrx-dev depends on fglrx; however:
Package fglrx is not configured yet.
dpkg: error processing fglrx-dev (--configure):
dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error     from a previous failure.
No apport report written because the error message indicates its a followup error     from a previous failure.
Errors were encountered while processing:
fglrx
fglrx-amdcccle
fglrx-dev
E: Sub-process /usr/bin/dpkg returned an error code (1)

此时,我不知道该做什么,因为正在运行:

gksudo amdcccle

顺便说一下,我已打开 3D 加速。以下是我的 VM 的 GPU

lspci | grep VGA
00:02.0 VGA compatible controller: InnoTek Systemberatung GmbH VirtualBox Graphics     Adapter

任何关于如何使用 Ubuntu 使我的虚拟机双屏显示的帮助都将非常有帮助。提前谢谢您。

答案1

Virtual Box 可以为多个平台提供图形输出虚拟的显示器。这些可以配置为单独的应用程序窗口,也可以在无缝或全屏模式下定向到单独的连接的物理显示器。

此功能与物理连接的显卡无关,并且可以不是可以通过在虚拟机上安装专有驱动程序来实现。不建议这样做,因为虚拟机通常无法直接访问物理图形适配器(除非您配置了实验性的 PCI 直通模式)。

为了启用多个监视器,我们可以为虚拟机定义最多 8 个监视器设置 -> 显示来自 Virtual Box Manager:

在此处输入图片描述

之后,我们可以从“系统设置 -> 显示...在 Ubuntu 中:

在此处输入图片描述

所有监视器的名称均为虚拟串口因为它们实际上是由 Virtual Box 提供的。所代表的显示器也将显示在虚拟窗口中相应的彩色框中。

取消勾选该选项“镜面显示”以防您想在它们上显示不同的应用程序。

之后我们将有两个虚拟盒子窗口,每个窗口都有编号:1,并且:2每个窗口可以有不同的几何形状:

在此处输入图片描述

主机 12.04 amd64 上的 Virtual Box 运行客户机 Ubuntu 12.04 amd64 的单个实例,显示在两个虚拟监视器窗口上

相关内容