Page 1 of 3 123 LastLast
Results 1 to 10 of 30

Thread: Power Mac G3 Blue and White video resolution

  1. #1
    Join Date
    Nov 2007
    Location
    Las Vegas, NV, USA
    Beans
    91

    Question Power Mac G3 Blue and White video resolution

    Hi guys, haven't been around here in a while, seems that the other OS section is completely gone, so I assume this would be the most appropriate place to ask this, since Debian and Ubuntu are similar enough.

    Okay, so I installed Debian Lenny on my Power Mac G3. 450MHz, 1GB RAM, and an ATI Rage128, the stock video card. It also has a Linksys WMP54G Wireless card which I got working effortlessly enough.

    My issue is with the screen resolution. The driver for the graphics card is installed, but I'm only getting a 800x600 resolution. My Monitor is a 1440x900 screen, so everything's quite out of proportion. I assume I may have to go into xorg.conf to tweak things, but I wouldn't know what to tweak.

    This is the only thing I need to do to make this my full time OS on this machine. Your help is greatly appreciated.


    Brandon

  2. #2
    Join Date
    Jan 2008
    Location
    Netherlands
    Beans
    2,930
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Power Mac G3 Blue and White video resolution

    please post your Xorg.conf file...
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  3. #3
    Join Date
    Nov 2007
    Location
    Las Vegas, NV, USA
    Beans
    91

    Re: Power Mac G3 Blue and White video resolution

    Code:
    Section "InputDevice"
    	Identifier	"Generic Keyboard"
    	Driver		"kbd"
    	Option		"XkbRules"	"xorg"
    	Option		"XkbModel"	"pc104"
    	Option		"XkbLayout"	"us"
    EndSection
    
    Section "InputDevice"
    	Identifier	"Configured Mouse"
    	Driver		"mouse"
    EndSection
    
    Section "Device"
    	Identifier	"Configured Video Device"
    	BusID		"PCI:0:16:0"
    	Option		"UseFBDev"		"true"
    EndSection
    
    Section "Monitor"
    	Identifier	"Configured Monitor"
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Monitor		"Configured Monitor"
    EndSection

  4. #4
    Join Date
    Jan 2008
    Location
    Netherlands
    Beans
    2,930
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Power Mac G3 Blue and White video resolution

    I think you can use the ATI driver instead of framebuffer...I will post another Xorg.conf for you, just make your existing Xorg.conf a backup one:

    Code:
    sudo mv /etc/X11/Xorg.conf /etc/X11/Xorg.conf.old
    
    sudo /etc/X11/Xorg.conf
    now paste the following Xorg.conf in there



    Code:
    Section "Files"
            RgbPath      "/usr/X11R6/lib/X11/rgb"
            ModulePath   "/usr/X11R6/lib/modules"
            FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
            FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
            FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
            FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
            FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
            FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
    EndSection
    
    Section "Module"
            Load  "dbe"
            Load  "extmod"
            Load  "glx"
            Load  "record"
            Load  "xtrap"
            Load  "freetype"
            Load  "type1"
    EndSection
    
    Section "InputDevice"
            Identifier  "Keyboard0"
            Driver      "kbd"
    	Option	    "XkbRules"	"xorg"
    	Option	    "XkbModel"	"pc104"
    	Option	    "XkbLayout"	"us"
    EndSection
    
    Section "InputDevice"
            Identifier  "Mouse0"
            Driver      "mouse"
    EndSection
    
    Section "Monitor"
            Identifier   "Monitor0"
            VendorName   "Monitor Vendor"
            ModelName    "Monitor Model"
            HorizSync    30-107
            VertRefresh  48-120
    EndSection
    
    Section "Device"
            Identifier  "Card0"
            Driver      "ati"
            VendorName  "ATI Technologies Inc"
            BoardName   "Rage 128 RE/SG"
            BusID       "PCI:0:16:0"
    EndSection
    
    Section "Screen"
            Identifier "Screen0"
            Device     "Card0"
            Monitor    "Monitor0"
            DefaultDepth 24
            SubSection "Display"
                    Viewport   0 0
                    Depth     1
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     4
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     8
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     15
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     16
                    Modes "1440x900" "1280x1024" "1024x768"
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     24
                    Modes "1440x900" "1280x1024" "1024x768"
            EndSubSection
    EndSection
    
    Section "ServerLayout"
            Identifier     "X.org Configured"
            Screen      0  "Screen0" 0 0
            InputDevice    "Mouse0" "CorePointer"
            InputDevice    "Keyboard0" "CoreKeyboard"
    EndSection
    Last edited by linuxopjemac; January 27th, 2010 at 09:19 PM.
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  5. #5
    Join Date
    Jan 2008
    Location
    Netherlands
    Beans
    2,930
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Power Mac G3 Blue and White video resolution

    then you go to a TTY:

    ctrl-alt-F1

    login as root

    then

    Code:
    /etc/init.d/gdm stop
    /etc/init.d/gdm start
    then post me the results of the Xorg log file
    Code:
    cat /var/log/Xorg.0.log
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  6. #6
    Join Date
    Jan 2008
    Location
    Netherlands
    Beans
    2,930
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Power Mac G3 Blue and White video resolution

    I edited the Xorg.conf file, it had a mistake in there, in the modes section of default depth 24
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  7. #7
    Join Date
    Nov 2007
    Location
    Las Vegas, NV, USA
    Beans
    91

    Re: Power Mac G3 Blue and White video resolution

    Upon restarting GDM, I'm getting an Xorg error, telling me xorg can't start:

    Code:
    Module Loader preset
    Markers: (--) probed, (**) from config file, (==) default setting,
                  (++) from command line, (!!) notice, (II) informational,
                  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan 27 23:58:23 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (EE) Failed to load module "pcidata" (module does not exist, 0)
    
    Fatal server error:
    Unable to load required base modules, Exiting...
    Here are other warnings I get in the extended readout using the same key as in the above notice:

    Code:
    (WW)The directory "/usr/X11R6/lib/X11/fonts/misc/" does not exist. 
    Entry deleted from font path
    
    The same notice for the following directories:
    
    /usr/X11R6/lib/X11/fonts/TFF/
    /usr/X11R6/lib/X11/fonts/Type1/
    /usr/X11R6/lib/X11/fonts/CID/
    /usr/X11R6/lib/X11/fonts/75dpi/
    /usr/X11R6/lib/X11/fonts/100dpi/
    
    (WW) FontPath is completely invalid. Using compiled in default.
    (==) FontPath set to:
    /usr/share/fonts/X11/misc
    /usr/share/fonts/X11/cyrillic
    /usr/share/fonts/X11/100dpi/:unscaled
    /usr/share/fonts/X11/75dpi/:unscaled
    /usr/share/fonts/X11/Type1
    /usr/share/fonts/X11/100dpi
    /usr/share/fonts/X11/75dpi
    /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
    I'm typing all of this, if you need an entire read out of the file, I can run a reconfig of the xorg server and copy paste the entire file here. These were just the errors and warnings.

    And thank you for already creating an xorg file, that was beyond what I expected.

  8. #8
    Join Date
    Jan 2008
    Location
    Netherlands
    Beans
    2,930
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Power Mac G3 Blue and White video resolution

    Presuming you typed the whole error message we will delete the font stuff from your Xorg.conf file as probably the paths do not fit...you can try to find out later


    Code:
    Section "Module"
            Load  "dbe"
            Load  "extmod"
            Load  "glx"
            Load  "record"
            Load  "xtrap"
            Load  "freetype"
            Load  "type1"
    EndSection
    
    Section "InputDevice"
            Identifier  "Keyboard0"
            Driver      "kbd"
    	Option	    "XkbRules"	"xorg"
    	Option	    "XkbModel"	"pc104"
    	Option	    "XkbLayout"	"us"
    EndSection
    
    Section "InputDevice"
            Identifier  "Mouse0"
            Driver      "mouse"
    EndSection
    
    Section "Monitor"
            Identifier   "Monitor0"
            VendorName   "Monitor Vendor"
            ModelName    "Monitor Model"
            HorizSync    30-107
            VertRefresh  48-120
    EndSection
    
    Section "Device"
            Identifier  "Card0"
            Driver      "ati"
            VendorName  "ATI Technologies Inc"
            BoardName   "Rage 128 RE/SG"
            BusID       "PCI:0:16:0"
    EndSection
    
    Section "Screen"
            Identifier "Screen0"
            Device     "Card0"
            Monitor    "Monitor0"
            DefaultDepth 24
            SubSection "Display"
                    Viewport   0 0
                    Depth     1
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     4
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     8
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     15
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     16
                    Modes "1440x900" "1280x1024" "1024x768"
            EndSubSection
            SubSection "Display"
                    Viewport   0 0
                    Depth     24
                    Modes "1440x900" "1280x1024" "1024x768"
            EndSubSection
    EndSection
    
    Section "ServerLayout"
            Identifier     "X.org Configured"
            Screen      0  "Screen0" 0 0
            InputDevice    "Mouse0" "CorePointer"
            InputDevice    "Keyboard0" "CoreKeyboard"
    EndSection
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  9. #9
    Join Date
    Nov 2007
    Location
    Las Vegas, NV, USA
    Beans
    91

    Re: Power Mac G3 Blue and White video resolution

    That worked, sort of. The correct resolution now appears, and I was able to set it to the display's native 1440x900, but there's still a quirk.

    There are vertical soft lines that run across the screen, and the fonts aren't smooth. It looks like maybe a refresh rate issue? I'm not sure. The only refresh rate I'm able to pick is 60Hz, and I know that the monitor is capable of 75Hz.

    Also, there's a resolution available higher than 1440x900, and it's 1440x1024.

    Don't know if this has any relevance, I just thought it was odd since it wasn't in the Xorg.conf.

  10. #10
    Join Date
    Jan 2008
    Location
    Netherlands
    Beans
    2,930
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Power Mac G3 Blue and White video resolution

    maybe HorizSync 30-107
    VertRefresh 48-120
    is not correct. What happens if you delete that section ?
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

Page 1 of 3 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •