Random display of database products without refreshing

Hi all,
How can I make a list of products randomly change on the
page, without refreshing and using flash?
Or is it possible with flash?
I can create the query but need to know how to make it
randomly change on the page without refreshing the page.

Why do you not want a refresh?
"Julian Roberts" <[email protected]> wrote in message
news:f7svkq$2mc$[email protected]..
> You could look at using Ajax, not an easy prospect
though.
>
> --
> Jules
>
http://www.charon.co.uk/charoncart
> Charon Cart 3
> Shopping Cart Extension for Dreamweaver MX/MX 2004
>
>
> "The_FedEx_Guy" <[email protected]>
wrote in message
> news:f7srj1$rmr$[email protected]..
>> Hi all,
>> How can I make a list of products randomly change on
the page, without
>> refreshing and using flash?
>>
>> Or is it possible with flash?
>>
>> I can create the query but need to know how to make
it randomly change on
>> the
>> page without refreshing the page.
>>
>
>

Similar Messages

  • Is it possible to return a database query without refreshing the page?

    I have a form which has a drop-down select box. What I want to do is send the value from the select list to a CFC which runs some SQL code and returns a recordset. I then want to use this recordset on my original CFM page that has the form on it.
    Is it possible to do this without refreshing the page through some kind of AJAX? Apologies I am a newbie at AJAX but I did manage to write a bit of code that uses <cfdiv> to bind to a URL that does the database work and returns some HTML. But really I just want the database recordset and not sure how to get it?

    You could use AJAX, Flex Remoting or any such remoting technique. That is, if there is a case for it. However, from what you describe in the first paragraph, you don't need to. Just send the form to its own page.
    In the following example, the CFC and CFM page are both in the same directory under the root. I have made use of the cfdocexamples datasource which ships with ColdFusion.
    Employee.cfc
    <cfcomponent>
    <cffunction name="getEmployeeDetails"  output="false" returntype="query">
    <cfargument name="employee_id">
    <cfset var employeeDetails = queryNew("","")>
    <cfset var emp_id = arguments.employee_id>
    <cfif isNumeric(emp_id)>
        <cfquery name = "employeeDetails" dataSource = "cfdocexamples">
            SELECT firstname, email as email_name, department, phone, location
            FROM Employees
            WHERE emp_id = <cfqueryparam cfsqltype="cf_sql_integer" value="#emp_id#">
        </cfquery>
    </cfif>
    <!--- Will activate error-handler in the caller --->
    <cfif NOT isNumeric(emp_id) or employeeDetails.recordcount EQ 0>
        <cfthrow message="You selected no employee.">
    </cfif>
    <cfreturn employeeDetails>
    </cffunction>
    </cfcomponent>
    testPage.cfm
    <cfif isDefined("form.employee_id")>
        <cfset employeeObj = createobject("component","Employee")>
        <!--- employeeDetails is a query--->
        <cfset employeeDetails = employeeObj.getEmployeeDetails(form.employee_id)>
        <cfdump var="#employeeDetails#">
    </cfif>
    <cfform action="#CGI.SCRIPT_NAME#">
    <cfselect name="employee_id">
    <option value="0">Employee</option>
    <option value="1">Carolynn Petersen</option>
    <option value="2">Dave Heartside</option>
    <option value="3">Linda Stewart</option>
    </cfselect>
    <cfinput name="sbmt" type="submit" value="Send">
    </cfform>

  • Display error message without refreshing the entire jsp

    Hi,
    I want to display the server side error messages in the jsp without refreshing the entire jsp. How can this be achieved?
    I think there is some way with use of AJAX. If yes can you please elaborate on the same as to how to do this.
    Regards,
    Shwetha

    In the project it's presented:
    1) how the servlet can send JSON data depending on the request's parameter
    2) how to obtain this data on the client side and show in on the page using jQuery without refreshing the whole site
    What You need to do is just to send the error (as JSON data) insetad of the values that are passed now and display this error on the page.

  • Displaying the  results without refreshing the page

    Hi,
    I need to show the items added to the basket within a list box which is on the top frame without refreshing the page.the page is a jsp page.Could you please give me idea how this could be done.
    The problem is, there are 2 frames, one above and one below.In the below frame I select a product and add to the basket, at the same time I need to show these items in above frame within the list box, the above frame should not refresh, it should show the items as soon as the items are added.
    Thanks

    The cart bean is on the server? Then you will have to send a request to the server to get it added. How do you do that? You post a form. How do you post a form without submitting a page? You don't.
    You need to make a design decision. If you want all of your logic on the server, you will have to be content with client-side refreshes. If client-side refreshes and their inherent delays are not acceptable, you will have to learn to be savvy with JavaScript but realize that anything you do on the form is still only on the form until you submit it.

  • HOW DO I STOP MY JSP PAGE FROM INSERTING DATA IN DATABASE EACH TIME REFRESH

    Hi,
    HOW DO I STOP MY JSP PAGE FROM INSERTING DATA IN DATABASE EACH TIME REFRESH?
    Thanks

    emekaco wrote:
    Hi,
    HOW DO I STOP MY JSP PAGE FROM INSERTING DATA IN DATABASE EACH TIME REFRESH?
    ThanksSTOP SHOUTING!
    now, while displaying the form generate some random number, or take the current time in millis or whatever. Put that number in a hidden field. Insert that unique number along with the real data into the database, but before you do check if the number already exists. If it does you can be pretty sure this is a resubmit of the same data, so don't allow it. This is one way of many to prevent resubmission of existing data.
    A good way to prevent a refresh from resubmitting altogether is to do a redirect to a result page right after you deal with the POST request. When the user presses refresh then, he/she will refresh the redirect and not the form submit.

  • Report without Refresh

    Hi
    i want to generate a report without refresh of the page.
    Eg. If i enter the student_id 1 in text field then student_id 1's personal information should display in report without refresh of the page.
    there are 5 field in student table
    first name
    last name
    roll no
    class
    section
    Thanks
    Nisha

    Hi Br, Jari,
    can i use the text field in place of select list.
    as in given link. we are selecting the value from select list after that report display without refresh of the page.
    i want to replace the select list with the text field.
    if this Possible Please Suggest me.
    Thanks & regards
    Nisha

  • Data fetch from two table without refresh

    hi Friends,
    I have a problem i want to extract data from two table without refresh into text field when i'll enter any value in a text field then corressponding value should come in to corressponding textfield.
    eg. there two table A and B.
    Table A has Colunm
    s_id Number;
    c_id Varchar2(30);
    sec varchar2(4);
    Second Table B Colunm Name
    s_id Number;
    f_name varchar(30);
    l_name varchar(20);
    when i enter s_id 101 in a text field then the c_id ,sec,first_name and last_name should come in to corressponding text fields without refresh.
    How Can I do this.
    Thanks
    Manoj

    Hi Manoj,
    You have to make an Ajax call to display data without refreshing the page. Search this forum for Ajax and you can find lots of related posts. This link might help too. http://www.dba-oracle.com/t_html_db_apex_ajax_application_express.htm
    Thanks,
    Manish.

  • BEx Web iView displays graph only after page Refresh

    Dear Friends,
    I am facing problem in BEx Web application iView.
    I am using the SAP Standard BEx Web iView template to call BI Report by passing parameter as below
    com.sap.ip.bi.bex?TEMPLATE=ZSD1_WR_TREND_HY
    URL is Link[http://<hostname>:52000/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?TEMPLATE=ZSD1_WR_TREND_HY]
    The report got 2 graphical representations along with a table data.
    Problem is the graphs displays data representation only after refreshing the page.
    Infact the problem exists in production system and works fine in Development system.
    When I checked from portal prospective I found no difference.
    Can anybody help on this.
    Thanks in advance.
    Lakshmikantha

    hi,
    find the iview from the content administration menu in portal.
    If you are using a standard role open the role
    and trace the pages until you find the iview containing the template.
    Open the iview and check the parameter Content-BW report.
    At the field BEx Web Application Query String go to and and check the template name.
    Go to web application designer and open the above template.
    Change the parameters from the post above and save the web template as zXXXXX.
    Change the web template at iview as well.
    What i figured out is that bex handler has a problem creating an array when you are using same session for more than one charts.
    When you use seperate sessions for each chart there is no need for array creation and works just fine.
    *If you are using best practices go to Content Provided by SAP->Specialist->Best Practices and find the role and iview you are using.
    It should work..

  • Location Products Without Change Authorization

    Hi,
           I ran the report /SAPAPO/DELETE_PP_ORDER
    in a background job and in the spool, I see ;
    =======
    Location Products Without Change Authorization
    Product -
    Location
    XXXXX----
    ABC
    a list of products and locations and at the end
    "No PP/DS orders exist for the selection"
                            I understand that there are no PPDS orders to be deleted. But what does the "Location Products Without Change Authorization" mean?? These products and locations are also in a active integration model in R/3. They are active in APO.

    Hi Venkat,
    It appears you don't have change authorization for the mentioned product locations because of which the report is displaying the message and not deleting any order for those products.
    Check the authorization objects associated to your profile...
    Hope this helps...
    Regards,
    Manjit

  • Random display switching and weird behaviour. [Solved]

    Hey guys and girls
    Have had Arch running smoothly for a few months now and have avoided posting for minor issues, because your forums are so ace and have been able to find everything I need. Have to say out of all the distros that I've tried Arch simply rocks, especially the AUR!
    Anyway, point of post is this. I'm running KDE and have had similar problems with all the distros I've tried. My machine is a Dell L501X with a Nvidia GT435 graphics card. When I plug my external monitor in (via DisplayPort) it is detected and I can extend it to that monitor, both via randr and via TwinView.
    The problem is that it randomly switches off extended monitor and either mirrors display or switches between 1 active monitor on either laptop or external. This behaviour can be provoked by a random key press, waking up from sleep, or a butterfly flapping its wings on the far side of the galaxy.
    I'm using the Nvidia 319 drivers which I understand have RandR 1.4 support.
    Can anyone suggest what might cause this behaviour? Where would be a good start to debug this? How I might stop it? 
    My xorg.conf :
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 319.17 (buildmeister@swio-display-x86-rhel47-06) Thu Apr 25 22:28:25 PDT 2013
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DFP-0"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 76.0
    Option "DFP-3"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    Option "ConnectedMonitor" "DFP-0, DFP-3"
    Option "UseEdidDpi" "FALSE"
    Option "DPI" "96 x 96"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce GT 435M"
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    Option "ConnectedMonitor" "DFP-0, DFP-3"
    Option "UseEdidDpi" "FALSE"
    Option "DPI" "96 x 96"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce GT 435M"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    EDIT:
    I've tracked either the cause, or symptom of problem to some entries in journalctl. This seems to happen accross all KDE installations and is sporadic. When this behavious is present I also notice that double tapping the brightness buttons on keyboard causes the monitors to switch.
    Journalctl entries:
    May 09 14:27:07 ianarch dbus[344]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    May 09 14:27:07 ianarch org.kde.powerdevil.backlighthelper[1639]: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    May 09 14:27:07 ianarch dbus-daemon[344]: dbus[344]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    May 09 14:27:07 ianarch dbus[344]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    May 09 14:29:57 ianarch dbus-daemon[344]: dbus[344]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    May 09 14:29:57 ianarch dbus[344]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    May 09 14:29:57 ianarch org.kde.powerdevil.backlighthelper[1648]: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    May 09 14:29:57 ianarch dbus-daemon[344]: dbus[344]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    May 09 14:29:57 ianarch dbus[344]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    May 09 14:30:11 ianarch dbus-daemon[344]: dbus[344]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    May 09 14:30:11 ianarch dbus[344]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    May 09 14:30:11 ianarch org.kde.powerdevil.backlighthelper[1654]: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    May 09 14:30:11 ianarch dbus[344]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    May 09 14:30:11 ianarch dbus-daemon[344]: dbus[344]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    May 09 14:31:30 ianarch dbus-daemon[344]: dbus[344]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    May 09 14:31:30 ianarch dbus[344]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    May 09 14:31:30 ianarch org.kde.powerdevil.backlighthelper[1667]: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    May 09 14:31:30 ianarch dbus-daemon[344]: dbus[344]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    May 09 14:31:30 ianarch dbus[344]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Last edited by Hutchism (2013-05-30 14:28:12)

    Ok, I'm still in KDE at the moment as I had quite a bit to do and e17 was slowing me down.
    Here's an updated xorg log. Scroll down to the bottom to see the random display changes. They're in the log, but no sign of what calls it...
    [ 45574.101]
    X.Org X Server 1.14.1
    Release Date: 2013-04-17
    [ 45574.101] X Protocol Version 11, Revision 0
    [ 45574.101] Build Operating System: Linux 3.8.7-1-ARCH x86_64
    [ 45574.101] Current Operating System: Linux ianarch 3.9.0-2-ARCH #1 SMP PREEMPT Tue Apr 30 09:48:29 CEST 2013 x86_64
    [ 45574.101] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=5c06846e-4730-4382-afa1-3b2bdea7d716 ro quiet
    [ 45574.101] Build Date: 17 April 2013 02:37:06PM
    [ 45574.101]
    [ 45574.101] Current version of pixman: 0.28.2
    [ 45574.101] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 45574.101] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 45574.101] (==) Log file: "/var/log/Xorg.0.log", Time: Wed May 8 09:03:03 2013
    [ 45574.132] (==) Using config file: "/etc/X11/xorg.conf"
    [ 45574.132] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 45574.180] (==) ServerLayout "Layout0"
    [ 45574.180] (**) |-->Screen "Screen0" (0)
    [ 45574.180] (**) | |-->Monitor "Monitor0"
    [ 45574.180] (**) | |-->Device "Device0"
    [ 45574.180] (**) |-->Input Device "Keyboard0"
    [ 45574.180] (**) |-->Input Device "Mouse0"
    [ 45574.180] (**) Option "Xinerama" "0"
    [ 45574.180] (==) Automatically adding devices
    [ 45574.180] (==) Automatically enabling devices
    [ 45574.180] (==) Automatically adding GPU devices
    [ 45574.180] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 45574.180] Entry deleted from font path.
    [ 45574.245] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 45574.245] Entry deleted from font path.
    [ 45574.245] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 45574.245] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/
    [ 45574.245] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 45574.245] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 45574.245] (WW) Disabling Keyboard0
    [ 45574.245] (WW) Disabling Mouse0
    [ 45574.245] (II) Loader magic: 0x7fcc20
    [ 45574.245] (II) Module ABI versions:
    [ 45574.245] X.Org ANSI C Emulation: 0.4
    [ 45574.245] X.Org Video Driver: 14.1
    [ 45574.245] X.Org XInput driver : 19.1
    [ 45574.246] X.Org Server Extension : 7.0
    [ 45574.246] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 45574.249] (--) PCI:*(0:2:0:0) 10de:0df2:1028:046e rev 161, Mem @ 0xcc000000/16777216, 0xd0000000/268435456, 0xce000000/33554432, I/O @ 0x00002000/128, BIOS @ 0x????????/524288
    [ 45574.249] Initializing built-in extension Generic Event Extension
    [ 45574.249] Initializing built-in extension SHAPE
    [ 45574.249] Initializing built-in extension MIT-SHM
    [ 45574.249] Initializing built-in extension XInputExtension
    [ 45574.249] Initializing built-in extension XTEST
    [ 45574.249] Initializing built-in extension BIG-REQUESTS
    [ 45574.249] Initializing built-in extension SYNC
    [ 45574.249] Initializing built-in extension XKEYBOARD
    [ 45574.249] Initializing built-in extension XC-MISC
    [ 45574.249] Initializing built-in extension SECURITY
    [ 45574.249] Initializing built-in extension XINERAMA
    [ 45574.249] Initializing built-in extension XFIXES
    [ 45574.264] Initializing built-in extension RENDER
    [ 45574.264] Initializing built-in extension RANDR
    [ 45574.264] Initializing built-in extension COMPOSITE
    [ 45574.264] Initializing built-in extension DAMAGE
    [ 45574.264] Initializing built-in extension MIT-SCREEN-SAVER
    [ 45574.264] Initializing built-in extension DOUBLE-BUFFER
    [ 45574.264] Initializing built-in extension RECORD
    [ 45574.264] Initializing built-in extension DPMS
    [ 45574.264] Initializing built-in extension X-Resource
    [ 45574.264] Initializing built-in extension XVideo
    [ 45574.264] Initializing built-in extension XVideo-MotionCompensation
    [ 45574.264] Initializing built-in extension XFree86-VidModeExtension
    [ 45574.264] Initializing built-in extension XFree86-DGA
    [ 45574.264] Initializing built-in extension XFree86-DRI
    [ 45574.265] Initializing built-in extension DRI2
    [ 45574.265] (II) LoadModule: "glx"
    [ 45574.331] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 45574.495] (II) Module glx: vendor="NVIDIA Corporation"
    [ 45574.495] compiled for 4.0.2, module version = 1.0.0
    [ 45574.495] Module class: X.Org Server Extension
    [ 45574.495] (II) NVIDIA GLX Module 319.17 Thu Apr 25 21:41:50 PDT 2013
    [ 45574.495] Loading extension GLX
    [ 45574.495] (II) LoadModule: "nvidia"
    [ 45574.652] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 45574.700] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 45574.700] compiled for 4.0.2, module version = 1.0.0
    [ 45574.700] Module class: X.Org Video Driver
    [ 45574.745] (II) NVIDIA dlloader X Driver 319.17 Thu Apr 25 21:23:57 PDT 2013
    [ 45574.745] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 45574.745] (++) using VT number 7
    [ 45574.747] (II) Loading sub module "fb"
    [ 45574.747] (II) LoadModule: "fb"
    [ 45574.747] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 45574.811] (II) Module fb: vendor="X.Org Foundation"
    [ 45574.811] compiled for 1.14.1, module version = 1.0.0
    [ 45574.811] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 45574.811] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 45574.811] (II) Loading sub module "wfb"
    [ 45574.811] (II) LoadModule: "wfb"
    [ 45574.811] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 45574.835] (II) Module wfb: vendor="X.Org Foundation"
    [ 45574.835] compiled for 1.14.1, module version = 1.0.0
    [ 45574.835] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 45574.835] (II) Loading sub module "shadow"
    [ 45574.835] (II) LoadModule: "shadow"
    [ 45574.856] (II) Loading /usr/lib/xorg/modules/libshadow.so
    [ 45574.856] (II) Module shadow: vendor="X.Org Foundation"
    [ 45574.856] compiled for 1.14.1, module version = 1.1.0
    [ 45574.856] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 45574.856] (II) Loading sub module "ramdac"
    [ 45574.856] (II) LoadModule: "ramdac"
    [ 45574.856] (II) Module "ramdac" already built-in
    [ 45574.856] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 45574.856] (==) NVIDIA(0): RGB weight 888
    [ 45574.856] (==) NVIDIA(0): Default visual is TrueColor
    [ 45574.856] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 45574.856] (**) NVIDIA(0): Option "Stereo" "0"
    [ 45574.856] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-0"
    [ 45574.856] (**) NVIDIA(0): Option "UseEdidDpi" "FALSE"
    [ 45574.856] (**) NVIDIA(0): Option "DPI" "96 x 96"
    [ 45574.856] (**) NVIDIA(0): Stereo disabled by request
    [ 45574.856] (**) NVIDIA(0): Option "MetaModes" "DFP-0: nvidia-auto-select +0+0, DFP-3: 1920x1080 +1920+0"
    [ 45574.856] (**) NVIDIA(0): Enabling 2D acceleration
    [ 45575.121] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45575.121] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45575.121] (WW) NVIDIA(GPU-0): Unable to read EDID for display device DFP-3
    [ 45575.126] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45575.126] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45575.128] (II) NVIDIA(0): NVIDIA GPU GeForce GT 435M (GF108) at PCI:2:0:0 (GPU-0)
    [ 45575.128] (--) NVIDIA(0): Memory: 2097152 kBytes
    [ 45575.128] (--) NVIDIA(0): VideoBIOS: 70.08.19.00.5d
    [ 45575.128] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 45575.150] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45575.150] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45575.150] (--) NVIDIA(0): Valid display device(s) on GeForce GT 435M at PCI:2:0:0
    [ 45575.150] (--) NVIDIA(0): AU Optronics Corporation (DFP-0) (boot, connected)
    [ 45575.150] (--) NVIDIA(0): DFP-1
    [ 45575.150] (--) NVIDIA(0): DFP-2
    [ 45575.150] (--) NVIDIA(0): DELL U2311H (DFP-3) (connected)
    [ 45575.150] (--) NVIDIA(0): AU Optronics Corporation (DFP-0): 330.0 MHz maximum pixel clock
    [ 45575.150] (--) NVIDIA(0): AU Optronics Corporation (DFP-0): Internal Dual Link LVDS
    [ 45575.150] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
    [ 45575.150] (--) NVIDIA(0): DFP-1: Internal Single Link TMDS
    [ 45575.150] (--) NVIDIA(0): DFP-2: 165.0 MHz maximum pixel clock
    [ 45575.150] (--) NVIDIA(0): DFP-2: Internal Single Link TMDS
    [ 45575.150] (--) NVIDIA(0): DELL U2311H (DFP-3): 480.0 MHz maximum pixel clock
    [ 45575.150] (--) NVIDIA(0): DELL U2311H (DFP-3): Internal DisplayPort
    [ 45575.150] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45575.150] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45575.150] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45575.150] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45575.150] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45575.150] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45575.151] (II) NVIDIA(0): Validated MetaModes:
    [ 45575.151] (II) NVIDIA(0): "DFP-0:nvidia-auto-select+0+0,DFP-3:1920x1080+1920+0"
    [ 45575.151] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080
    [ 45576.221] (**) NVIDIA(0): DPI set to (96, 96); computed from "DPI" X config option
    [ 45576.221] (--) Depth 24 pixmap format is 32 bpp
    [ 45576.221] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 45576.221] (II) NVIDIA: access.
    [ 45576.325] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 45576.325] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 45576.325] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 45576.325] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 45576.326] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 45576.326] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 45576.326] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 45576.326] (II) NVIDIA(0): Config Options in the README.
    [ 45576.347] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select+0+0,DFP-3:1920x1080+1920+0"
    [ 45576.690] Loading extension NV-GLX
    [ 45576.789] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 45576.789] (==) NVIDIA(0): Backing store disabled
    [ 45576.789] (==) NVIDIA(0): Silken mouse enabled
    [ 45576.789] (**) NVIDIA(0): DPMS enabled
    [ 45576.797] Loading extension NV-CONTROL
    [ 45576.797] Loading extension XINERAMA
    [ 45576.797] (II) Loading sub module "dri2"
    [ 45576.797] (II) LoadModule: "dri2"
    [ 45576.797] (II) Module "dri2" already built-in
    [ 45576.801] (II) NVIDIA(0): [DRI2] Setup complete
    [ 45576.801] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 45576.801] (--) RandR disabled
    [ 45576.805] (II) Initializing extension GLX
    [ 45577.087] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 45577.087] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 45577.087] (II) LoadModule: "evdev"
    [ 45577.087] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 45577.095] (II) Module evdev: vendor="X.Org Foundation"
    [ 45577.095] compiled for 1.14.0, module version = 2.8.0
    [ 45577.095] Module class: X.Org XInput Driver
    [ 45577.095] ABI class: X.Org XInput driver, version 19.1
    [ 45577.095] (II) Using input driver 'evdev' for 'Power Button'
    [ 45577.095] (**) Power Button: always reports core events
    [ 45577.095] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 45577.096] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 45577.096] (--) evdev: Power Button: Found keys
    [ 45577.096] (II) evdev: Power Button: Configuring as keyboard
    [ 45577.096] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
    [ 45577.096] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 45577.096] (**) Option "xkb_rules" "evdev"
    [ 45577.096] (**) Option "xkb_model" "evdev"
    [ 45577.096] (**) Option "xkb_layout" "us"
    [ 45577.131] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 45577.131] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 45577.131] (II) Using input driver 'evdev' for 'Video Bus'
    [ 45577.131] (**) Video Bus: always reports core events
    [ 45577.131] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 45577.131] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 45577.131] (--) evdev: Video Bus: Found keys
    [ 45577.131] (II) evdev: Video Bus: Configuring as keyboard
    [ 45577.131] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input2/event2"
    [ 45577.131] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 45577.131] (**) Option "xkb_rules" "evdev"
    [ 45577.131] (**) Option "xkb_model" "evdev"
    [ 45577.131] (**) Option "xkb_layout" "us"
    [ 45577.132] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 45577.132] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 45577.132] (II) Using input driver 'evdev' for 'Power Button'
    [ 45577.132] (**) Power Button: always reports core events
    [ 45577.132] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 45577.132] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 45577.132] (--) evdev: Power Button: Found keys
    [ 45577.132] (II) evdev: Power Button: Configuring as keyboard
    [ 45577.132] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3/event3"
    [ 45577.132] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 45577.132] (**) Option "xkb_rules" "evdev"
    [ 45577.132] (**) Option "xkb_model" "evdev"
    [ 45577.132] (**) Option "xkb_layout" "us"
    [ 45577.133] (II) config/udev: Adding input device Lid Switch (/dev/input/event5)
    [ 45577.133] (II) No input driver specified, ignoring this device.
    [ 45577.133] (II) This device may have been added with another device file.
    [ 45577.134] (II) config/udev: Adding input device Sleep Button (/dev/input/event4)
    [ 45577.134] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 45577.134] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 45577.134] (**) Sleep Button: always reports core events
    [ 45577.134] (**) evdev: Sleep Button: Device: "/dev/input/event4"
    [ 45577.134] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 45577.134] (--) evdev: Sleep Button: Found keys
    [ 45577.134] (II) evdev: Sleep Button: Configuring as keyboard
    [ 45577.134] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4/event4"
    [ 45577.134] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 45577.134] (**) Option "xkb_rules" "evdev"
    [ 45577.134] (**) Option "xkb_model" "evdev"
    [ 45577.134] (**) Option "xkb_layout" "us"
    [ 45577.135] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 45577.135] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
    [ 45577.135] (II) No input driver specified, ignoring this device.
    [ 45577.135] (II) This device may have been added with another device file.
    [ 45577.135] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
    [ 45577.135] (II) No input driver specified, ignoring this device.
    [ 45577.135] (II) This device may have been added with another device file.
    [ 45577.136] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event15)
    [ 45577.136] (II) No input driver specified, ignoring this device.
    [ 45577.136] (II) This device may have been added with another device file.
    [ 45577.136] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event16)
    [ 45577.136] (II) No input driver specified, ignoring this device.
    [ 45577.136] (II) This device may have been added with another device file.
    [ 45577.136] (II) config/udev: Adding input device Laptop_Integrated_Webcam_2HDM (/dev/input/event17)
    [ 45577.136] (**) Laptop_Integrated_Webcam_2HDM: Applying InputClass "evdev keyboard catchall"
    [ 45577.136] (II) Using input driver 'evdev' for 'Laptop_Integrated_Webcam_2HDM'
    [ 45577.136] (**) Laptop_Integrated_Webcam_2HDM: always reports core events
    [ 45577.136] (**) evdev: Laptop_Integrated_Webcam_2HDM: Device: "/dev/input/event17"
    [ 45577.136] (--) evdev: Laptop_Integrated_Webcam_2HDM: Vendor 0x408 Product 0x2fb1
    [ 45577.136] (--) evdev: Laptop_Integrated_Webcam_2HDM: Found keys
    [ 45577.136] (II) evdev: Laptop_Integrated_Webcam_2HDM: Configuring as keyboard
    [ 45577.136] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input17/event17"
    [ 45577.136] (II) XINPUT: Adding extended input device "Laptop_Integrated_Webcam_2HDM" (type: KEYBOARD, id 10)
    [ 45577.136] (**) Option "xkb_rules" "evdev"
    [ 45577.136] (**) Option "xkb_model" "evdev"
    [ 45577.136] (**) Option "xkb_layout" "us"
    [ 45577.137] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 45577.137] (II) No input driver specified, ignoring this device.
    [ 45577.137] (II) This device may have been added with another device file.
    [ 45577.137] (II) config/udev: Adding input device HDA Intel MID Headphone (/dev/input/event10)
    [ 45577.137] (II) No input driver specified, ignoring this device.
    [ 45577.137] (II) This device may have been added with another device file.
    [ 45577.138] (II) config/udev: Adding input device HDA Intel MID Headphone (/dev/input/event11)
    [ 45577.138] (II) No input driver specified, ignoring this device.
    [ 45577.138] (II) This device may have been added with another device file.
    [ 45577.138] (II) config/udev: Adding input device HDA Intel MID Mic (/dev/input/event9)
    [ 45577.138] (II) No input driver specified, ignoring this device.
    [ 45577.138] (II) This device may have been added with another device file.
    [ 45577.139] (II) config/udev: Adding input device Logitech Gaming Mouse G400 (/dev/input/event1)
    [ 45577.139] (**) Logitech Gaming Mouse G400: Applying InputClass "evdev pointer catchall"
    [ 45577.139] (II) Using input driver 'evdev' for 'Logitech Gaming Mouse G400'
    [ 45577.139] (**) Logitech Gaming Mouse G400: always reports core events
    [ 45577.139] (**) evdev: Logitech Gaming Mouse G400: Device: "/dev/input/event1"
    [ 45577.139] (--) evdev: Logitech Gaming Mouse G400: Vendor 0x46d Product 0xc245
    [ 45577.139] (--) evdev: Logitech Gaming Mouse G400: Found 12 mouse buttons
    [ 45577.139] (--) evdev: Logitech Gaming Mouse G400: Found scroll wheel(s)
    [ 45577.139] (--) evdev: Logitech Gaming Mouse G400: Found relative axes
    [ 45577.139] (--) evdev: Logitech Gaming Mouse G400: Found x and y relative axes
    [ 45577.139] (II) evdev: Logitech Gaming Mouse G400: Configuring as mouse
    [ 45577.139] (II) evdev: Logitech Gaming Mouse G400: Adding scrollwheel support
    [ 45577.139] (**) evdev: Logitech Gaming Mouse G400: YAxisMapping: buttons 4 and 5
    [ 45577.139] (**) evdev: Logitech Gaming Mouse G400: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 45577.139] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.3/0000:05:00.0/usb2/2-2/2-2.4/2-2.4:1.0/input/input20/event1"
    [ 45577.139] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G400" (type: MOUSE, id 11)
    [ 45577.139] (II) evdev: Logitech Gaming Mouse G400: initialized for relative axes.
    [ 45577.140] (**) Logitech Gaming Mouse G400: (accel) keeping acceleration scheme 1
    [ 45577.140] (**) Logitech Gaming Mouse G400: (accel) acceleration profile 0
    [ 45577.140] (**) Logitech Gaming Mouse G400: (accel) acceleration factor: 2.000
    [ 45577.140] (**) Logitech Gaming Mouse G400: (accel) acceleration threshold: 4
    [ 45577.140] (II) config/udev: Adding input device Logitech Gaming Mouse G400 (/dev/input/mouse0)
    [ 45577.140] (II) No input driver specified, ignoring this device.
    [ 45577.140] (II) This device may have been added with another device file.
    [ 45577.141] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 45577.141] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 45577.141] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 45577.141] (**) AT Translated Set 2 keyboard: always reports core events
    [ 45577.141] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 45577.141] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 45577.141] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 45577.141] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 45577.141] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 45577.141] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
    [ 45577.141] (**) Option "xkb_rules" "evdev"
    [ 45577.141] (**) Option "xkb_model" "evdev"
    [ 45577.141] (**) Option "xkb_layout" "us"
    [ 45577.142] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12)
    [ 45577.142] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 45577.142] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 45577.142] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 45577.142] (II) LoadModule: "synaptics"
    [ 45577.142] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 45577.155] (II) Module synaptics: vendor="X.Org Foundation"
    [ 45577.156] compiled for 1.14.0, module version = 1.7.0
    [ 45577.156] Module class: X.Org XInput Driver
    [ 45577.156] ABI class: X.Org XInput driver, version 19.1
    [ 45577.156] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 45577.156] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 45577.156] (**) Option "Device" "/dev/input/event12"
    [ 45577.182] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 45577.182] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5398 (res 42)
    [ 45577.182] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4728 (res 70)
    [ 45577.182] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 45577.182] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 45577.182] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 45577.182] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 45577.182] (**) Option "TapButton1" "1"
    [ 45577.182] (**) Option "TapButton2" "2"
    [ 45577.182] (**) Option "TapButton3" "3"
    [ 45577.182] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 45577.182] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 45577.185] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input12/event12"
    [ 45577.185] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 45577.185] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 45577.185] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 45577.185] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.039
    [ 45577.186] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 45577.186] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 45577.186] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 45577.186] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 45577.186] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 45577.186] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 45577.186] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 45577.187] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event7)
    [ 45577.187] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 45577.187] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    [ 45577.187] (**) Dell WMI hotkeys: always reports core events
    [ 45577.187] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event7"
    [ 45577.187] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
    [ 45577.187] (--) evdev: Dell WMI hotkeys: Found keys
    [ 45577.187] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
    [ 45577.187] (**) Option "config_info" "udev:/sys/devices/virtual/input/input7/event7"
    [ 45577.187] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 14)
    [ 45577.187] (**) Option "xkb_rules" "evdev"
    [ 45577.187] (**) Option "xkb_model" "evdev"
    [ 45577.187] (**) Option "xkb_layout" "us"
    [ 45614.071] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45614.071] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45614.072] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45614.072] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45614.072] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45614.072] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45614.072] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45614.072] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45614.072] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45614.072] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45738.889] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45738.889] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45738.889] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45738.889] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45738.889] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45738.890] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45738.890] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45738.890] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45738.890] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45738.890] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45738.958] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45738.958] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45738.958] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45738.958] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45738.958] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45738.958] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45738.958] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45738.958] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45738.958] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45738.958] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45738.984] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45738.984] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45738.984] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45738.984] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45738.984] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45738.984] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45738.984] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45738.984] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45738.984] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45738.984] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45739.077] (II) NVIDIA(0): Setting mode "LVDS-0: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
    [ 45740.602] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.602] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.602] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.602] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.602] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.603] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.603] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.603] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.603] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.603] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.633] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.633] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.633] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.633] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.633] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.633] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.633] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.633] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.633] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.633] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.644] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.644] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.644] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.644] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.644] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.645] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.645] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.645] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.645] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.645] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.652] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.652] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.652] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.652] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.652] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.653] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.653] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.653] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.653] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.653] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.656] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.656] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.656] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.656] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.656] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.657] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.657] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.657] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.657] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.657] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.660] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.660] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.660] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.660] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.660] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.661] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.661] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.661] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.661] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.661] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.663] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.663] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.663] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.663] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.663] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.664] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.664] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.664] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.664] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.664] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.667] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.667] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.667] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.667] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.667] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.672] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.672] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.672] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.672] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.672] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.681] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.681] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.681] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.681] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.681] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.686] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.686] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.686] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.686] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.686] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45740.693] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45740.693] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45740.693] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.693] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45740.693] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45740.693] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45740.693] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45740.694] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45740.694] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45740.694] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45963.920] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45963.920] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45963.920] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45963.920] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45963.920] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45963.920] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45963.920] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45963.920] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45963.920] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45963.920] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45963.938] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45963.938] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45963.938] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45963.938] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45963.938] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45963.939] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45963.939] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45963.939] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45963.939] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45963.939] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45964.051] (II) NVIDIA(0): Setting mode "LVDS-0: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DP-1: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
    [ 45965.538] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45965.538] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45965.538] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45965.538] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45965.538] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45965.539] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45965.539] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45965.539] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45965.539] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45965.539] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45965.554] (II) NVIDIA(0): Setting mode "DP-1: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
    [ 45966.777] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.777] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.777] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.777] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.777] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.777] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.777] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.777] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.777] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.777] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.792] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.792] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.792] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.792] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.792] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.792] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.792] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.792] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.792] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.792] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.799] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.799] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.799] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.799] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.799] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.800] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.800] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.800] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.800] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.800] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.804] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.804] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.804] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.804] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.804] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.804] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.804] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.804] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.804] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.804] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.807] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.807] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.807] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.807] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.807] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.807] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.807] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.807] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.807] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.807] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.811] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.811] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.811] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.811] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.811] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.811] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.812] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.812] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.812] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.812] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.814] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.814] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.814] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.814] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.814] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.815] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.815] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.815] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.815] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.815] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.818] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.818] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.818] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.818] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.818] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.818] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.818] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.818] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.818] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.818] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.823] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.823] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.823] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.823] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.823] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.823] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.823] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.823] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.823] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.823] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.826] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.826] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.826] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.826] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.826] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.827] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.827] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.827] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.827] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.827] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.829] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.829] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.829] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.829] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.829] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.830] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.830] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.830] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.830] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.830] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.837] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.837] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.837] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.837] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.837] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.837] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.837] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.837] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.837] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.837] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.839] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.839] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.839] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.839] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.839] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.839] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.839] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.839] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.839] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.839] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.842] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.842] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.842] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.842] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.842] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.842] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.842] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.842] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.842] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.842] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.846] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.846] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.846] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.846] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.846] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.846] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.846] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.846] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.846] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.846] (**) NVIDIA(0): been enabled on all display devices.)
    [ 45966.849] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 45966.849] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 45966.849] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.849] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 45966.849] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 45966.850] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 45966.850] (II) NVIDIA(GPU-0): Vision stereo.
    [ 45966.850] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 45966.850] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 45966.850] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46113.976] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46113.976] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46113.976] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46113.976] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46113.976] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46113.977] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46113.977] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46113.977] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46113.977] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46113.977] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46113.996] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46113.997] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46113.997] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46113.997] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46113.997] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46113.998] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46113.998] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46113.998] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46113.998] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46113.998] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.018] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.018] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.018] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.018] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.018] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.019] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.019] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.019] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.019] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.019] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.120] (II) NVIDIA(0): Setting mode "LVDS-0: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DP-1: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
    [ 46114.574] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.574] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.574] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.574] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.574] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.574] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.574] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.574] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.574] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.574] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.577] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.577] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.577] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.577] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.577] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.578] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.578] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.578] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.578] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.578] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.580] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.580] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.580] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.580] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.580] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.580] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.580] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.580] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.580] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.580] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.583] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.583] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.584] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.584] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.584] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.584] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.584] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.584] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.584] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.584] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.588] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.588] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.588] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.588] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.588] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.588] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.588] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.588] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.588] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.588] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.591] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.591] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.591] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.591] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.591] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.592] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.592] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.592] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.592] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.592] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.596] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.596] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.596] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.596] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.596] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.597] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.597] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.597] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.597] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.597] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.608] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.608] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.608] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.608] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.608] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.609] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.609] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.609] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.609] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.609] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.611] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.611] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.611] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.611] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.611] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.612] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.612] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.612] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.612] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.612] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.616] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.616] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.616] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.616] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.616] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.616] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.616] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.616] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.616] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.616] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.625] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.625] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.625] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.625] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.625] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.625] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.625] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.625] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.625] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.625] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46114.630] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46114.630] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46114.630] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.630] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46114.630] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46114.630] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46114.630] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46114.630] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46114.630] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46114.630] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46264.057] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46264.057] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
    [ 46264.057] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46264.057] (**) NVIDIA(0): device AU Optronics Corporation (DFP-0) (Using EDID
    [ 46264.057] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
    [ 46264.058] (II) NVIDIA(GPU-0): Display (DELL U2311H (DFP-3)) does not support NVIDIA 3D
    [ 46264.058] (II) NVIDIA(GPU-0): Vision stereo.
    [ 46264.058] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46264.058] (**) NVIDIA(0): device DELL U2311H (DFP-3) (Using EDID frequencies has
    [ 46264.058] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46264.076] (II) NVIDIA(GPU-0): Display (AU Optronics Corporation (DFP-0)) does not support
    [ 46264.076] (II) NVIDIA(GPU-0): NVIDIA

  • How can I know about the latest updates / versions which when available for all the CC products, without having to install and check it with the Desktoip Creative Cloud Application ?

    How can I know about the latest updates / versions which when available for all the CC products, without having to install and check it with the Desktoip Creative Cloud Application ?

    Thanks for looking into this Jeff!
    I work with an Inventory module software and is responsible for software detection across several computers. Once an updated version comes up, I update our database with latest software details to get it detected if installed on any machines.
    The problem tracking updates with Desktop Creative Cloud Software are;
    1)We have to have it installed with the CC applications in-order to get the notification of the latest updates and have to check everyday.
    2)Only relates to the latest updates, so in-between we may miss a prior update unknowingly.Hence, the remote machines having those updates may not get  detected with the software version update which would create problem in reporting.
    3)For all CC products, there is no base or previous updates available for installation if we miss one.
    I went through the Adobe Products Update pages [Product updates] which holds good when it comes to Acrobat and Reader software which I follow to track down any newer updates but this is inconsistent when it comes to CC products like in After Effects CC, Dreamweaver CC etc...
    So overall to be very specific, is there any one channel I can follow to get the notifications only for the updates on CC products and then may be I can rely on Desktop Creative Cloud for installation if not available anywhere like in product update pages of Adobe ?
    Regards,
    Subrat

  • Cannot complete your request because the database is being refreshed

    I created provisioned one user in Shared Services and then assigned to a group. After this I went to workspace in advance mode in order to manage security filters, the user does not appear and when I try to "create" an existing user, an error appears: Cannot complete your request because the database is being refreshed
    I'm not running any refresh in the database and my EAS does not show anything. What could be happening? It is Hyperion Planning 11.1.1.3
    Regards,

    Than you John,
    I executed the cmd and this appeared after entering the password, I understand that the application has been unlocked, doesn't it?
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    D:\Hyperion\common\config\9.5.0.0\product\planning\9.5.0.0\planning_1.xml
    displayName = Planning
    componentTypes =
    priority = 50
    version = 9.5.0.0
    build = 1
    location = D:\Hyperion\products\Planning
    taskSequence =
    task =
    *******D:\Hyperion\common\config\9.5.0.0\registry.properties
    using Java property for Hyperion Home D:\Hyperion
    Setting Arbor path to: D:\Hyperion\common\EssbaseRTC\9.5.0.0
    Setting HBR Mode to: 2
    =2013-11-06 11:07:30,926 WARN main com.hyperion.hbr.security.HbrSecurityAPI - Er
    ror retrieving user by identity
    d{ISO8601} WARN main com.hyperion.hbr.security.HbrSecurityAPI - Error retrieving
    user by identity
    Embedded HBR initialized.
    d{ISO8601} INFO main com.hyperion.audit.client.runtime.AuditRuntime - Audit Clie
    nt has been created for the server http://stlwlahyapprd01.na.ds.monsanto.com:280
    80/interop/Audit
    Reaquired task list lease: Wed Nov 06 11:07:31 CST 2013: 1383757651285
    The application has been successfully unlocked
    d{ISO8601} INFO pinging com.hyperion.audit.client.cache.AuditConfigFilter - Clie
    nt Enable Status false
    d{ISO8601} INFO Thread-22 com.hyperion.audit.client.cache.AuditConfigFilter - Cl
    ient Enable Status false
    d{ISO8601} INFO filterConfig com.hyperion.audit.client.cache.AuditConfigFilter -
    Client Enable Status false

  • Execute without refresh

    can i execute a query without refresh?
    I try
    create database sample1
    and execute it but sample1 does not appear without refreshing the databases?

    No, SSMS Object Explorer don't refresh automatically, you have to refresh manually.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Display PCR in production

    Hi Gurus,
    Can you suggest how to display a PCR in production if you dont have access to Pe02 production.
    I tried using Report "RPDASC00" but through this I can dsplay A pCR which is direct under schema.
    But i have a schema like A which is calling PCR B and PCR B is calling PCR C and my requirement is to display PCR C.
    I want to check content of PCR C in production without PE02.
    Please suggest
    Regards
    Dheeraj

    Dear All,
    we dont have access to Se16n..in production..
    Through se16n we can also edit tables rite?
    I have cm  across1 standrd report for displaying pcr :RPDASC00
    Can any body assist how to find out which tcode is assigned to this report..i excuted through se38 in dev..bt we dont hv access to se38 in prod
    Regards
    Dheeraj

  • Difference between database rename and refresh

    can any bodt tell the exact difference between database rename and refresh and the procedures between the both?

    Oh
    Rename--- as the name itself says rename the DB
    your id is user583972
    rename=change the user583972 to your NAME
    Refresh=Copy from production and replicate in QA/DEV/TEST for the same purposes

