如何在 Ubuntu 14.04 中设置 xorg 以使用多座席

如何在 Ubuntu 14.04 中设置 xorg 以使用多座席

我尝试在已安装好 ubuntu 14.04.02 且带有 core i3 集成显卡和 nVidia GT260 显卡的电脑上设置多座席。我遵循wiki.ubuntu 上的 miltiseat 说明和手册Ubuntu 14.10 中的多座席

我做了什么:

  • 安装多座席 PPA
  • 未找到 lightdm.conf - 创建它并添加以下内容:

    [LightDM]
     logind-load-seats=true
     logind-check-graphical=true
    
  • 创建xorg.conf并添加:

    Section "ServerLayout" 
            Identifier "Main Layout" 
            Screen      0  "Screen0" 
            Screen      1  "Screen1" RightOf "Screen0" 
    EndSection 
    
    Section "Monitor" 
            Identifier     "Monitor0" 
            ModelName      "LG 22EN33S-BA" 
            HorizSync       30.0 - 83.0 
            VertRefresh     56.0 - 75.0 
            Option "PreferredMode" "1920x1080" 
            Option         "DPMS" 
    EndSection 
    
    Section "Monitor" 
            Identifier     "Monitor1" 
            ModelName      "LG 22EN33S-BA" 
            HorizSync       30.0 - 83.0 
            VertRefresh     56.0 - 75.0 
        Option "PreferredMode" "1920x1080" 
            Option         "DPMS" 
    EndSection 
    
    Section "Device" 
            Identifier     "Device0" 
            Driver         "nouveau" 
            MatchSeat      "seat-1" 
    EndSection 
    
    Section "Device" 
            Identifier     "Device1" 
    EndSection 
    
    Section "Screen" 
            Identifier     "Screen0" 
            Device         "Device0" 
            Monitor        "Monitor0" 
            DefaultDepth    24 
            SubSection     "Display" 
                Depth       24 
            EndSubSection 
    EndSection  
    
    Section "Screen" 
            Identifier     "Screen1" 
            Device         "Device1" 
            Monitor        "Monitor1" 
            DefaultDepth    24 
            SubSection     "Display" 
                Depth       24 
            EndSubSection 
    EndSection 
    
  • 将鼠标和键盘安装到座椅 1 上

  • 将 nvidia 卡和帧缓冲器连接至座位 1

重新启动并...

系统开启并在 Screen1 上显示操作系统在低质量视频模式下运行。当我取消错误窗口时,我在 Screen0 上看到终端!我登录并输入:

sudo service lightdm start

Lighdm 启动了,但仅在 Screen0 上。

我在配置中遗漏了什么?请帮我将正确的 xorg.conf 写入我的多座系统 - 谢谢!

相关内容