Announcement

Collapse
No announcement yet.

sony vaio display problem

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    sony vaio display problem

    just installed HH on vaio. everything is working ok except the display does not fill the screen.
    I tried Enlightenment once, it was pretty cool.

    #2
    Re: sony vaio display problem

    Model of VAIO? Screen resolution (per the specs of the PC)? Make/model of video card/chip?
    Using Kubuntu Linux since March 23, 2007
    "It is a capital mistake to theorize before one has data." - Sherlock Holmes

    Comment


      #3
      Re: sony vaio display problem

      I have a VAIO as well, but I did not have any problems with the display. Try adjusting the resolution of the screen in the system settings. If that doesn't work, boot into recovery mode, and use the option "try and fix x server". This option always works when I do something to my display that I shouldn't have...
      Sony Vaio VGN NR260E<br />Linux Kubuntu 9.04\Windoze 7 Professional<br /><br />Sony Vaio VPCF1190X<br />Linux Kubuntu 10.04/Windoze 7 Home Premium<br /><br />Linux user #478627

      Comment


        #4
        Re: sony vaio display problem

        00:02.0 VGA compatible controller: Intel Corporation 82815 Chipset Graphics Controller (CGC) (rev 11)
        tried system settings>display. 600x800 is the only option. I'm thinking it is a driver issue. I guess I could try dpkg--reconfigure -phigh xserver-xorg.
        I tried Enlightenment once, it was pretty cool.

        Comment


          #5
          Re: sony vaio display problem

          I'd be inclined to run dpkg--reconfigure xserver-xorg first.
          Using Kubuntu Linux since March 23, 2007
          "It is a capital mistake to theorize before one has data." - Sherlock Holmes

          Comment


            #6
            Re: sony vaio display problem

            tried dpkg--reconfigure -phigh xserver-xorg to no avail. Still got a small screen.
            I tried Enlightenment once, it was pretty cool.

            Comment


              #7
              Re: sony vaio display problem

              In Adept Manager or Synaptic, do you have the xserver-xorg-video-intel package installed?
              Using Kubuntu Linux since March 23, 2007
              "It is a capital mistake to theorize before one has data." - Sherlock Holmes

              Comment


                #8
                Re: sony vaio display problem

                A possible "solution."

                This is an xorg.conf file posted from Xorg.conf for intel 82815 chipset

                You can make a backup copy of your existing file:
                Code:
                sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_SAVED
                and edit /etc/X11/xorg.conf (as root) and replace all with the following:
                (NOTE: check the following section from below:
                Option "Device" "/dev/input/mouse2"
                Option "ZAxisMapping" "4 5 6 7"
                Option "Protocol" "ImPS/2"
                Option "Emulate3Buttons" "true"
                with the same section in your original file. Make any changes so it matches your old file.)

                # /etc/X11/xorg.conf (xorg 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 /etc/X11/xorg.conf manual page.
                # (Type "man /etc/X11/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.
                #
                # 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 "Files"
                # FontPath "/usr/share/X11/fonts/misc"
                # FontPath "/usr/share/X11/fonts/cyrillic"
                # FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
                # FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
                # FontPath "/usr/share/X11/fonts/Type1"
                # FontPath "/usr/share/X11/fonts/CID"
                # FontPath "/usr/share/X11/fonts/100dpi"
                # FontPath "/usr/share/X11/fonts/75dpi"
                # paths to defoma fonts
                # FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
                # FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
                EndSection

                Section "Module"
                Load "GLcore"
                Load "i2c"
                Load "bitmap"
                Load "ddc"
                Load "dri"
                Load "extmod"
                Load "freetype"
                Load "glx"
                Load "int10"
                Load "type1"
                Load "vbe"
                EndSection

                Section "InputDevice"
                Identifier "Generic Keyboard"
                Driver "kbd"
                Option "CoreKeyboard"
                Option "XkbRules" "xorg"
                Option "XkbModel" "pc105"
                Option "XkbLayout" "us,bg"
                Option "XkbVariant" "bds"
                Option "XkbOptions" "grp:alt_shift_toggle"
                EndSection

                Section "InputDevice"
                Identifier "Configured Mouse"
                Driver "mouse"
                Option "CorePointer"
                Option "Protocol" "auto"
                # Option "Device" "/dev/input/mice"
                Option "Device" "/dev/input/mouse2"
                Option "ZAxisMapping" "4 5 6 7"
                Option "Protocol" "ImPS/2"
                Option "Emulate3Buttons" "true"
                EndSection

                Section "Device"
                Identifier "Intel Corporation 82815 CGC [Chipset Graphics Controller]"
                Driver "i810"
                BusID "PCI:0:2:0"
                Option "XvMCSurfaces"
                EndSection

                Section "Monitor"
                Identifier "Monitor0"
                VendorName "Unknown"
                ModelName "Unknown"
                HorizSync 31.5-48.5
                VertRefresh 40-70
                Option "dpms"
                # ModeLine "872x654@75" 60.00 872 904 1128 1160 654 666 674 687
                # Option "DPMS"
                EndSection

                Section "Screen"
                Identifier "Default Screen"
                Device "Intel Corporation 82815 CGC [Chipset Graphics Controller]"
                Monitor "Monitor0"
                DefaultDepth 16
                Option "Accel"
                SubSection "Display"
                Depth 16
                Modes "1024x768"
                EndSubSection
                SubSection "Display"
                Depth 24
                Modes "1024x768"
                EndSubSection
                EndSection

                Section "ServerLayout"
                Identifier "Default Layout"
                Screen "Default Screen"
                Absolute 80 80
                InputDevice "Generic Keyboard"Option "Device" "/dev/input/mouse2"
                Option "ZAxisMapping" "4 5 6 7"
                Option "Protocol" "ImPS/2"
                Option "Emulate3Buttons" "true"
                EndSection

                Section "Device"
                Identifier "Intel Corporation 82815 CGC [Chipset Graphics Controller]"
                Driver "i810"
                BusID "PCI:0:2:0"
                Option "XvMCSurfaces"
                EndSection

                Section "Monitor"
                Identifier "Monitor0"
                VendorName "Unknown"
                ModelName "Unknown"
                HorizSync 31.5-48.5
                VertRefresh 40-70
                Option "dpms"
                # ModeLine "872x654@75" 60.00 872 904 1128 1160 654 666 674 687
                # Option "DPMS"
                EndSection

                Section "Screen"
                Identifier "Default Screen"
                Device "Intel Corporation 82815 CGC [Chipset Graphics Controller]"
                Monitor "Monitor0"
                DefaultDepth 16
                Option "Accel"
                SubSection "Display"
                Depth 16
                Modes "1024x768"
                EndSubSection
                SubSection "Display"
                Depth 24
                Modes "1024x768"
                EndSubSection
                EndSection

                Section "ServerLayout"
                Identifier "Default Layout"
                Screen "Default Screen"
                Absolute 80 80
                InputDevice "Generic Keyboard"
                Inp
                InputDevice "Configured Mouse"
                EndSection

                Section "DRI"
                Mode 0666
                EndSection
                Using Kubuntu Linux since March 23, 2007
                "It is a capital mistake to theorize before one has data." - Sherlock Holmes

                Comment

                Working...
                X