Ubuntu 12.04 ppc 上的 xorg.conf 配置帮助

Ubuntu 12.04 ppc 上的 xorg.conf 配置帮助

我执行了 Xorg -configure 或 X -configure 并且我有一个 xorg.conf 文件但是有错误,所以这是我在运行时发现的ddcprobe

oem: nouveaufb
memory: 7088kb
edid: 
edid: 1 3
id: 2292
eisa: APP2292
serial: 254c0002
manufacture: 46 2005
input: digital signal.
screensize: 43 27
gamma: 2.200000
dpms: non-RGB, active off, suspend, no standby
ctiming: 248x198@111
dtiming: 1680x1050@59
monitorserial: 2A5463WMUFZ
monitorname: Cinema

看来 Ubuntu 识别了我的显示器,但在 xorg.conf 文件中,它没有在显示器上显示相同的信息,这是我的 xorg.conf 显示的有关显示器的信息,也是为什么它显示两个显示器,而我只有一个..

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Monitor"
Identifier   "Monitor1"
VendorName   "Monitor Vendor"
ModelName    "Monitor Model"
EndSection

以下是屏幕上显示的内容。

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

Section "Screen"
    Identifier "Screen1"
    Device     "Card1"
    Monitor    "Monitor1"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

我该如何重新配置​​?为什么我的显示器显示双重图像,为什么屏幕也是双重图像?需要一些 xorg.conf 专家的建议。

格斯

答案1

根据您的帖子,您正在使用 nvidia 显卡的开源驱动程序,我要求您使用 nvidia 的专有驱动程序

要安装最新的 nvidia 卡驱动程序,请运行

 sudo apt-add-repository ppa:ubuntu-x-swat/x-updates
 sudo apt-get update
 sudo apt-get install nvidia-current

重新启动系统

然后从 Dash 打开 Nvidia X Server 设置窗口或运行以下命令

 nvidia-settings

该窗口将显示所连接的显示器、其分辨率以及可为显示设备设置的不同模式。

您只需进行设置并保存配置即可。

这将创建 xorg.conf 并重新配置它们(如果它已经存在于 /etc/X11 中)

有用!!

相关内容