T41p Solaris 10 Display problems/specifications

T4x series specific matters only
Post Reply
Message
Author
atm32000
Posts: 2
Joined: Fri Oct 28, 2005 5:07 am

T41p Solaris 10 Display problems/specifications

#1 Post by atm32000 » Fri Oct 28, 2005 5:15 am

Hallo,
im new with solaris but need it for university. So I decided to install one in a vmware-enviroment on XP Pro. Although I changed the display resolution (to 1400x1050) during installation the resolution after the first boot is set to 640x480. If i change the resolution using xconfig.org the system doesn't boot afterwards (maybe false monitor parameters?). Does someone has an configuration like or equal to the one i want to implement? Please help me!

THX atm32000

v_parthi
Freshman Member
Posts: 72
Joined: Wed May 05, 2004 11:09 am

hi

#2 Post by v_parthi » Fri Oct 28, 2005 9:43 am

Hi,

People who have solaris on T41p are very less. In linux (latest suse or redhat), we have driver for the ATI radeon firegl T2 card. If it's an unsupported card, there is an option called VESA mode which can be configured in X config file. Perhaps, you can try something similar in solaris. This works for better resolutions according to card's memory with a common driver.

regards,
Parthban.

atm32000
Posts: 2
Joined: Fri Oct 28, 2005 5:07 am

#3 Post by atm32000 » Sun Oct 30, 2005 3:53 pm

Thanks for fast answer. i gonna try next week

atm32000

ctbenski
Freshman Member
Posts: 60
Joined: Wed Dec 01, 2004 2:36 pm
Location: Krakow, Poland

#4 Post by ctbenski » Sun Oct 30, 2005 7:16 pm

You also may want to try some of the usenet, they are very helpful
for instance news:comp.unix.solaris
X300 6477AN3 (nice machine)
X61s 7667Y24 (sold :-( )
T60 2007FVG (now owned by wife and loved)
T41 2373NG9 (dead after 6 years of beating)

baerli
Posts: 2
Joined: Tue Mar 14, 2006 7:25 pm
Location: Germany
Contact:

#5 Post by baerli » Tue Mar 14, 2006 7:36 pm

Just steped over the same thing, so if anybody still interested:
You just need to craft a xorg.conf file and put it into /etc/X11/.
Here's mine (without any gurantee to be complete, but it works
for me on my T23):

Code: Select all

Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/X11/lib/X11/rgb"
        ModulePath   "/usr/X11/lib/modules"
        FontPath     "/usr/X11/lib/X11/fonts/TrueType/"
        FontPath     "/usr/X11/lib/X11/fonts/Type1/"
        FontPath     "/usr/X11/lib/X11/fonts/Type1/sun/"
        FontPath     "/usr/X11/lib/X11/fonts/F3bitmaps/"
        FontPath     "/usr/X11/lib/X11/fonts/misc/"
        FontPath     "/usr/X11/lib/X11/fonts/100dpi/"
        FontPath     "/usr/X11/lib/X11/fonts/75dpi/"
EndSection

Section "Module"
        Load  "IA"
        Load  "Xst"
        Load  "dbe"
        Load  "extmod"
        Load  "record"
        Load  "xtrap"
        Load  "bitstream"
        Load  "type1"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "de"
EndSection

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

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "IBM"
        ModelName    "Thinkpad 14.1 1024X768 TFT LCD PANEL"
        Option       "DPMS"
        DisplaySize  279 210
        UseModes     "Modes[0]"
        HorizSync    37-60
        VertRefresh  60
EndSection

Section "Modes"
  Identifier   "Modes[0]"
  Modeline      "800x600" 40.00 800 840 968 1056 600 601 605 628 +HSync +VSync
  Modeline      "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"                   # [<bool>]
        #Option     "HWCursor"                  # [<bool>]
        #Option     "SWCursor"                  # [<bool>]
        #Option     "ShadowFB"                  # [<bool>]
        #Option     "Rotate"                    # [<str>]
        #Option     "UseBIOS"                   # [<bool>]
        #Option     "LCDClock"                  # <freq>
        #Option     "ShadowStatus"              # [<bool>]
        #Option     "CrtOnly"                   # [<bool>]
        #Option     "TvOn"                      # [<bool>]
        #Option     "PAL"                       # [<bool>]
        #Option     "ForceInit"                 # [<bool>]
        #Option     "Overlay"                   # [<str>]
        #Option     "TransparencyKey"           # [<str>]
        #Option     "ForceInit"                 # [<bool>]
        #Option     "DisableXVMC"               # [<bool>]
        #Option     "DisableTile"               # [<bool>]
        #Option     "DisableCOB"                # [<bool>]
        #Option     "BCIforXv"                  # [<bool>]
        #Option     "DVI"                       # [<bool>]
        Identifier  "Card0"
        Driver      "savage"
        VendorName  "S3 Inc."
        BoardName   "SuperSavage IX/C 64 SDR"
        BusID       "PCI:1:0:0"
EndSection

Section "Screen"
        DefaultDepth 24
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Depth     24
                Modes     "1024x768"
        EndSubSection
EndSection

tecneeq
Posts: 24
Joined: Sun Mar 12, 2006 9:20 pm
Location: Germany/NRW/Duisburg
Contact:

#6 Post by tecneeq » Tue Mar 14, 2006 8:15 pm

baerli wrote:You just need to craft a xorg.conf file and put it into /etc/X11/.
Here's mine (without any gurantee to be complete, but it works
for me on my T23):
I doubt that will work in VMware. The problem i see is that the VESA 2 specifications does not know the resolution 1400x1050 and Solaris xorg most likely choses the "vesa" driver inside vmware. I think that 1280x1024 works.

baerli
Posts: 2
Joined: Tue Mar 14, 2006 7:25 pm
Location: Germany
Contact:

#7 Post by baerli » Tue Mar 14, 2006 8:55 pm

Yup! I missed out the vmware thing (sorry). Mine is running directly on the Thinkpad. But with using vesa (as you suggested) it should be possible to write a working xorg,conf.

Post Reply
  • Similar Topics
    Replies
    Views
    Last post

Return to “ThinkPad T4x Series”

Who is online

Users browsing this forum: No registered users and 37 guests