这就是我过去在 Ubuntu 13 上设置 X Server 的方式。
apt-get update
apt-get upgrade
# nvidia
apt-get -y install nvidia-current
apt-get -y install nvidia-current-updates
# x server
apt-get -y install xserver-xorg
apt-get -y install x11-xserver-utils
export DISPLAY=localhost:0.0
X :0 &
xhost +
Run Code Online (Sandbox Code Playgroud)
在 Ubuntu 14 上,执行以下操作时出现以下错误X :0
:
[ 3491.124] (II) Module wfb: vendor="X.Org Foundation"
[ 3491.124] compiled for 1.15.1, module version = 1.0.0
[ 3491.124] ABI class: X.Org ANSI C Emulation, version 0.4
[ 3491.124] (II) Loading sub module "ramdac"
[ …
Run Code Online (Sandbox Code Playgroud) 我有一个在 Ubuntu 14.04 上运行 Unity 的双显示器设置
每当我启动机器时,系统似乎忘记了右侧显示屏上桌面图标的位置(通过 VGA 连接)。图标都很好地设置在屏幕的右侧,但是当我启动时,所有图标都聚集在启动器下方的左上角附近,并且彼此重叠,如下所示:
如何解决此问题,以便每次启动时桌面图标都显示在同一位置?左侧显示器上的图标(通过 HDMI 连接)始终正常,并且始终保持在相同的位置。
无法安装这两个更新:
供应商中立的 GL 调度库 - 开发文件
供应商中立的 GL 调度库 - GLESV1 支持
该更新显示了一个标题为:Broken System Package的新窗口和一条建议禁用第三方软件包并运行apt-get install -f
.
这是运行命令后的输出:
Reading package list... Done
Building the dependency tree
Reading status information... Done
Correcting dependencies... Ready
The packages listed below were installed automatically and are no longer required.
libjs-bootstrap libjs-excanvas libjs-jquery-flot libjs-jquery-ui
libjs-jquery-ui-theme-smoothness libjs-leaflet libjs-requirejs
libjs-requirejs-text node-sprintf-js
Use "sudo apt autoremove" to remove them.
The following additional packages will be installed:
libgles1 libglvnd-dev
The following NEW packages will be …
Run Code Online (Sandbox Code Playgroud) 这是我目前的选择
我想知道你更喜欢哪一个在性能上更好,因为我仍然不明白它们是如何工作的。
我也想知道如何更新到最新版本的驱动程序。
编辑:我相信这不是移除旧显卡并在 ubuntu14.04 中安装新显卡的重复,因为威廉问如何安装新显卡并移除旧显卡,我在问哪个更好,什么更好是我的“附加驱动程序”选项卡中 3 个选项之间的区别。
最新版本的 Ubuntu是否支持此功能?描述说仅适用于 Windows,并且它不适用于 Mac,但没有提及 Linux。也没有提到制造商。我希望这里有人会认出它并知道它是否有效......
我正在运行最新的 Ubuntu 18.04 和股票 Linux 内核 4.15.0-23-generic 并且有问题(HDMI 偶尔不工作)。
已经有一个相关的问题:https : //bugs.freedesktop.org/show_bug.cgi?id=105887
这是英特尔显示驱动程序的补丁作为解决问题的差异:https : //patchwork.freedesktop.org/patch/229363/
我想用那个补丁重新编译我的内核/显示驱动程序,但有一些问题,因为我还没有重新编译任何与内核相关的东西:
我如何获得确切的 Ubuntu 内核源代码,包括英特尔显示驱动程序,以便我可以应用上面的补丁?重新编译并将修改后的内核/内核驱动程序安装到我的系统中的步骤是什么(尽可能少的配置)?
设法获取与 Ubuntu 18.04 相关的内核源代码:
git clone git://kernel.ubuntu.com/ubuntu/ubuntu-bionic.git
Run Code Online (Sandbox Code Playgroud)
无法应用https://patchwork.freedesktop.org/patch/229363/ 中的补丁- 似乎它基于不同的内核:
$ git apply --stat V2-drm-i915-glk-Add-Quirk-for-GLK-NUC-HDMI-port-issues..patch
drivers/gpu/drm/i915/i915_drv.h | 1 +
drivers/gpu/drm/i915/intel_ddi.c | 8 ++++++++
drivers/gpu/drm/i915/intel_display.c | 19 +++++++++++++++++++
3 files changed, 28 insertions(+)
gustavo /home/ifischer/src/ubuntu-bionic master [~]
$ git apply --check V2-drm-i915-glk-Add-Quirk-for-GLK-NUC-HDMI-port-issues..patch
error: patch failed: drivers/gpu/drm/i915/intel_ddi.c:1800
error: drivers/gpu/drm/i915/intel_ddi.c: patch does not applygit clone git://kernel.ubuntu.com/ubuntu/ubuntu-bionic.git
Run Code Online (Sandbox Code Playgroud)