Results 1 to 6 of 6

Thread: How to edit XORG.CONF file iMac G3 PPC running with ubuntu 9.04?

  1. #1
    Join Date
    Nov 2011
    Posts
    60

    How to edit XORG.CONF file iMac G3 PPC running with ubuntu 9.04?

    As the title of above mentioned thread is saying what I am looking for. I am having iMac G3 PPC on which I have installed UBUNTU 9.04. Well this particular device I am getting issue with display properties. I know that there is need of editing xorg.conf file but I don’t know how to do the same?

  2. #2
    Join Date
    Nov 2010
    Posts
    363

    Re: How to edit XORG.CONF file iMac G3 PPC running with ubuntu 9.04?

    You should copy and paste the below mentioned code in the xorg.conf file.

    Code:
    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "XkbRules" "xorg"
    Option "XkbModel" "macintosh"
    Option "XkbLayout" "fr"
    Option "XkbVariant" "latin9"
    Option "XkbOptions" "lv3:rwin_switch"
    endSection
    
    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    EndSection
    
    Section "Device"
    Identifier "Configured Video Device"
    #Option "UseFBDev" "true"
    Option "CCEusecTimeout" "100000"
    EndSection
    
    Section "Monitor"
    Identifier "Configured Monitor"
    HorizSync 43-62
    VertRefresh 74-118 
    # 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"
    Modes "1024x768" "800x600" "640x480"
    EndSubsection
    EndSection
    
    Section "Module"
    Disable "dri"
    EndSection
    Once you have edited the file you should update the same by using below mentioned command.

    Code:
    sudo dpkg-reconfigure -phigh xserver-xorg

  3. #3
    Join Date
    Nov 2011
    Posts
    60

    Re: How to edit XORG.CONF file iMac G3 PPC running with ubuntu 9.04?

    Well I tried above mentioned thing and it worked for me with an error message.

    (II) FBDEV(0): using default device
    (II) Running in FRAMEBUFFER Mode
    (**) FBDEV(0): Depth 24, (--) framebuffer bpp 32
    (==) FBDEV(0): RGB weight 888
    (==) FBDEV(0): Default visual is TrueColor
    (==) FBDEV(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) FBDEV(0): hardware: OFfb ATY,Rage12 (video memory: 600kB)
    (II) FBDEV(0): checking modes against framebuffer device...
    (II) FBDEV(0): mode "1024x768" test failed
    (II) FBDEV(0): mode "800x600" test failed
    (II) FBDEV(0): mode "640x480" test failed
    (II) FBDEV(0): checking modes against monitor...
    (--) FBDEV(0): Virtual size is 800x600 (pitch 800)
    (**) FBDEV(0): Built-in mode "current": 100.0 MHz, 119.0 kHz, 186.0 Hz
    (II) FBDEV(0): Modeline "current"x0.0 100.00 800 816 824 840 600 616 624 640 -hsync -vsync -csync (119.0 kHz)
    (==) FBDEV(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (**) FBDEV(0): using shadow framebuffer
    (II) Loading sub module "shadow"
    (II) LoadModule: "shadow"
    (II) Loading /usr/lib/xorg/modules//libshadow.so
    (II) Module shadow: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 1.1.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (==) Depth 24 pixmap format is 32 bpp
    (EE) FBDEV(0): FBIOPUT_VSCREENINFO succeeded but modified mode
    (EE) FBDEV(0): mode initialization failed

    Fatal server error:
    AddScreen/ScreenInit failed for driver 0
    The log file of the error message is posted below.

    [...]
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    [...]

  4. #4
    Join Date
    Nov 2010
    Posts
    442

    Re: How to edit XORG.CONF file iMac G3 PPC running with ubuntu 9.04?

    Before you go an apply above mentioned settings and went into synaptic package manager in order to install drivers for ATI Rage 128. In order to check the same you have to go for System and click on Administration and click on Synpatic Package Manager and enter ATI into quick search and there will be 18 checkboxes in the below mentioned manner.

    Code:
    X xserver-xorg-video-ati-dbg
    X xserver-xorg-video-radeon-db
    X xserver-xorg-video-ati
    X xserver-xorg-video-radeon
    X xserver-xorg-video-mach64-dl
    X xserver-xorg-video-r128-dbg
    envyng-core
    envyng-qt
    X radeontool
    X xserver-xorg-video-mach64
    X xserver-xorg-video-r128
    libibtk-dev
    libibtk0
    X jockey-gtk
    X jockey-kde
    X jockey-common
    server-xorg-video-radeonhd-
    server-xorg-video-radeonhd
    Here X indicates the check or the grey shaded box in the above mentioned list.

  5. #5
    Join Date
    Dec 2010
    Posts
    334

    Re: How to edit XORG.CONF file iMac G3 PPC running with ubuntu 9.04?

    As far as I know ubuntu 9.10 is not having /etc/X11/xorg.conf file. If you wanted the same then you will require to create the same by your own.
    You can run the below mentioned command to create that particular file.

    Code:
    sudo nano /etc/X11/xorg.conf

  6. #6
    Join Date
    Mar 2011
    Posts
    490

    Re: How to edit XORG.CONF file iMac G3 PPC running with ubuntu 9.04?

    I am not sure about it but following command can help you out to resolve the issue associated with the display properties of your system.


    Code:
    sudo apt-get install lubuntu-desktop

Similar Threads

  1. Replies: 4
    Last Post: 01-02-2012, 01:29 AM
  2. xorg.conf in Linux Mint for Automatic configuration
    By intoxicating in forum Operating Systems
    Replies: 4
    Last Post: 02-02-2011, 10:11 AM
  3. where is xorg.conf gone?
    By Netorious in forum Operating Systems
    Replies: 4
    Last Post: 07-04-2010, 01:52 AM
  4. Configuring smb.conf file
    By Norse in forum Operating Systems
    Replies: 5
    Last Post: 16-02-2010, 09:08 PM

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
  •  
Page generated in 1,710,830,301.56359 seconds with 16 queries