红联Linux门户
Linux帮助

笔记本Ubuntu系统外接显示器的分辨率问题

发布时间:2011-08-09 15:10:47来源:ylmf作者:linux使用者

  之前一直使用Acer TM5720G外接Dell 17寸液晶作为主电脑,近日撤掉主笔记本,换上了我的HP小本,发现在Ubuntu下,分辨率最高只有1024×768,没有1280×1024选项,查找资料后,修改/etc/X11/xorg.conf文件


  文件原内容:

  Section "Screen"
  Identifier "Default Screen"
  Monitor "Configured Monitor"
  Device "Configured Video Device"
  EndSection


  修改成如下内容:

  Section "Screen"
  Identifier "Default Screen"
  Monitor "Configured Monitor"
  Device "Configured Video Device"
  SubSection "Display"
  Depth 24
  Modes "640x480" "800x600" "1024x768" "1280x1024" "1440x900"
  #Virtual 1280 1024
  EndSubSection
  EndSection


  重启X即可


  其中的#Virtual 1280 1024为指定登录界面的分辨率,建议使用显示器的标准分辨率,否则容易出现文字太小等问题。