Page 3 of 8 FirstFirst 12345 ... LastLast
Results 21 to 30 of 73

Thread: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

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

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    Gadell: which iMac G3 do you have ?
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  2. #22
    Join Date
    Jul 2009
    Location
    Anglet, France
    Beans
    6
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    I have "400 mhz blueish iMac (slot in CD one) with 500 Megs RAM." I'm actually running 8.04 LTS version, but it's sluggish and cannot see flash animations. It's my son's computer in fact.

    But my last post was intended to be for someone called David who asks for help with his iMac running Xubuntu 9.10. He contacted me via private message and I was trying to switch to the thread.

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

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    and what machine does David have then ?
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  4. #24
    Join Date
    Jul 2009
    Location
    Anglet, France
    Beans
    6
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    This is Davis's original message:

    I am having display problems where the screen seems to be stuck in low color with my iMac G3 runniing Xubuntu 9.10, and I saw you posted a solution involving xorg.conf for someone who was having similar problems. So I was wondering if you could give me more detailed instructions (possibly step-by-step)because I am a Linux n00b and new to macs too.

    -Davidx385 "

    Now I think that we have to wait for David to answer the questions and let us help him !

  5. #25
    Join Date
    Jun 2009
    Location
    Easton, PA
    Beans
    9
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    Quote Originally Posted by gadell View Post
    This is Davis's original message:

    I am having display problems where the screen seems to be stuck in low color with my iMac G3 runniing Xubuntu 9.10, and I saw you posted a solution involving xorg.conf for someone who was having similar problems. So I was wondering if you could give me more detailed instructions (possibly step-by-step)because I am a Linux n00b and new to macs too.

    -Davidx385 "

    Now I think that we have to wait for David to answer the questions and let us help him !
    I have the First Slot Loader iMac G3 (350 MHz, 1 gig Ram) Oh and by the way I tried editing my xorg.conf file with the method the Gadell posted, but I'm not sure if I did it right, I basically just copy and pasted into the terminal.
    Last edited by davidx385; January 22nd, 2010 at 10:36 PM.

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

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    I didn't really follow the thread, but I have a working Xorg.conf file for you:

    Code:
    ##imac-ppc-slot-loader-350-xorg.conf#################
    
    # xorg.conf (X.Org 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 xorg.conf manual page.
    # (Type "man 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 "Monitor"
    Identifier "Configured Monitor"
    HorizSync 58-62
    VertRefresh 75-117
    #ModeLine "1024x768" 78.75 1024 1044 1140 1328 768 781 784 820 +hsync +vsync
    #ModeLine "800x600" 62.40 800 821 901 1040 600 609 612 644 +hsync +vsync
    #Modeline "640x480" 49.90 640 657 721 832 480 481 484 514 +hsync +vsync
    EndSection
    
    Section "Screen"
    Identifier "Default Screen"
    Monitor "Configured Monitor"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    #Virtual 1024 768
    EndSubSection
    EndSection
    
    Section "Module"
    Disable "dri"
    EndSection
    
    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbVariant" "intl"
    Option "XkbOptions" "lv3:ralt_switch"
    EndSection
    
    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    EndSection
    
    Section "Device"
    Identifier "Configured Video Device"
    Option "CCEusecTimeout" "100000"
    #Option "UseFBDev" "true"
    EndSection
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  7. #27
    Join Date
    Jun 2009
    Location
    Easton, PA
    Beans
    9
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    Quote Originally Posted by linuxopjemac View Post
    I didn't really follow the thread, but I have a working Xorg.conf file for you:

    Code:
    ##imac-ppc-slot-loader-350-xorg.conf#################
    
    # xorg.conf (X.Org 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 xorg.conf manual page.
    # (Type "man 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 "Monitor"
    Identifier "Configured Monitor"
    HorizSync 58-62
    VertRefresh 75-117
    #ModeLine "1024x768" 78.75 1024 1044 1140 1328 768 781 784 820 +hsync +vsync
    #ModeLine "800x600" 62.40 800 821 901 1040 600 609 612 644 +hsync +vsync
    #Modeline "640x480" 49.90 640 657 721 832 480 481 484 514 +hsync +vsync
    EndSection
    
    Section "Screen"
    Identifier "Default Screen"
    Monitor "Configured Monitor"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    #Virtual 1024 768
    EndSubSection
    EndSection
    
    Section "Module"
    Disable "dri"
    EndSection
    
    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbVariant" "intl"
    Option "XkbOptions" "lv3:ralt_switch"
    EndSection
    
    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    EndSection
    
    Section "Device"
    Identifier "Configured Video Device"
    Option "CCEusecTimeout" "100000"
    #Option "UseFBDev" "true"
    EndSection
    So How do I use this? do I copy and paste into the terminal?

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

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    ok, sorry. I didn't know you were that kind of a n00b

    in the terminal you do the following, first we copy your old config file to a new name and then we paste the info I gave you into the new Xorg.conf file:

    Code:
    sudo mv /etc/X11/Xorg.conf /etc/X11/Xorg.conf.old
    sudo nano /etc/X11/Xorg.conf
    now you enter an editor, just copy the file I provided you and you paste it into the editor.

    then you need to exit the editor by typing CTRL-X, it will ask you to save it, type "y: for yes.

    Then you need to restart X:
    Code:
    sudo /etc/init.d/gdm stop
    sudo /etc/init.d/gdm start
    hopefully you now enter a GUI.
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

  9. #29
    Join Date
    Jun 2009
    Location
    Easton, PA
    Beans
    9
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    Quote Originally Posted by linuxopjemac View Post
    ok, sorry. I didn't know you were that kind of a n00b

    in the terminal you do the following, first we copy your old config file to a new name and then we paste the info I gave you into the new Xorg.conf file:

    Code:
    sudo mv /etc/X11/Xorg.conf /etc/X11/Xorg.conf.old
    sudo nano /etc/X11/Xorg.conf
    now you enter an editor, just copy the file I provided you and you paste it into the editor.

    then you need to exit the editor by typing CTRL-X, it will ask you to save it, type "y: for yes.

    Then you need to restart X:
    Code:
    sudo /etc/init.d/gdm stop
    sudo /etc/init.d/gdm start
    hopefully you now enter a GUI.
    The Only thing that I'm having trouble with now is the "Restart X" Part... Where do I type that?

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

    Re: iMac G3-Color Depth is 16-Bit(I believe), How do I change it?

    in the same terminal program.
    Linux on your Apple Mac │ iLinux
    http://mac.linux.be
    http://www.mintppc.org

Page 3 of 8 FirstFirst 12345 ... LastLast

Tags for this Thread

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
  •