Client Side Rendering Yes or No

Good Day,
We have a RDS2012 R2 environment. We were not able to use the Easy Print Driver due to speed and now our printing environment is:
1. All printers installed and shared off a W2k12 R2 File and Print server
2. Appropriate printers are mapped via Group Policy upon a user starting an RDS session.
This is working much faster than we were using the Easy Printer Driver, but I am wondering if it could be faster yet if we turn off Client Side Rendering which is on the Sharing Tab (Printer Properties) of the shared printer?
Steve J.

About 70 printers shared off of the file and print server, but that is the only thing that server is doing. I would rather have it do as much work as possible and leave the RDS servers to do their applications. Did I just answer my own question?
If the end users are all WAN end users, yet the RDS servers and Print server are on the LAN, does either of these options mean more or less WAN traffic?
Steve J.
I think you did. :)
As I understood it you aren't using any printer redirection, all printers are mapped in the session. If all end users are WAN users shouldn't matter since they connect to  a RDS Server and all printing is either happening on RDS Server or Print Server. 

Similar Messages

  • Client Side Rendering on Terminal Servers

    I’m having horrible printer issues on my Terminal Servers such as slow printing, slow to add printers, some applications load slowly because they are enumerating the list of printer (thanks Procmon), slow logons, etc. I'm trying to get Client Side Rendering
    (CSR) disabled. From what I can tell it still appears to be on. Terminal Server are Windows Server 2008 SP2 x86.
    On my print servers I have verified that all printers have Render print jobs on client computer unchecked. I have a Group Policy linked to the OU that the Terminal Servers are in that has
    Always render print jobs on the server set to enabled. Per
    http://blogs.technet.com/b/askperf/archive/2008/02/10/ws2008-client-side-rendering.aspx I have verified that on each Terminal Server in
    HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Printers the
    ForceCSREMFDespooling value is present & set to 1 so the GP is being applied.
    However I still have tons of entries in HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Providers\Client Side Rendering Print Provider\Servers\<SERVERNAME>\Printers.
    I have found KB958656 which seems to describe my problem that CSR is not being disabled. However one of the files it updates is older than a file that I have (win32spl.dll) & one is newer (printcom.dll).
    Printcom.dll in hotfix is 6.0.6001.22288 mine is 6.0.6001.18000
    Win32spl.dll in hotfix is 6.0.6001.22288 mine is 6.0.6002.18005
    Has anyone else seen this behavior & been able to get CSR disabled?
    Has anyone else had success with the KB hotfix mentioned or know whether or not installing it would causing any issues (since it has that older file)?
    Thanks in an advance to any input.
    Patrick Hoban
    http://patrickhoban.wordpress.com

    Alan/Patrick,
    Hi, sorry, went away on leave for a while so didn’t respond.
    Alan – our case was REG:112081612189183.
    For someone who has been dealing with MS support for about 20 years, this was the most disappointing of any support call I’ve ever had raised – to have the call shut
    down, without a perfmon trace, process explorer analysis, or hang dump analysis (of spooler) – and simply blame “3<sup>rd</sup> party drivers” without any proof – is utterly deplorable.
    Anyway, for anyone’s benefit who has similar problems – trying to do direct printing from RDS – I’ve managed to get a solution working. 
    Here are the details;
    A nightly print spooler clean-up script that;
    Stops the spooler
    Deletes the entire key under “HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Providers\Client Side Rendering Print Provider”
    Re-creates the key (empty) and sets the value "RemovePrintersAtLogoff"=dword:00000000
    Note, this was vital. 
    MS support had recommended we set this to 1, along with some other keys (InactiveGuidPrinterAge, 
    InactiveGuidPrinterTrim) with specific values.  If we used these MS support recommended values, our RDS serer would not enumerate printers for more than 3-4 hours before requiring a restart of the spooler.
    Restart the spooler
    Map a printer (just to make sure it works)
    Clean up the USERS\.DEFAULT\Printers key on all existing servers
    There was heaps of crap here, the default user NTUSER.DAT was over 800MB in size
    Modify the security on the registry, using GPO to deny SYSTEM write access as below, to stop the crap writing here again;
    USERS\.DEFAULT\Printers
    Deny Set value
    Deny Create Subkey
    Run NGREGOPT on all servers to compress the DEFAULT and SOFTWARE hives back down.
    Even though we had deleted the crap from “Client Side Rendering Print Provider” and the DEFAULT user hive, the registry files were still large of course, and needed to be compressed to reduce
    paged pool usage.
    Note, make sure no users are on the server when this is run !
    With the nightly spooler ‘refresh’ and the registry security changes, we are no longer seeing any problems. 
    In addition the paged pool has gone down from 5GB to 1GB – which I believe was related to the registry bloat that had occurred previously. 
    Cleaning up the keys and using NGREGOPT has fixed this.
    In addition, I am running a spooler check script every 30 minutes on each of the 13 servers. 
    This script checks how long it takes to enumerate the printers for the specific test user. 
    If it takes more than 20 seconds, we get an alert.
    Since I have made the changes above, we no longer have any printing problems… touch wood.. even using HPD 5.4 for most printers, and other (RICHO) 3<sup>rd</sup> party
    drivers.
    If anyone wants the scripts (the spooler refresh or the check script) let me know on david.frith<at>glfconsulting.com.au
    ta

  • Show the Read more link in the list view webpart using Client side Rendering

    Hi,
    I have a share point list name as Team.It contains two columns like Role(single line of text) and Name( people and picker).
    I want the display the list view webpart like below format using JS Link/Client side rendering concept.
    If list contains more than 3 items (display like this)
    >TeamMemberName1
    >TeamMemberName2
    >TeamMemberName3
    Readmore... (Read more link should expand all the team members)
    If list contains more than 3 items (display like this)
    >TeamMemberName1
    >TeamMemberName2
    >TeamMemberName3
    Could you please provide the code.It is very urgent for me.
    Thanks for the help!!!

    (function () {
        debugger;
        //Create our Namespace object to avoid polluting the global namespace
        var pfh = pfh || {};
        //Define our Header Render pattern
        pfh.renderHeader = function (ctx) {
            var headerHTML = "<ul>";
            return headerHTML;
        pfh.renderFooter = function (ctx) {
            //Define any footer content here.
            var footerHTML = "</ul>";
            return footerHTML;
        pfh.CustomItem = function (ctx) {
            var itemHTML = "<li>" + ctx.CurrentItem.TeamMemberName[0].title; + "</li>";
            return itemHTML;
        //Define any code/function that needs to be run AFTER the page has been completed and the DOM is complete.
        pfh.PostRenderCallback = function (ctx) {
        //Define the function that will register our Override with SharePoint.
        pfh.RegisterTemplateOverride = function () {
            var overrideCtx = {};
            overrideCtx.Templates = {};
            overrideCtx.Templates.Header = pfh.renderHeader;
            overrideCtx.Templates.Footer = pfh.renderFooter;
            overrideCtx.Templates.Item = pfh.CustomItem;
            overrideCtx.onPostRender = [pfh.PostRenderCallback(ctx)];
            overrideCtx.BaseViewID = 98; //Note: We're using BaseView ID 99 to match our override below
            overrideCtx.ListTemplateType = 100;
            SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
        //Now we load in our override to ensure that this Override is only applied to the intended ListView
        ExecuteOrDelayUntilScriptLoaded(function () {
            var OldRenderListView = RenderListView;
            RenderListView = function (ctx, webPartID) {
                if (ctx.ListTitle == "Test") {
                    ctx.BaseViewID = 98;
                OldRenderListView(ctx, webPartID)
        }, 'ClientTemplates.js');
        //Register for MDS enabled site otherwise the display template doesn't work on refresh
        //Note: The ~sitecollection tokens cannot be used here!
        RegisterModuleInit("/_catalogs/masterpage/Display Templates/csr_ovr_RenderListTemplate_Fixed.js", pfh.RegisterTemplateOverride); // CSR-override for MDS enabled site
        pfh.RegisterTemplateOverride(); //CSR-override for MDS disabled site (because we need to call the entry point function in this case whereas it is not needed for anonymous functions)
    I am using the above script to render the items.
    I am new to the CSR.
    Where do i need to include your script in my script.
    Please help on this.
    Thank you for reply sagar.
    Please note that i am not using content search webpart.

  • RDS WS2012R2 and "Client Side rendering"

    Hello,
    Is it normal that the CSR key continues to populate even if the CSR is disabled (verified with 'Get-Printer -Full |fl')?
    BTW winprint is used for all the printers on the print servers, and non-microsoft monitors are deleted.
    Thx,
    Ludovic H.

    Hi,
    Thank you for posting in Windows Server Forum.
    If you disable this policy setting on a client computer, the client itself will process print jobs into printer device commands. These commands will then be sent to the print server, and the server will simply pass the commands to the printer. This increases
    the workload of the client while decreasing the load on the server. If you do not enable this policy setting, the behavior is the same as disabling it.
    This policy does not determine whether offline printing will be available to the client. The client print spooler can always queue print jobs when not connected to the print server. On reconnecting to the server, the client will submit any pending print jobs.
    In cases in which the client print driver does not match the server print driver (mismatched connection), the client will always process the print job regardless of the setting of this policy.
    More information.
    1. Disable Client-Side Printer Rendering
    2. Known Issues with Client-Side Rendering
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Client-side Rendering and AIX

    Group,
    We're running a Server 2008 R2 Print Server.  Does anyone know if the Client-side Rendering option has any "gotchas" when receiving jobs from an AIX server?
    Thanks,
    Jason
    Jason Riker

    Nope.  I assume the AIX machine renders the docs there so there is no Server Side Rendering required.
    This is a setting on the machine sharing the printer that lets Windows Vista and greater clients know they need to render the document. XP and non Windows machine have no clue about this setting.
    Alan Morris formerly with Windows Printing Team

  • Disable Client Side Rendering on 2008 R2

    Hi guys, I have the following:
    several 2008 R2 RDS servers
    connecting to queues on a windows 2008 SP2 x64 print server
    print queues running the HP Universal Print Driver v 5.3
    I'm trying to offload rendering to the beefy print server. To test this, I setup a test queue using the HP UPD and turned of the 'Render Print Jobs on Client Computer' setting on the queue. I paused the queue and did the following:
    connected to the test queue
    printed several jobs
    examined the spool file sitting in the paused queue
    Now when I look at the properties of the job in the paused queue it says it is in RAW format which would indicate to me that CSR is still in place. If I use the Citrix Universal Printer the job is sent in EMF (as the CPUD cannot use CSR). I then tried to
    disable CSR using group policy on the RDS servers but the same results. Can anyone offer an explanation on this?

    Not MS bashing as I love what you guys do :)
    I guess we could look at using device specific drivers for our HP MFPs but both the implementing vendor and HP recommended the HP UPD which we use exclusively accross all the HP MFPs we have and have no issue with printing which is great. In our old RDS/Citrix
    implementation we had 100+ drivers and they were a nightmare (mostly due to the fact our RDS Servers were 2003 with some kernel mode drivers and no print host isolation) so I'd hate to go back to that setup. Also, the device specific drivers might not opt
    in either meaning I'd be getting CSR anyways. We notice for some other vendors that disabling CSR returns a good chunk of CPU cycles to the RDS servers that can be used for the users apps whilst our beefy print servers handles the driver specific stuff. I'll
    try and chase up with HP but I cannot believe they would not document this 'design'  in the UPD guide. CSR great for single user PCs but not for multi-user RDS servers in my (albeit limited) experience.

  • Client Side Rendering in List Display Form

    I would like to use CSR to customise a list display form.
    I can't seem to find any examples where people have done anything more than alter how a particular field is rendered in a display/new/edit form.  I would like to do things like alter the header, footer, the order in which the columns are displayed and
    the layout of the form overall itself.
    Playing around I notice that when I change the "CSR Render Mode" for a display form web part to "Custom (CSRCustomLayout)" the Header and Footer events fire, but then the form seems to output the labels (with no data next to them) and
    then then dumps all the data after the labels.
    Also the pre and post render methods also do not fire unless it is in Custom layout mode.  Putting it back to Standard only runs the field level override.
    What is the correct way to go abou this?  What are those CSR Render Modes for?
    Thanks,
    Richard

    Richard,
    Take a look at this part from Martin Hatch's developer series on List views. He covers off the new and edit forms in this one.
    http://www.martinhatch.com/2013/08/jslink-and-display-templates-part-3.html
    Paul.
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • Sharepoint 2013: How can I use custom filter in XsltListViewWebPart if client site rendering ?

    I wish text box on SitePage where I can input filter value  and XsltListViewWebPart will show items corresponding of my input filter.
    If server rendering I have Filter button in SPD and create parameter that bind my TextBox to Filter.
    But how to must I doing if client side rendering (CSR) ? I haven't Filter button in SPD...    

    So, I resolved it :)
    1) SPD2013 will show "Parameters" and "Filter" buttons for web part, if you click web part properties, change something and save it in SPD2013. After this dumb operation SPD2013 will show additional context menu for web part that include
    "Parameters" and "Filter" buttons. Don't ask me why  :)
    2) All filter work for list - server side, same as in SharePoint 2010. You may add parameter to web part and link filter with this parameter.
    3) Client side rendering will work with ready filtered data only. If you need update filter ->  __doPostBack (POST request)  and server side will back new filtered scope.    AJAX properties may be used to avoid
    all page redrawing.
    4) Yes, you may have additional filter on client side by override onPreRender and simply delete some records from ListData.Row but:
    - it will not affected by header XSLTListView filters
    - data page portions will be working incorrect
    - grout data will be incorrect too
    5) The worst thing it is, even I wish use client side filter in onPreRender I haven't found way how to re-render list without postback request to server. It is mean I can't apply new filter without new request to server :( Even I keep all list data
    as JSON on page. Of cause I can realize it with my own custom gridview but it will need  more effort and will be not so powerfull as use XSLTListWebPart...  

  • Client side event for h:outputText... and other JSF component

    Hello friends...
    I need client side (to use Java script ) event for change in <h:outputText /> or <h:inputText...>.
    I want to open a popup window when there is a change in there. I donot want to use onblur() for this. Is there any thing for achiev it.
    Thanks.
    Regard
    Roshan Lal ( I don't know why there is "DOG" display in LIST )
    :-)

    Hi Jacek,
    Unfortunately I think you may be stuck extending Renderer. Another possibility is creating your component via a template, which will be available in JSF 2.0. However, as JSF 2.0 won't be out for a while... you can use JSFTemplating in the meantime:
    http://java.sun.com/developer/technicalArticles/J2EE/jsf_templating/
    http://www.theserverside.com/tt/articles/article.tss?l=JSFTemplateComponent
    Good luck!
    Ken Paulsen
    https://jsftemplating.dev.java.net

  • Xf86-video-ati direct rendering yes, but glxgears shows nul [solved]

    glxinfo says i have direct rendering, but glxgears does not show anything (it still processes stuff, and gives me fps (which vary with the size and visibility of the window))
    so here are the log/outputs that might have the answer:
    glxinfo
    $ glxinfo ~
    name of display: :0.0
    libGL warning: 3D driver claims to not support visual 0x4b
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: SGI
    server glx version string: 1.2
    server glx extensions:
    GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
    GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGI_swap_control,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group
    client glx vendor string: SGI
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
    GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
    GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap
    GLX version: 1.2
    GLX extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
    GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method,
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group
    OpenGL vendor string: DRI R300 Project
    OpenGL renderer string: Mesa DRI R300 20060815 AGP 4x x86/MMX/SSE TCL
    OpenGL version string: 1.3 Mesa 7.0
    OpenGL extensions:
    GL_ARB_fragment_program, GL_ARB_imaging, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_texture_border_clamp,
    GL_ARB_texture_compression, GL_ARB_texture_cube_map,
    GL_ARB_texture_env_add, GL_ARB_texture_env_combine,
    GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3,
    GL_MESAX_texture_float, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_rectangle, GL_ARB_transpose_matrix,
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_window_pos,
    GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color,
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint,
    GL_EXT_compiled_vertex_array, GL_EXT_convolution, GL_EXT_copy_texture,
    GL_EXT_draw_range_elements, GL_EXT_gpu_program_parameters,
    GL_EXT_histogram, GL_EXT_packed_pixels, GL_EXT_polygon_offset,
    GL_EXT_rescale_normal, GL_EXT_secondary_color,
    GL_EXT_separate_specular_color, GL_EXT_stencil_two_side,
    GL_EXT_stencil_wrap, GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D,
    GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add,
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_lod_bias,
    GL_EXT_texture_mirror_clamp, GL_EXT_texture_object,
    GL_EXT_texture_rectangle, GL_EXT_vertex_array, GL_APPLE_packed_pixels,
    GL_ATI_blend_equation_separate, GL_ATI_texture_env_combine3,
    GL_ATI_texture_mirror_once, GL_IBM_rasterpos_clip,
    GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate,
    GL_MESA_pack_invert, GL_MESA_ycbcr_texture, GL_MESA_window_pos,
    GL_NV_blend_square, GL_NV_light_max_exponent, GL_NV_texture_rectangle,
    GL_NV_texgen_reflection, GL_NV_vertex_program, GL_OES_read_format,
    GL_SGI_color_matrix, GL_SGI_color_table, GL_SGIS_generate_mipmap,
    GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp,
    GL_SGIS_texture_lod
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    0x23 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x24 24 tc 0 32 0 r y . 8 8 8 8 0 24 0 0 0 0 0 0 0 None
    0x25 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x26 24 tc 0 32 0 r y . 8 8 8 8 0 24 0 16 16 16 16 0 0 Slow
    0x27 24 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x28 24 tc 0 32 0 r . . 8 8 8 8 0 24 0 0 0 0 0 0 0 None
    0x29 24 tc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x2a 24 tc 0 32 0 r . . 8 8 8 8 0 24 0 16 16 16 16 0 0 Slow
    0x2b 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x2c 24 dc 0 32 0 r y . 8 8 8 8 0 24 0 0 0 0 0 0 0 None
    0x2d 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x2e 24 dc 0 32 0 r y . 8 8 8 8 0 24 0 16 16 16 16 0 0 Slow
    0x2f 24 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None
    0x30 24 dc 0 32 0 r . . 8 8 8 8 0 24 0 0 0 0 0 0 0 None
    0x31 24 dc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow
    0x32 24 dc 0 32 0 r . . 8 8 8 8 0 24 0 16 16 16 16 0 0 Slow
    0x4b 32 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 Ncon
    Xorg.log
    X Window System Version 1.3.0
    Release Date: 19 April 2007
    X Protocol Version 11, Revision 0, Release 1.3
    Build Operating System: UNKNOWN
    Current Operating System: Linux dell 2.6.21-ARCH #1 SMP PREEMPT Wed Jul 4 18:21:19 EDT 2007 i686
    Build Date: 06 July 2007
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    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: Thu Jul 26 02:18:12 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/75dpi").
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
    (WW) The directory "/usr/share/fonts/75pi" does not exist.
    Entry deleted from font path.
    (**) FontPath set to:
    built-ins,
    /usr/share/fonts/local,
    /usr/share/fonts/artwiz-fonts,
    /usr/share/fonts/misc,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) RgbPath set to "/usr/share/X11/rgb"
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (**) Option "AIGLX" "true"
    (**) Extension "Composite" is enabled
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81d92e0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 1.2
    X.Org XInput driver : 0.7
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.2
    (++) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 8086,1130 card 0000,0000 rev 02 class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 8086,1131 card 0000,0000 rev 02 class 06,04,00 hdr 01
    (II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 02 class 06,04,00 hdr 01
    (II) PCI: 00:1f:0: chip 8086,2440 card 0000,0000 rev 02 class 06,01,00 hdr 80
    (II) PCI: 00:1f:1: chip 8086,244b card 8086,4541 rev 02 class 01,01,80 hdr 00
    (II) PCI: 00:1f:2: chip 8086,2442 card 8086,4541 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1f:3: chip 8086,2443 card 8086,4541 rev 02 class 0c,05,00 hdr 00
    (II) PCI: 01:00:0: chip 1002,4152 card 174b,0830 rev 00 class 03,00,00 hdr 80
    (II) PCI: 01:00:1: chip 1002,4172 card 174b,0831 rev 00 class 03,80,00 hdr 00
    (II) PCI: 02:0b:0: chip 9004,5078 card 0000,0000 rev 01 class 01,00,00 hdr 00
    (II) PCI: 02:0c:0: chip 1102,0002 card 1102,8022 rev 0a class 04,01,00 hdr 80
    (II) PCI: 02:0c:1: chip 1102,7002 card 1102,0020 rev 0a class 09,80,00 hdr 80
    (II) PCI: 02:0d:0: chip 10b7,9200 card 10b7,1000 rev 78 class 02,00,00 hdr 00
    (II) PCI: End of PCI scan
    (II) Intel Bridge workaround enabled
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 1 I/O range:
    [0] -1 0 0x0000c000 - 0x0000cfff (0x1000) IX[b]
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xff800000 - 0xff8fffff (0x100000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xb6900000 - 0xf69fffff (0x40100000) MX[b]
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
    [0] -1 0 0x0000d000 - 0x0000dfff (0x1000) IX[b]
    (II) Bus 2 non-prefetchable memory range:
    [0] -1 0 0xff900000 - 0xff9fffff (0x100000) MX[b]
    (II) Bus 2 prefetchable memory range:
    [0] -1 0 0xf6a00000 - 0xf6afffff (0x100000) MX[b]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (--) PCI:*(1:0:0) ATI Technologies Inc RV350 AR [Radeon 9600] rev 0, Mem @ 0xe0000000/28, 0xff8f0000/16, I/O @ 0xc800/8, BIOS @ 0xff8c0000/17
    (--) PCI: (1:0:1) ATI Technologies Inc RV350 AR [Radeon 9600] (Secondary) rev 0, Mem @ 0xd0000000/28, 0xff8e0000/16
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) PCI Memory resource overlap reduced 0xf8000000 from 0xfbffffff to 0xf7ffffff
    (II) Active PCI resource ranges:
    [0] -1 0 0xff9fec00 - 0xff9fec7f (0x80) MX[b]
    [1] -1 0 0xff9ff000 - 0xff9fffff (0x1000) MX[b]
    [2] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [3] -1 0 0xff8e0000 - 0xff8effff (0x10000) MX[b](B)
    [4] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [5] -1 0 0xff8c0000 - 0xff8dffff (0x20000) MX[b](B)
    [6] -1 0 0xff8f0000 - 0xff8fffff (0x10000) MX[b](B)
    [7] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [8] -1 0 0x0000dc00 - 0x0000dc7f (0x80) IX[b]
    [9] -1 0 0x0000dff0 - 0x0000dff7 (0x8) IX[b]
    [10] -1 0 0x0000df80 - 0x0000df9f (0x20) IX[b]
    [11] -1 0 0x0000efa0 - 0x0000efaf (0x10) IX[b]
    [12] -1 0 0x0000ef80 - 0x0000ef9f (0x20) IX[b]
    [13] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [14] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[b](B)
    (II) Inactive PCI resource ranges:
    [0] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xff9fec00 - 0xff9fec7f (0x80) MX[b]
    [1] -1 0 0xff9ff000 - 0xff9fffff (0x1000) MX[b]
    [2] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [3] -1 0 0xff8e0000 - 0xff8effff (0x10000) MX[b](B)
    [4] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [5] -1 0 0xff8c0000 - 0xff8dffff (0x20000) MX[b](B)
    [6] -1 0 0xff8f0000 - 0xff8fffff (0x10000) MX[b](B)
    [7] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [8] -1 0 0x0000dc00 - 0x0000dc7f (0x80) IX[b]
    [9] -1 0 0x0000dff0 - 0x0000dff7 (0x8) IX[b]
    [10] -1 0 0x0000df80 - 0x0000df9f (0x20) IX[b]
    [11] -1 0 0x0000efa0 - 0x0000efaf (0x10) IX[b]
    [12] -1 0 0x0000ef80 - 0x0000ef9f (0x20) IX[b]
    [13] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [14] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[b](B)
    (II) Inactive PCI resource ranges after removing overlaps:
    [0] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xff9fec00 - 0xff9fec7f (0x80) MX[b]
    [5] -1 0 0xff9ff000 - 0xff9fffff (0x1000) MX[b]
    [6] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [7] -1 0 0xff8e0000 - 0xff8effff (0x10000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [9] -1 0 0xff8c0000 - 0xff8dffff (0x20000) MX[b](B)
    [10] -1 0 0xff8f0000 - 0xff8fffff (0x10000) MX[b](B)
    [11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [13] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [14] -1 0 0x0000dc00 - 0x0000dc7f (0x80) IX[b]
    [15] -1 0 0x0000dff0 - 0x0000dff7 (0x8) IX[b]
    [16] -1 0 0x0000df80 - 0x0000df9f (0x20) IX[b]
    [17] -1 0 0x0000efa0 - 0x0000efaf (0x10) IX[b]
    [18] -1 0 0x0000ef80 - 0x0000ef9f (0x20) IX[b]
    [19] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [20] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[b](B)
    [21] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    (II) LoadModule: "i2c"(II) Module already built-in
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.3.0, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "xtrap"
    (II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
    (II) Module xtrap: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DEC-XTRAP
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (**) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "ati"
    (II) Loading /usr/lib/xorg/modules/drivers//ati_drv.so
    (II) Module ati: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 6.6.192
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 1.2
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.1.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.1.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) ATI: ATI driver wrapper (version 6.6.192) for chipsets: mach64, rage128, radeon
    (II) Primary Device is: PCI 01:00:0
    (II) Loading sub module "radeon"
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 4.2.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI),
    ATI ES1000 515E (PCI), ATI ES1000 5969 (PCI),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330/340/350 (A4) 4137,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon Mobility 7000 IGP 4437,
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 8500 AIW BB (AGP),
    ATI Radeon 8500 AIW BC (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP),
    ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835, ATI Radeon 9100 PRO IGP 7834,
    ATI Radeon Mobility 9200 IGP 7835, ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP),
    ATI FireGL RV360 AV (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon 9650,
    ATI Radeon 9800SE AH (AGP), ATI Radeon 9800 AI (AGP),
    ATI Radeon 9800 AJ (AGP), ATI FireGL X2 AK (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE),
    ATI Radeon Mobility X600 (M24) 3150 (PCIE),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE),
    ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE), ATI FireGL V5000 (RV410) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 XT (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 SE (RV410) (PCIE),
    ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 SE (R420) (AGP),
    ATI Radeon AIW X800 VE (R420) JT (AGP),
    ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE), ATI FireGL V7100 (R423) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Radeon X800 (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 XTP (R430) (PCIE),
    ATI Radeon X850 5D4C (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP)
    (WW) RADEON: No matching Device section for instance (BusID PCI:1:0:1) found
    (--) Chipset ATI Radeon 9600XT AR (AGP) found
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xff9fec00 - 0xff9fec7f (0x80) MX[b]
    [5] -1 0 0xff9ff000 - 0xff9fffff (0x1000) MX[b]
    [6] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [7] -1 0 0xff8e0000 - 0xff8effff (0x10000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [9] -1 0 0xff8c0000 - 0xff8dffff (0x20000) MX[b](B)
    [10] -1 0 0xff8f0000 - 0xff8fffff (0x10000) MX[b](B)
    [11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [12] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [13] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [14] -1 0 0x0000dc00 - 0x0000dc7f (0x80) IX[b]
    [15] -1 0 0x0000dff0 - 0x0000dff7 (0x8) IX[b]
    [16] -1 0 0x0000df80 - 0x0000df9f (0x20) IX[b]
    [17] -1 0 0x0000efa0 - 0x0000efaf (0x10) IX[b]
    [18] -1 0 0x0000ef80 - 0x0000ef9f (0x20) IX[b]
    [19] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [20] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[b](B)
    [21] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xff9fec00 - 0xff9fec7f (0x80) MX[b]
    [5] -1 0 0xff9ff000 - 0xff9fffff (0x1000) MX[b]
    [6] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [7] -1 0 0xff8e0000 - 0xff8effff (0x10000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [9] -1 0 0xff8c0000 - 0xff8dffff (0x20000) MX[b](B)
    [10] -1 0 0xff8f0000 - 0xff8fffff (0x10000) MX[b](B)
    [11] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [12] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [13] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [14] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [15] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [16] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [17] -1 0 0x0000dc00 - 0x0000dc7f (0x80) IX[b]
    [18] -1 0 0x0000dff0 - 0x0000dff7 (0x8) IX[b]
    [19] -1 0 0x0000df80 - 0x0000df9f (0x20) IX[b]
    [20] -1 0 0x0000efa0 - 0x0000efaf (0x10) IX[b]
    [21] -1 0 0x0000ef80 - 0x0000ef9f (0x20) IX[b]
    [22] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [23] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[b](B)
    [24] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [25] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [26] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (**) RADEON(0): RADEONPreInit
    (II) RADEON(0): MMIO registers at 0xff8f0000: size 64KB
    (II) RADEON(0): PCI bus 1 card 0 func 0
    (==) RADEON(0): Depth 24, (==) framebuffer bpp 32
    (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) RADEON(0): Default visual is TrueColor
    (**) RADEON(0): Option "AGPMode" "4"
    (**) RADEON(0): Option "RenderAccel" "true"
    (**) RADEON(0): Option "SubPixelOrder" "RGB"
    (**) RADEON(0): Option "AccelMethod" "exa"
    (**) RADEON(0): Option "DRI" "true"
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 0.1.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (==) RADEON(0): X server will not keep DPI constant for all screen sizes
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (--) RADEON(0): Chipset: "ATI Radeon 9600XT AR (AGP)" (ChipID = 0x4152)
    (--) RADEON(0): Linear framebuffer at 0xe0000000
    (--) RADEON(0): BIOS at 0xff8c0000
    (II) RADEON(0): AGP card detected
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: drmOpenMinor returns 8
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.25.0
    (==) RADEON(0): Page Flipping disabled
    (II) RADEON(0): Will try to use DMA for Xv image transfers
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=262144K, accessible=262144K (PCI BAR=262144K)
    (--) RADEON(0): Mapped VideoRAM: 262144 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"(II) Module already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"(II) Module already built-in
    (II) RADEON(0): I2C bus "DDC" initialized.
    (II) RADEON(0): Legacy BIOS detected
    (II) RADEON(0): Connector0: DDCType-2, DACType-1, TMDSType-0, ConnectorType-3
    (II) RADEON(0): Connector1: DDCType-3, DACType-0, TMDSType--1, ConnectorType-2
    (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "DDC:ddc2" removed.
    (II) RADEON(0): DDC Type: 2, Detected Type: 3
    (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "DDC:ddc2" removed.
    (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "DDC:ddc2" removed.
    (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "DDC:ddc2" removed.
    (II) RADEON(0): DDC Type: 3, Detected Type: 0
    (II) RADEON(0): EDID data from the display on 1st port ----------------------
    (II) RADEON(0): Manufacturer: NEC Model: 665c Serial#: 16843009
    (II) RADEON(0): Year: 2004 Week: 43
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Digital Display Input
    (II) RADEON(0): Max H-Image Size [cm]: horiz.: 41 vert.: 31
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    (II) RADEON(0): Default color space is primary color space
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.638 redY: 0.342 greenX: 0.293 greenY: 0.609
    (II) RADEON(0): blueX: 0.147 blueY: 0.068 whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Supported VESA Video Modes:
    (II) RADEON(0): 720x400@70Hz
    (II) RADEON(0): 640x480@60Hz
    (II) RADEON(0): 640x480@67Hz
    (II) RADEON(0): 640x480@72Hz
    (II) RADEON(0): 640x480@75Hz
    (II) RADEON(0): 800x600@56Hz
    (II) RADEON(0): 800x600@60Hz
    (II) RADEON(0): 800x600@72Hz
    (II) RADEON(0): 800x600@75Hz
    (II) RADEON(0): 832x624@75Hz
    (II) RADEON(0): 1024x768@60Hz
    (II) RADEON(0): 1024x768@70Hz
    (II) RADEON(0): 1024x768@75Hz
    (II) RADEON(0): 1280x1024@75Hz
    (II) RADEON(0): 1152x870@75Hz
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported Future Video Modes:
    (II) RADEON(0): #0: hsize: 640 vsize 480 refresh: 85 vid: 22833
    (II) RADEON(0): #1: hsize: 800 vsize 600 refresh: 85 vid: 22853
    (II) RADEON(0): #2: hsize: 1024 vsize 768 refresh: 85 vid: 22881
    (II) RADEON(0): #3: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    (II) RADEON(0): #4: hsize: 1280 vsize 960 refresh: 75 vid: 20353
    (II) RADEON(0): #5: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) RADEON(0): #6: hsize: 1280 vsize 1024 refresh: 85 vid: 39297
    (II) RADEON(0): #7: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    (II) RADEON(0): Supported additional Video Mode:
    (II) RADEON(0): clock: 162.0 MHz Image Size: 408 x 306 mm
    (II) RADEON(0): h_active: 1600 h_sync: 1664 h_sync_end 1856 h_blank_end 2160 h_border: 0
    (II) RADEON(0): v_active: 1200 v_sync: 1201 v_sync_end 1204 v_blanking: 1250 v_border: 0
    (II) RADEON(0): Ranges: V min: 56 V max: 85 Hz, H min: 31 H max: 92 kHz, PixClock max 170 MHz
    (II) RADEON(0): Monitor name: LCD200VX
    (II) RADEON(0): Serial No: 4X001188QA
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 00ffffffffffff0038a35c6601010101
    (II) RADEON(0): 2b0e010380291f78ee60e5a3574b9c25
    (II) RADEON(0): 115054bfef80315945596159714f814f
    (II) RADEON(0): 81808199a940483f403062b0324040c0
    (II) RADEON(0): 130098321100001e000000fd0038551f
    (II) RADEON(0): 5c11000a202020202020000000fc004c
    (II) RADEON(0): 434432303056580a20202020000000ff
    (II) RADEON(0): 00345830303131383851410a202000bd
    (II) RADEON(0):
    (II) RADEON(0): Port1:
    Monitor -- TMDS
    Connector -- DVI-I
    DAC Type -- TVDAC/ExtDAC
    TMDS Type -- Internal
    DDC Type -- DVI_DDC
    (II) RADEON(0): Port2:
    Monitor -- NONE
    Connector -- VGA
    DAC Type -- Primary
    TMDS Type -- NONE
    DDC Type -- VGA_DDC
    (II) RADEON(0): ---- Primary Head: Port1 ----
    (II) RADEON(0): ---- Secondary Head: Not used ----
    (II) RADEON(0): PLL parameters: rf=2700 rd=12 min=20000 max=40000; xclk=29700
    (II) RADEON(0): DFP table revision: 3
    (II) RADEON(0): Panel infos found from DDC detailed: 1600x1200
    (WW) RADEON(0): Failed to detect secondary monitor, MergedFB/Clone mode disabled
    (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) RADEON(0): Validating modes on Primary head ---------
    (II) RADEON(0): DFP table revision: 3
    (II) RADEON(0): Valid Mode from Detailed timing table: 1600x1200
    (II) RADEON(0): Valid Mode from standard timing table: 640x480
    (II) RADEON(0): Valid Mode from standard timing table: 800x600
    (II) RADEON(0): Valid Mode from standard timing table: 1024x768
    (II) RADEON(0): Valid Mode from standard timing table: 1152x864
    (II) RADEON(0): Valid Mode from standard timing table: 1280x1024
    (II) RADEON(0): Valid Mode from standard timing table: 1280x1024
    (II) RADEON(0): Valid Mode from standard timing table: 1600x1200
    (II) RADEON(0): Valid Mode from established timing table: 1280x1024
    (II) RADEON(0): Valid Mode from established timing table: 1024x768
    (II) RADEON(0): Valid Mode from established timing table: 1024x768
    (II) RADEON(0): Valid Mode from established timing table: 1024x768
    (II) RADEON(0): Valid Mode from established timing table: 832x624
    (II) RADEON(0): Valid Mode from established timing table: 800x600
    (II) RADEON(0): Valid Mode from established timing table: 800x600
    (II) RADEON(0): Valid Mode from established timing table: 800x600
    (II) RADEON(0): Valid Mode from established timing table: 800x600
    (II) RADEON(0): Valid Mode from established timing table: 640x480
    (II) RADEON(0): Valid Mode from established timing table: 640x480
    (II) RADEON(0): Valid Mode from established timing table: 640x480
    (II) RADEON(0): Total of 20 mode(s) found.
    (II) RADEON(0): Total number of valid DDC mode(s) found: 20
    (--) RADEON(0): Virtual size is 1600x1200 (pitch 1600)
    (**) RADEON(0): *Driver mode "1600x1200": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1600x1200" 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "1600x1200": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1600x1200" 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "1280x1024": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1280x1024" 162.00 1280 1664 1856 2160 1024 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "1280x1024": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1280x1024" 162.00 1280 1664 1856 2160 1024 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "1280x1024": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1280x1024" 162.00 1280 1664 1856 2160 1024 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "1152x864": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1152x864" 162.00 1152 1664 1856 2160 864 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "1024x768": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1024x768" 162.00 1024 1664 1856 2160 768 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "1024x768": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1024x768" 162.00 1024 1664 1856 2160 768 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "1024x768": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1024x768" 162.00 1024 1664 1856 2160 768 1201 1204 1250 -hsync -vsync
    (**) RADEON(0): *Default mode "1024x768": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1024x768" 162.00 1024 1664 1856 2160 768 1201 1204 1250 -hsync -vsync
    (**) RADEON(0): *Default mode "832x624": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "832x624" 162.00 832 1664 1856 2160 624 1201 1204 1250 -hsync -vsync
    (**) RADEON(0): *Default mode "800x600": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "800x600" 162.00 800 1664 1856 2160 600 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "800x600": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "800x600" 162.00 800 1664 1856 2160 600 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "800x600": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "800x600" 162.00 800 1664 1856 2160 600 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "800x600": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "800x600" 162.00 800 1664 1856 2160 600 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "800x600": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "800x600" 162.00 800 1664 1856 2160 600 1201 1204 1250 +hsync +vsync
    (**) RADEON(0): *Default mode "640x480": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "640x480" 162.00 640 1664 1856 2160 480 1201 1204 1250 -hsync -vsync
    (**) RADEON(0): *Default mode "640x480": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "640x480" 162.00 640 1664 1856 2160 480 1201 1204 1250 -hsync -vsync
    (**) RADEON(0): *Default mode "640x480": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "640x480" 162.00 640 1664 1856 2160 480 1201 1204 1250 -hsync -vsync
    (**) RADEON(0): *Default mode "640x480": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "640x480" 162.00 640 1664 1856 2160 480 1201 1204 1250 -hsync -vsync
    (--) RADEON(0): Display dimensions: (410, 310) mm
    (--) RADEON(0): DPI set to (99, 98)
    (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.3.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"(II) Module already built-in
    (**) RADEON(0): Using EXA acceleration architecture
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules//libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 2.1.0
    ABI class: X.Org Video Driver, version 1.2
    (==) RADEON(0): Assuming overlay scaler buffer width is 1920
    (II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
    (!!) RADEON(0): For information on using the multimedia capabilities
    of this adapter, please see http://gatos.sf.net.
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xff8f0000 - 0xff8fffff (0x10000) MX[b]
    [1] 0 0 0xe0000000 - 0xefffffff (0x10000000) MX[b]
    [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1 0 0xff9fec00 - 0xff9fec7f (0x80) MX[b]
    [7] -1 0 0xff9ff000 - 0xff9fffff (0x1000) MX[b]
    [8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[b]O
    [9] -1 0 0xff8e0000 - 0xff8effff (0x10000) MX[b](B)
    [10] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[b](B)
    [11] -1 0 0xff8c0000 - 0xff8dffff (0x20000) MX[b](B)
    [12] -1 0 0xff8f0000 - 0xff8fffff (0x10000) MX[b](B)
    [13] -1 0 0xe0000000 - 0xefffffff (0x10000000) MX[b](B)
    [14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [17] 0 0 0x0000c800 - 0x0000c8ff (0x100) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [20] -1 0 0x0000dc00 - 0x0000dc7f (0x80) IX[b]
    [21] -1 0 0x0000dff0 - 0x0000dff7 (0x8) IX[b]
    [22] -1 0 0x0000df80 - 0x0000df9f (0x20) IX[b]
    [23] -1 0 0x0000efa0 - 0x0000efaf (0x10) IX[b]
    [24] -1 0 0x0000ef80 - 0x0000ef9f (0x20) IX[b]
    [25] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[b]
    [26] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[b](B)
    [27] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[b]
    [28] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [29] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (**) RADEON(0): RADEONScreenInit e0000000 0 0
    (**) RADEON(0): Map: 0xe0000000, 0x10000000
    (==) RADEON(0): Write-combining range (0xe0000000,0x10000000)
    (**) RADEON(0): RADEONSave
    (**) RADEON(0): RADEONSaveMode(0x820b378)
    (**) RADEON(0): Read: 0x00080002 0x00010014 0x00000000
    (**) RADEON(0): Read: rd=2, fd=20, pd=1
    (**) RADEON(0): Read: 0x00000000 0x00000000 0x00000000
    (**) RADEON(0): Read: rd=0, fd=0, pd=0
    (**) RADEON(0): RADEONSaveMode returns 0x820b378
    (==) RADEON(0): Using 24 bit depth buffer
    (**) RADEON(0): RADEONInitMemoryMap() :
    (**) RADEON(0): mem_size : 0x10000000
    (**) RADEON(0): MC_FB_LOCATION : 0xefffe000
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (II) RADEON(0): Depth moves disabled by default
    (**) RADEON(0): Setting up initial surfaces
    (**) RADEON(0): Setting up accel memmap
    (==) RADEON(0): Not using accelerated EXA DownloadFromScreen hook
    (II) RADEON(0): Allocating from a screen of 262144 kb
    (II) RADEON(0): Will use 16 kb for hardware cursor at offset 0x00753000
    (II) RADEON(0): Will use 7500 kb for front buffer at offset 0x00000000
    (II) RADEON(0): Will use 7500 kb for back buffer at offset 0x00757000
    (II) RADEON(0): Will use 7500 kb for depth buffer at offset 0x00eaa000
    (II) RADEON(0): Will use 119808 kb for textures at offset 0x015fd000
    (II) RADEON(0): Will use 119820 kb for X Server offscreen at offset 0x08afd000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: drmOpenMinor returns 8
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) RADEON(0): [drm] DRM interface version 1.3
    (II) RADEON(0): [drm] created "radeon" driver at busid "pci:0000:01:00.0"
    (II) RADEON(0): [drm] added 8192 byte SAREA at 0xd0e0e000
    (II) RADEON(0): [drm] mapped SAREA 0xd0e0e000 to 0xb7c5c000
    (II) RADEON(0): [drm] framebuffer handle = 0xe0000000
    (II) RADEON(0): [drm] added 1 reserved context for kernel
    (**) RADEON(0): Using AGP 4x
    (==) RADEON(0): AGP Fast Writes disabled
    (II) RADEON(0): [agp] Mode 0x1f000207 [AGP 0x8086/0x1130; Card 0x1002/0x4152]
    (II) RADEON(0): [agp] 8192 kB allocated with handle 0x00000001
    (II) RADEON(0): [agp] ring handle = 0xf8000000
    (II) RADEON(0): [agp] Ring mapped at 0xa79b4000
    (II) RADEON(0): [agp] ring read ptr handle = 0xf8101000
    (II) RADEON(0): [agp] Ring read ptr mapped at 0xb7c5b000
    (II) RADEON(0): [agp] vertex/indirect buffers handle = 0xf8102000
    (II) RADEON(0): [agp] Vertex/indirect buffers mapped at 0xa77b4000
    (II) RADEON(0): [agp] GART texture map handle = 0xf8302000
    (II) RADEON(0): [agp] GART Texture map mapped at 0xa72d4000
    (II) RADEON(0): [drm] register handle = 0xff8f0000
    (II) RADEON(0): [dri] Visual configs initialized
    (**) RADEON(0): Initializing fb layer
    (**) RADEON(0): RADEONModeInit()
    1600x1200 162.00 1600 1664 1856 2160 1200 1201 1204 1250 (24,32) +H +V
    (**) RADEON(0): dc=16200, of=32400, fd=144, pd=2
    (**) RADEON(0): RADEONInit returns 0x820bd34
    (**) RADEON(0): RADEONRestoreMode(0x820bd34)
    (**) RADEON(0): RADEONRestoreMemMapRegisters() :
    (**) RADEON(0): MC_FB_LOCATION : 0xefffe000
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (**) RADEON(0): Map Changed ! Applying ...
    (**) RADEON(0): Map applied, resetting engine ...
    (**) RADEON(0): Updating display base addresses...
    (**) RADEON(0): Memory map updated.
    (**) RADEON(0): Programming CRTC1, offset: 0x00000000
    (**) RADEON(0): Wrote: 0x0000000c 0x00010090 0x00000000 (0x0000bf00)
    (**) RADEON(0): Wrote: rd=12, fd=144, pd=1
    (**) RADEON(0): GRPH_BUFFER_CNTL from 30004c4c to 20307c7c
    (**) RADEON(0): RADEONSaveScreen(0)
    (**) RADEON(0): Initializing backing store
    (==) RADEON(0): Backing store disabled
    (**) RADEON(0): DRI Finishing init !
    (II) RADEON(0): X context handle = 0x1
    (II) RADEON(0): [drm] installed DRM signal handler
    (II) RADEON(0): [DRI] installation complete
    (**) RADEON(0): EngineRestore (32/32)
    (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    (II) RADEON(0): [drm] dma control initialized, using IRQ 11
    (II) RADEON(0): [drm] Initialized kernel GART heap manager, 5111808
    (WW) RADEON(0): DRI init changed memory map, adjusting ...
    (WW) RADEON(0): MC_FB_LOCATION was: 0xefffe000 is: 0xefffe000
    (WW) RADEON(0): MC_AGP_LOCATION was: 0xffffffc0 is: 0xf87ff800
    (**) RADEON(0): GRPH_BUFFER_CNTL from 30004c4c to 20307c7c
    (II) RADEON(0): Direct rendering enabled
    (**) RADEON(0): Setting up final surfaces
    (**) RADEON(0): Initializing Acceleration
    (II) RADEON(0): Render acceleration unsupported on R300 type cards and newer.
    (**) RADEON(0): EngineInit (32/32)
    (**) RADEON(0): Pitch for acceleration = 200
    (**) RADEON(0): EngineRestore (32/32)
    (II) EXA(0): Offscreen pixmap area of 122695680 bytes
    (II) EXA(0): Driver registered support for the following operations:
    (II) Solid
    (II) Copy
    (II) UploadToScreen
    (II) DownloadFromScreen
    (II) RADEON(0): Acceleration enabled
    (**) RADEON(0): Initializing DPMS
    (**) Option "dpms"
    (**) RADEON(0): DPMS enabled
    (**) RADEON(0): Initializing Cursor
    (==) RADEON(0): Silken mouse enabled
    (**) RADEON(0): Initializing color map
    (**) RADEON(0): Initializing DGA
    (**) RADEON(0): Initializing Xv
    (II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
    (II) Loading sub module "theatre_detect"
    (II) LoadModule: "theatre_detect"
    (II) Loading /usr/lib/xorg/modules/multimedia//theatre_detect_drv.so
    (II) Module theatre_detect: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): no multimedia table present, disabling Rage Theatre.
    (WW) RADEON(0): Option "XAANoOffscreenPixmaps" is not used
    (WW) RADEON(0): Option "AllowGLXWithComposite" is not used
    (**) RADEON(0): RADEONScreenInit finished
    (==) RandR enabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: drmOpenMinor returns 9
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (WW) AIGLX: 3D driver claims to not support visual 0x23
    (WW) AIGLX: 3D driver claims to not support visual 0x24
    (WW) AIGLX: 3D driver claims to not support visual 0x25
    (WW) AIGLX: 3D driver claims to not support visual 0x26
    (WW) AIGLX: 3D driver claims to not support visual 0x27
    (WW) AIGLX: 3D driver claims to not support visual 0x28
    (WW) AIGLX: 3D driver claims to not support visual 0x29
    (WW) AIGLX: 3D driver claims to not support visual 0x2a
    (WW) AIGLX: 3D driver claims to not support visual 0x2b
    (WW) AIGLX: 3D driver claims to not support visual 0x2c
    (WW) AIGLX: 3D driver claims to not support visual 0x2d
    (WW) AIGLX: 3D driver claims to not support visual 0x2e
    (WW) AIGLX: 3D driver claims to not support visual 0x2f
    (WW) AIGLX: 3D driver claims to not support visual 0x30
    (WW) AIGLX: 3D driver claims to not support visual 0x31
    (WW) AIGLX: 3D driver claims to not support visual 0x32
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r300_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (**) Option "Protocol" "auto"
    (**) Mouse0: Device: "/dev/input/mice"
    (**) Mouse0: Protocol: "auto"
    (**) Option "CorePointer"
    (**) Mouse0: Core Pointer
    (**) Option "Device" "/dev/input/mice"
    (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5 6 7"
    (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
    (**) Mouse0: Buttons: 11
    (**) Option "CoreKeyboard"
    (**) Keyboard0: Core Keyboard
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "us"
    (**) Keyboard0: XkbLayout: "us"
    (**) Option "XkbOptions" "altwin:super_win"
    (**) Keyboard0: XkbOptions: "altwin:super_win"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
    (II) Mouse0: ps2EnableDataReporting: succeeded
    Could not init font path element built-ins, removing from list!
    (**) RADEON(0): RADEONSaveScreen(2)
    (II) 3rd Button detected: disabling emulate3Button
    xorg.conf
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    Option "AIGLX" "true"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "built-ins"
    FontPath "/usr/share/fonts/local"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/artwiz-fonts"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75pi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "i2c"
    Load "freetype"
    Load "extmod"
    Load "xtrap"
    Load "record"
    Load "dbe"
    Load "dri"
    Load "glx"
    Load "bitmap"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbOptions" "altwin:super_win"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    Section "Monitor"
    #DisplaySize 410 310 # mm
    Identifier "Monitor0"
    VendorName "NEC"
    ModelName "LCD200VX"
    ### Comment all HorizSync and VertRefresh values to use DDC:
    HorizSync 31.0 - 92.0
    VertRefresh 56.0 - 85.0
    Option "DPMS"
    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 "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "PanelOff" # [<bool>]
    #Option "DDCMode" # [<bool>]
    #Option "MonitorLayout" # [<str>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "MergedFB" # [<bool>]
    #Option "CRT2HSync" # [<str>]
    #Option "CRT2VRefresh" # [<str>]
    #Option "CRT2Position" # [<str>]
    #Option "MetaModes" # [<str>]
    #Option "MergedDPI" # [<str>]
    #Option "MergedXinerama" # [<bool>]
    #Option "MergedXineramaCRT2IsScreen0" # [<bool>]
    #Option "MergedNonRectangular" # [<bool>]
    #Option "MergedMouseRestriction" # [<bool>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "DynamicClocks" # [<bool>]
    #Option "BIOSHotkeys" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "ConstantDPI" # [<bool>]
    Identifier "Card0"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "RV350 AR [Radeon 9600]"
    BusID "PCI:1:0:0"
    Option "XAANoOffscreenPixmaps" "true"
    Option "DRI" "true"
    Option "AccelMethod" "exa"
    Option "AGPMode" "4"
    # Option "GARTSize" "32" # <i>
    Option "SubPixelOrder" "RGB"
    Option "RenderAccel" "true"
    Option "AllowGLXWithComposite" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "DRI"
    Group 0
    Mode 0666
    EndSection
    the driver seems to be failing to show the output (what the visuals do?)/do some stages of processing. It is odd that direct rendering would seem to be "true" yet not have the visuals available to show it. (the errors like (WW) AIGLX: 3D driver claims to not support visual 0x32)
    previously this box had direct rendering, (using an older version of the same driver in testing)
    not sure when it got broken because I wasnt using it for a while
    thanks for your input
    Last edited by vogt (2007-07-26 13:46:13)

    Pretty delayed update, but this was just an error in the xorg.conf: apparently something got changed, so regenerating the config with X -configure generates one that worked well.

  • How to implement server side methods in client side player from main.asc?

    Hi,
    I am developing video player using RTMP NetConnection and NetStream object but it is giving me below Error. Can you please tell me how can I handle this. I have main.asc file form FMS server side but I don't know how to use it. 
    Async Error found = <br>Error #2095: flash.net.NetConnection was unable to invoke callback setUserID.
    Async Error found = <br>Error #2095: flash.net.NetConnection was unable to invoke callback syncChat.
    Async Error found = <br>Error #2095: flash.net.NetConnection was unable to invoke callback playingNotComplete.
    Async Error found = <br>Error #2095: flash.net.NetConnection was unable to invoke callback nowPlaying.
    Can anyone please help me ot solve this issue?
    Best regards,
    Sunil kumar

    javascript are run on the client side.. but i think what you actually mean is getting some validation to your database without submitting the form?. yes it doesn't consumes time and memory of server.. why not use ajax so you can only submit a little request.. rather than submitting the whole page..

  • Using scan name in tns file not working at client side...

    Hi All,
    I have installed 2 node RAC -11gR2 on ORACLE VM Server 2.2.1.
    now, I want to give tnsentry to dev team to use this RACDB.
    I am using scan name in tnsnames.ora file. Also I have make scan name entry in /etc/hosts not in the DNS.
    I have below entry in RACDB server...
    RACDB =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = RWCORA-cluster-scan)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = racdb)
    == now in dev user side, If I give the same above tns entry and make entry of this scan name and two VIPs in /etc/hosts file of dev user then SQL*Plus is successfully connected but not JDBC like SQL*Developer.
    I have make below entry in dev user's /etc/hosts file:
    10.40.0.51     RWCORARAC1-vip
    10.40.0.52 RWCORARAC2-vip
    10.40.0.50     RWCORA-cluster-scan
    Is this correct way or suggest me perfect link through which I canconnect all OCI, JDBC connection from client side.
    Thanks...

    you can use JDBC thin URL in SQL developer.
    Choose NEW/DATABASE CONNECTION, then put the connection type "Advanced" and then place the jdbc url as :
    jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=RWCORA-cluster-scan)(PORT=1521))(LOAD_BALANCE=yes)(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=racdb)(FAILOVER_MODE=(TYPE=SELECT)(METHOD=BASIC)(RETRIES=180)(DELAY=5))))

  • How to 'client-side include for secondary menu on page'

    Hi there.
    The following page refers:
    test page for early
    draft
    The linked page is in fact a DW CS3 tmp preview file, for
    that reason the CSS has been pulled into the html file by DW, it
    won't look that way in the eventual page file.
    After lengthy battles with the Spry Horizontal menu, I
    eventually resorted to Pop Menu Magic 2 (PPM2) to generate menus.
    I'm very happy with the product (I'm not looking for PPM2 support,
    but rather support pertaining to CSS-driven menu's in general
    relating to caching). I started out with a single main navigation
    menu, which was very comprehensive - but also very big (ito file
    size). I was hoping to cache a part of the menu on the client-side
    to reduce download times once the site visitor has downloaded the
    first page in the site (where he enters the site is not
    applicable). But that proved impossible (I think...).
    I then followed some advice to break up my main navigation
    menu, keep only the more important stuff in there and rather
    distribute the lower levels of the main menu into their own
    dedicated menus. From there the page linked above.
    The main menu at the top is fine, no problem there. On the
    left below the masthead I've created two menus, one above the other
    (it displays as a single menu but the first menu ends above the
    "Other tour lists" item). The first of these two menus contains the
    bulk of the heavy navigation elements (±160kb of the total
    page file size of 220kb). The div info that applies to this menu =
    <div id="p7PMM_2" class="p7PMMv06">. I'd love to cache this
    menu, either in full or the bulk thereof, on the client-side. That
    is implement a client-side include. When a visitor first enters our
    site the include file with the 160kb (secondary) menu gets
    downloaded together with CSS stylesheets, etc. When the visitor
    links through to a following page in our site, his machine
    (client-side) dishes up the menu to that next page without having
    to download it from our hosting server a second time.
    Is this possible and how? Any and all suggestions will be
    appreciated!
    Our clients are mostly wealthy and thus probably (virtually)
    all have high-speed broadband connections. I seriously doubt that
    any of them are running dial-up connections. Thus this issue is not
    going to sink our site. But I'd love to cut page file size if
    possible.
    Furthermore, I'm not too worried about the small portion of
    visitors that may have their javascript disabled in their browsers.
    The main navigation menu at the top of the page will still allow
    them to navigate the site. Much the same goes for SEO.
    I've tried one or two CSI javascripts and succeeded in
    actually getting the relevant tags and contents inserted in the
    html document, but the javascript would then 'break'. That is all
    the coding and menu contents would be there, but the javascript
    won't function (menu's won't pop / fly-out). I'm a little clueless
    when it comes to Javascript, and many other things :-), but I
    suspect that the Javascript in the include file does not get
    called. If the Javascript is kept in the html file, the menu
    content (elements) in the include file arrives in the html file
    after the relevant script has been called and doesn't get
    rendered??
    Once again any help / suggestions will be appreciated!

    > But that proved impossible (I
    > think...).
    Even without doing anything on your part, the images, the
    CSS, and the
    javascript is already cached client-side. You cannot cache
    any of the
    structural code client-side.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "afrilux" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi there.
    >
    > The following page refers:
    http://www.afrilux.co.za/test/1/dev2.htm
    >
    > The linked page is in fact a DW CS3 tmp preview file,
    for that reason the
    > CSS
    > has been pulled into the html file by DW, it won't look
    that way in the
    > eventual page file.
    >
    > After lengthy battles with the Spry Horizontal menu, I
    eventually resorted
    > to
    > Pop Menu Magic 2 (PPM2) to generate menus. I'm very
    happy with the product
    > (I'm
    > not looking for PPM2 support, but rather support
    pertaining to CSS-driven
    > menu's in general relating to caching). I started out
    with a single main
    > navigation menu, which was very comprehensive - but also
    very big (ito
    > file
    > size). I was hoping to cache a part of the menu on the
    client-side to
    > reduce
    > download times once the site visitor has downloaded the
    first page in the
    > site
    > (where he enters the site is not applicable). But that
    proved impossible
    > (I
    > think...).
    >
    > I then followed some advice to break up my main
    navigation menu, keep only
    > the
    > more important stuff in there and rather distribute the
    lower levels of
    > the
    > main menu into their own dedicated menus. From there the
    page linked
    > above.
    >
    > The main menu at the top is fine, no problem there. On
    the left below the
    > masthead I've created two menus, one above the other (it
    displays as a
    > single
    > menu but the first menu ends above the "Other tour
    lists" item). The first
    > of
    > these two menus contains the bulk of the heavy
    navigation elements (?160kb
    > of
    > the total page file size of 220kb). The div info that
    applies to this menu
    > =
    > <div id="p7PMM_2" class="p7PMMv06">. I'd love to
    cache this menu, either
    > in
    > full or the bulk thereof, on the client-side. That is
    implement a
    > client-side
    > include. When a visitor first enters our site the
    include file with the
    > 160kb
    > (secondary) menu gets downloaded together with CSS
    stylesheets, etc. When
    > the
    > visitor links through to a following page in our site,
    his machine
    > (client-side) dishes up the menu to that next page
    without having to
    > download
    > it from our hosting server a second time.
    >
    > Is this possible and how? Any and all suggestions will
    be appreciated!
    >
    > Our clients are mostly wealthy and thus probably
    (virtually) all have
    > high-speed broadband connections. I seriously doubt that
    any of them are
    > running dial-up connections. Thus this issue is not
    going to sink our
    > site. But
    > I'd love to cut page file size if possible.
    >
    > Furthermore, I'm not too worried about the small portion
    of visitors that
    > may
    > have their javascript disabled in their browsers. The
    main navigation menu
    > at
    > the top of the page will still allow them to navigate
    the site. Much the
    > same
    > goes for SEO.
    >
    > I've tried one or two CSI javascripts and succeeded in
    actually getting
    > the
    > relevant tags and contents inserted in the html
    document, but the
    > javascript
    > would then 'break'. That is all the coding and menu
    contents would be
    > there,
    > but the javascript won't function (menu's won't pop /
    fly-out). I'm a
    > little
    > clueless when it comes to Javascript, and many other
    things :-), but I
    > suspect
    > that the Javascript in the include file does not get
    called. If the
    > Javascript
    > is kept in the html file, the menu content (elements) in
    the include file
    > arrives in the html file after the relevant script has
    been called and
    > doesn't
    > get rendered??
    >
    > Once again any help / suggestions will be appreciated!
    >
    >

  • Open Oracle Form in client side from BPEL Process

    Hello,
    I'm new in BPEL and I'm trying to do a Process who open a Form before it finish. I do that with a Java embedding with the next code:
    try {                     
    Runtime.getRuntime().exec("rundll32.exe url.dll,FileProtocolHandler http://dl380:8890/forms/frmservlet?config=atender&otherparams=CLIENTE="+variable );
    } catch (Exception e) {                                                
    e.printStackTrace();
    But this code open a form in the server side and I need that it be open in the client side. Someone know what's can I do?
    I hope you help me in this!
    Thanks in advance!
    Alejandra

    Hi Sreedhar,
    Probably there are simpler options, but one thing you can do is to create a new function in Oracle to access the same form (Service Contracts Authoring), and include this in the Form Parameters:
    QUERY_ONLY="YES"
    That will make the function read only (in theory). Now you can call that function from the OAF Page instead of OKS_OKSAUDET.
    Hope it helps.

  • Client side configuration

    Hi Everybody,
    Thanks to all of the oracle experts.
    We installed oracle 10.2 RAc database on the server side using 2 nodes on solaris 10.
    Raw devices are used for clusterware installation.
    ASM is configured for database shared files.
    Now i want to configure on the client side as they should be able to connect to this database.
    would anybody kindly provide me how to do this.
    i am in very need of it.
    thanks and regards
    suresh

    You need to install Oracle Software Client and configure tnsnames.ora with something like
    ORCLTEST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = oraclerac1vip)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = oraclerac2vip)(PORT = 1521))
    (LOAD_BALANCE = yes)
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    (FAILOVER_MODE =
    (TYPE = SELECT)
    (METHOD = BASIC)
    (RETRIES = 180)
    (DELAY = 5)
    You must view oraclerac1vip and oraclerac2vip using DNS or you add this host to host table.
    Regards.
    Angel

Maybe you are looking for

  • There was an error opening this document. This file cannot be found

    An automation script on one of our QA environments kept tripping on the error: "There was an error opening this document. This file cannot be found".  The same script ran fine against our Production servers (hint, which were "whitelisted"). It took a

  • Newbie here i need help

    i just got the droid 2 and im all new to the phone and features i had a blackberry for two years and i was use to that but so far i like the droid i some what know how to do certain things. Now the only problem  idk how to do is connect the droid to

  • Format MBP so many times

    What will happen if I format my MBP so many times? It can effect my MBP processor?

  • My iTunes won't play ANY audio!

    I ust upgraded to 7.5--all of a sudden all the mp3s and the samples and the audio part of videos will not play! My computer still plays them in other players, so I think this is just an iTunes problem. Anyone else experience this?

  • HT201407 i am unable to sign in on imessage on my iphone it shows my username or password incorrect

    Dear All, Please help me as i am unable to sign in to imessages it always shows that my username or password is incorrect. where as when i sign in through the app store it sign in witht the same ID and password. help needed.