Hello, <br> I have an embedded x86 device with a 800x600 LCD monitor (this is the maximum hw resolution). I was able to install and run debian with xserver-xorg-core and xorg packages on it.<br>But when I run X, the screen/window is shifted by 1 inch to the left. The same when I run 640x480. But when I run at higher resolutions, although I can see the whole screen and will have to move the mouse to see all corners, the window edge look fine. <br>
What setting in the xorg.conf or somewhere else can I change to move the windows/screen right by 1 inch? Thanks in advance.<br><br>xorg.conf file:<br><br>Section "ServerLayout"<br> Identifier "X.org Configured"<br>
Screen 0 "Screen0" 0 0<br> InputDevice "Mouse0" "CorePointer"<br> InputDevice "Keyboard0" "CoreKeyboard"<br>EndSection<br><br>Section "Files"<br>
RgbPath "/etc/X11/rgb"<br> ModulePath "/usr/lib/xorg/modules"<br> FontPath "/usr/share/fonts/X11/misc"<br> FontPath "/usr/X11R6/lib/X11/fonts/misc"<br>
FontPath "/usr/share/fonts/X11/cyrillic"<br> FontPath "/usr/share/fonts/X11/100dpi/:unscaled"<br> FontPath "/usr/share/fonts/X11/75dpi/:unscaled"<br> FontPath "/usr/share/fonts/X11/Type1"<br>
FontPath "/usr/X11R6/lib/X11/fonts/Type1"<br> FontPath "/usr/share/fonts/X11/100dpi"<br> FontPath "/usr/share/fonts/X11/75dpi"<br> FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"<br>
EndSection<br><br>Section "Module"<br> Load "extmod"<br> Load "record"<br> Load "dbe"<br> Load "glx"<br> Load "xtrap"<br>
Load "dri"<br> Load "type1"<br>EndSection<br><br>Section "InputDevice"<br> Identifier "Keyboard0"<br> Driver "kbd"<br>EndSection<br><br>
Section "InputDevice"<br> Identifier "Mouse0"<br> Driver "mouse"<br> Option "Protocol" "auto"<br> Option "Device" "/dev/mouse"<br>
Option "ZAxisMapping" "4 5 6 7"<br>EndSection<br><br>Section "Monitor"<br> #DisplaySize 360 270 # mm<br> Identifier "Monitor0"<br> VendorName "LCD"<br>
ModelName " TFT LCD"<br> ### Comment all HorizSync and VertSync values to use DDC:<br> HorizSync 20.0 - 92.0<br> VertRefresh 50.0 - 75.0<br> Option "DPMS"<br>EndSection<br>
<br>Section "Device"<br> ### Available Driver options are:-<br> ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",<br> ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"<br>
### [arg]: arg optional<br> #Option "NoAccel" # [<bool>]<br> #Option "SWcursor" # [<bool>]<br> #Option "ColorKey" # <i><br>
#Option "CacheLines" # <i><br> #Option "Dac6Bit" # [<bool>]<br> #Option "DRI" # [<bool>]<br>
#Option "NoDDC" # [<bool>]<br> #Option "ShowCache" # [<bool>]<br> #Option "XvMCSurfaces" # <i><br>
#Option "PageFlip" # [<bool>]<br> Identifier "Card0"<br> Driver "i810"<br> VendorName "Intel Corporation"<br> BoardName "82852/855GM Integrated Graphics Device"<br>
BusID "PCI:0:2:0"<br>EndSection<br><br>Section "Screen"<br> Identifier "Screen0"<br> Device "Card0"<br> Monitor "Monitor0"<br> SubSection "Display"<br>
Viewport 0 0<br> Depth 16<br> Modes "800x600" <br> EndSubSection<br>EndSection<br><br>