LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 02-24-2009, 03:16 PM   #1
setkos
LQ Newbie
 
Registered: Mar 2006
Posts: 21

Rep: Reputation: 15
xorg - virtual resolution


Hello,

I have asked in many places, I hope that this is right place...

Could you tell me how to turn on virtual resolution? I have MSI Wind with LVDS display (1024x600) and sometime I need to use higher resolution (1024x768). So I thought that virtual resolution with possiblility to scroll hidden area would be the best solution for this purpose. But I am not able to active virtual resolution.

This is my xorg.conf
Code:
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "catalogue:/etc/X11/fontpath.d"
    FontPath     "built-ins"
EndSection

Section "Module"
    Load  "dri"
    Load  "extmod"
    Load  "dbe"
    Load  "glx"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Internal LVDS"
    Option       "PreferredMode" "1024x768"
EndSection

Section "Monitor"
    Identifier   "External VGA"
    ModeLine "1024x768"   78.8 1024 1040 1136 1312    768  769  772  800 +hsync +vsync
    Option       "PreferredMode" "1024x768"
EndSection

Section "Device"
               Option      "AccelMethod"    "exa"
               Option      "FramebufferCompression"    "false"
               Option      "monitor-VGA"    "External VGA"
               Option      "monitor-LVDS"    "Internl LVDS"
    Identifier  "Card0"
    Driver      "intel"
    VendorName  "Intel Corporation"
    BoardName   "Mobile 945GME Express Integrated Graphics Controller"
    BusID       "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Internal LVDS"
    Monitor    "External VGA"
    SubSection "Display"
        Depth 24
        Virtual    1024 768
    EndSubSection
EndSection
but I don't know how to activate this new resolution. I have tried this way:

Code:
$ gtf 1024 768 60
  # 1024x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 64.11 MHz
  Modeline "1024x768_60.00"  64.11  1024 1080 1184 1344  768 769 772 795  -HSync +Vsync

$ xrandr --newmode "1024x768_60.00"  64.11  1024 1080 1184 1344  768 769 772 795  -HSync +Vsync

$ xrandr --addmode LVDS "1024x768_60.00" 
X Error of failed request:  BadMatch (invalid parameter attributes)
  Major opcode of failed request:  150 (RANDR)
  Minor opcode of failed request:  18 ()
  Serial number of failed request:  15
  Current serial number in output stream:  16
without success...

Could you give me any hints, links...I am totally confused.
 
Old 02-26-2009, 08:48 AM   #2
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
I don't understand the significance of setting the Virtual screen to the same resolution as the default.
 
Old 02-26-2009, 11:19 AM   #3
setkos
LQ Newbie
 
Registered: Mar 2006
Posts: 21

Original Poster
Rep: Reputation: 15
Thank you for your answer!

Quote:
Originally Posted by pixellany View Post
I don't understand the significance of setting the Virtual screen to the same resolution as the default.
But default resolution is 1024x600. I would like to active a higher resolution - 1024x768 and because of LVDS technical restrictions use it by scrolling display (I mean when I move mouse cursor to the down edge of display, I would be able to see the down part of the desktop).

How to achieve this?
 
Old 02-26-2009, 03:52 PM   #4
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
I'm obviously missing something....

1024x600 does not appear in your xorg.conf file----also, it is not a standard format. The common formats are 4:3 (eg 1024x768), 16:9, and 16:10 (eg 1920x1200). I think 5:4 is out there also.
 
Old 03-01-2009, 07:37 PM   #5
setkos
LQ Newbie
 
Registered: Mar 2006
Posts: 21

Original Poster
Rep: Reputation: 15
Ok, so I have changed Monitor section for LVDS:
Code:
Section "Monitor"
    Identifier   "Internal LVDS"
    Option       "PreferredMode" "1024x600"
EndSection
I know that 1024x600 isn't typical, but it is common in netbooks' displays and this is maximum resolution for LVDS in my netbook.

In Windows XP, when I change resolution into 1024x768 (or higher) I am able to see the rest of the desktop by moving mouse cursor to the edge of the display. While doing this, desktop moves and I am able to see the rest of the desktop).

I though that Virtual Resolution does the same on Linux.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
virtual resolution issue - xorg.conf - eeepc 1000ha - debian 5.0 (lenny) checkmate3001 Linux - Laptop and Netbook 0 01-18-2009 04:57 AM
Xorg config, X not allowing new resolution, works without Xorg config file? bapigoo9 Slackware 5 12-05-2008 12:52 AM
Xorg Virtual Desktop DJ747 Linux - Software 1 07-12-2006 05:50 PM
Changing the Xorg virtual desktop resolution iscurrah Slackware 4 04-05-2005 01:09 PM
[resolution 1600 x 1200] Virtual resolution - help! MaicoMedia Linux - Hardware 2 10-15-2004 03:15 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 07:20 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration