将外接显示器放在左侧

Hos*_*dir 10 display multiple-monitors unity 14.04

在我的 14.04 笔记本电脑上,我想使用外接显示器。我想将外接显示器放在左侧,但 ubuntu 似乎合乎逻辑地将其放在右侧。我试图组织显示位置,但是当我将内置显示器向右拖动时,我的所有桌面图标都会移动到外部显示器上。我该如何解决这个问题。 默认显示组织

muctadir@muctadir-laptop:~$ xrandr --prop 
Screen 0: minimum 8 x 8, current 3286 x 1080, maximum 32767 x 32767
LVDS1 connected primary 1366x768+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
    EDID: 
        00ffffffffffff0006afec4501000000
        01150103802213780a0bb59757548c26
        23505400000001010101010101010101
        010101010101121b566050001630080a
        310058c1100000180000000f00000000
        00000000000000000020000000fe0041
        554f0a202020202020202020000000fe
        004231353658573034205635200a0046
    BACKLIGHT: 976 
        range: (0, 976)
    Backlight: 976 
        range: (0, 976)
    scaling mode: Full aspect 
        supported: None, Full, Center, Full aspect
   1366x768       60.0*+
   1360x768       59.8     60.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 connected 1920x1080+1366+0 (normal left inverted right x axis y axis) 160mm x 90mm
    EDID: 
        00ffffffffffff004c2dcd053432524c
        12140103801009782a6041a6564a9c25
        125054230800a9408180814081009500
        b30001010101023a801871382d40582c
        4500a05a0000001e011d007251d01e20
        6e285500a05a0000001e000000fd0032
        3c1e5111000a202020202020000000fc
        0053796e634d61737465720a2020018f
        02031cf14890041f0514130312230907
        078301000066030c00100080011d80d0
        721c1620102c2580a05a0000009e011d
        8018711c1620582c2500a05a0000009e
        011d00bc52d01e20b8285540a05a0000
        001e8c0ad090204031200c405500a05a
        000000188c0ad08a20e02d10103e9600
        a05a0000001800000000000000000046
    Broadcast RGB: Automatic 
        supported: Automatic, Full, Limited 16:235
    audio: auto 
        supported: force-dvi, off, auto, on
   1920x1080      60.0*+   50.0     59.9  
   1920x1080i     60.1     50.0     60.0  
   1600x1200      60.0  
   1680x1050      59.9  
   1280x1024      60.0  
   1440x900       59.9  
   1280x960       60.0  
   1280x800       59.9  
   1280x720       60.0     50.0     59.9  
   1024x768       60.0  
   800x600        60.3     56.2  
   720x576        50.0  
   720x480        60.0     59.9  
   640x480        60.0     59.9  
DP1 disconnected (normal left inverted right x axis y axis)
    Broadcast RGB: Automatic 
        supported: Automatic, Full, Limited 16:235
    audio: auto 
        supported: force-dvi, off, auto, on
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
Run Code Online (Sandbox Code Playgroud)

Ser*_*nyy 9

系统设置中的屏幕图标其实是可以拖动的,所以你可以把绿色的三星放在左边。或者,您可以使用此命令:

xrandr --output HDMI1 --mode 1024x768 --pos 0x0 --rotate normal \
       --output LVDS1 --mode 1366x768 --pos 1024x0 --rotate normal
Run Code Online (Sandbox Code Playgroud)

我使用这个命令(当然有不同的输出)来定位我的屏幕,VGA 在左边,内部显示器在右边,在图形登录时。

或者,您可以查看lxrandr程序,它的工作与 Ubuntu 的设置完全相同,但可能不那么令人困惑。


Gab*_*ler 5

您可以使用arandr这是一个易于使用的工具。

  • 安装与sudo apt-get install arandr
  • 运行arandr,GUI 就会出现

拖动显示器以适应您的喜好,例如

阿兰德尔·吉


小智 0

我在 virtuabox 中遇到了这个问题,解决方案是在显示器之间更改屏幕。

  • 主屏幕移至内置显示屏
  • 辅助屏幕移至您的 Samsung 显示屏

Ubuntu 中的其他模式是更改 xml 监视器:

    gedit ~/.config/monitors.xml 
Run Code Online (Sandbox Code Playgroud)

并编辑:

    <primary>yes</primary> <!-- For primary monitor -->
    <primary>no</primary> <!-- For not primary monitor -->
Run Code Online (Sandbox Code Playgroud)