Maybe you are looking for

  • My file was changed from psd to "5 file" and won't open

    Hi, I just spent 2+ hours woking on a difficult mask, saving as I worked. I left for dinner and closed down photoshop. When I returned I couldn't open my file.  This message appeared:  could not complete your request because it is not the right kind

  • Performance analysis and monitoring of a Forteapplication

    Hello, It would be good if one could do some performance analysis and monitoring of a Forte application at production time. By performance analysis I mean measure the time some selected methods take to return. In a CS application such a method would

  • My document don't print the same color when I print it from PDF rather than InDesign

    I have a vector image that don't print the same color when I export it to PDF but the colors are the same on the screen. How can I be sure to have the same colors as my InDesign original document when I print it as a PDF ?

  • RAID won't mount until 20 minutes have passed

    Every now and then I'll have a crash on my G5. If I have to force quit through menus or manually through power my RAID won't mount after the restart. The RAID is a striped 5 hard drive set at RAID 0. After some turning on and off of the RAID and plug

  • Cannot Export any Video - BUFFER OVERRUN ERROR MESSAGE

    Hi everyone, I just purchased a new Ipod video and QTPro. After instaling it for the first time and when trying to export any video i got the message from Microsoft Visual C++ Runtime Library ("Buffer Overrun detected!"). "A buffer overrun has been d