📜 ⬆️ ⬇️

Resolution is more than 1024 * 768 on eeePC in Ubuntu

For a long time, I was looking for an answer to the question of how to make the permission for a 17 "monica in my eeepc 1000. The answer turned out to be extremely simple - fix xorg.conf :)

Namely…

change
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Virtual 2048 768
EndSubSection
EndSection


on
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Virtual 2048 1024
EndSubSection
EndSection


As a result, my entire xorg.conf looks like this:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Virtual 2048 1024
EndSubSection
EndSection

Section "Device"
Identifier "Configured Video Device"
EndSection


Ps. Now I only have an external monitor.
Pps. Describe, owners of eeePC, does it work on eeePC 70x / 90x?
PPPS. I have not seen a solution to this issue anywhere, so I posted it :) If the button accordion, then sorry

')

Source: https://habr.com/ru/post/51394/


All Articles