/bin/bash 复制代码

/bin/bash 复制代码

我有一台运行 Ubuntu 12.10 的笔记本电脑,我使用 vga 端口连接了一台外接显示器,它工作正常。我想通过 DisplayLink 适配器将第二台外接显示器连接到它。当我插入它时,屏幕亮起并变绿。但是当我运行 xrandr 时,我得到的输出如下

Screen 0: minimum 320 x 200, current 2650 x 1680, maximum 8192 x 8192
LVDS1 connected 1600x900+1050+347 (normal left inverted right x axis y axis) 382mm x 214mm
   1600x900       60.1*+
   1440x900       59.9  
   1360x768       59.8     60.0  
   1152x864       60.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 connected 1050x1680+0+0 left (normal left inverted right x axis y axis) 474mm x 296mm
   1680x1050      59.9*+
   1280x1024      75.0     60.0  
   1152x864       75.0  
   1024x768       75.1     75.0     60.0  
   800x600        75.0     60.3  
   640x480        75.0     60.0  
   720x400        70.1  
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)

我尝试下载 Display Link 驱动程序,但找不到。下一步该怎么做?

答案1

如果您使用内核 3.7.1 或新版本 3.9.6,它几乎可以即插即用。

我之前使用的是内核为 3.7.1 的 Linux Mint 14,现在使用的是内核为 3.9.6 的 Linux Mint 15,没有任何问题,也不需要做额外的调整。如果您需要进行一些调整,请创建一个小脚本并在启动时执行它,就像这样:

/bin/bash 复制代码

xrandr --newmode "1360x768_60.00" 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync xrandr --addmode DVI-0 1360x768_60.00 xrandr --auto --output DVI-0 --mode 1360x768_60.00 --right-of LVDS1

当然,只需使用针对您的 Displaylink USB 分辨率的具体要求即可。

相关内容