Monitoring DML Table Changes

As Oracle 10g STATISTICS_LEVEL parameter needs to be "Typical" to keep Monitoring of all tables DML i.e (Insert ,Update ,Delete) , i have got Oracle 10g and STATISTICS_LEVEL is "Typical" but still the monitoring of tables is not updated , what could be reason for it.
SQL> show parameter statistics_level
NAME                                 TYPE        VALUE
statistics_level                     string      TYPICAL
SQL> conn scott/tiger
Connected.
SQL> select *
  2    from tab
  3  /
TNAME                          TABTYPE  CLUSTERID
DEPT                           TABLE
EMP                            TABLE
BONUS                          TABLE
SALGRADE                       TABLE
SQL> conn sys/sys as sysdba
Connected.
SQL> select * from all_tab_modifications
  2   where table_owner='SCOTT'
  3  /
no rows selected
SQL> select * from all_tab_modifications
  2   where table_owner='SCOTT'
  3  /
no rows selected
SQL> select * from dba_tab_modifications
  2   where table_owner='SCOTT'
  3  /
no rows selected
SQL> select * from user_tab_modifications
  2   where table_name='T'
  3  /
no rows selected
SQL> disconnect
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
With the Partitioning, OLAP and Data Mining options

before referring document read my question loudly 100 times then read documents 100 times , you will come to know what am i asking is not under the documents.
SQL> create table t as select * from all_objects
  2  /
Table created.
SQL> select * from user_tab_modifications
  2   where table_name='T'
  3  /
no rows selected
SQL> exec dbms_stats.gather_table_stats('SCOTT','T')
PL/SQL procedure successfully completed.
SQL> select * from user_tab_modifications
  2   where table_name='T'
  3  /
no rows selected
SQL> /
no rows selected
SQL> conn sys/sys as sysdba
Connected.
SQL> exec dbms_stats.flush_database_monitoring_info;
PL/SQL procedure successfully completed.
SQL> conn scott/tiger
Connected.
SQL> select * from user_tab_modifications
  2   where table_name='T'
  3  /
no rows selectedAs emp,dept are seeded table during default creation of database , and i hope you may also know when a database is created in Oracle 10g , Oracle creates a job called GATHER_STATS_JOB which gather stats within its maitenance window.I dont know why you always hijack my query here without giving any proper insight but always try to spoil.
Re: Freelist
[pre]Creating Controlfile Consfusion                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Eem script monitor routing table - multiple entries into 1 email

    I have the following script running to report on routing table changes
    event manager applet route-table-monitor
    event routing network 0.0.0.0/0 ge 1
    action 0.5 set msg "Route changed: Type: $_routing_type, Network: $_routing_network, Mask/Prefix: $_routing_mask, Protocol: $_routing_protocol, GW: $_routing_lastgateway, Intf: $_routing_lastinterface"
    action 1.0 syslog msg "$msg"
    action 2.0 cli command "enable"
    action 4.0 info type routername
    action 5.0 mail server "10.*.*.*" to "roger.perkin@****" from "Switch1" subject "Routing Table Change" body "$msg  $_cli_result"
    It works perfectly however if multiple routes change I get multiple emails.
    Last night we had a site go out and I got about 20 separate email for each subnet change.
    What I would like to do is get this script to take all routes changed in a 1 minute interval and then output them into an email.
    Not quite sure how I would go about that?
    Thanks
    Roger
    Currently studying for my CCIE and just started on EEM, have not done much scripting before so this is all good stuff to know.

    You can't do this with one policy.  However, you could accomplish this with a timer policy that will batch up the pending updates, though.  Something like this would work.
    event manager applet route-table-monitor event routing network 0.0.0.0/0 ge 1 action 0.5 set msg "Route changed: Type: $_routing_type, Network:  $_routing_network, Mask/Prefix: $_routing_mask, Protocol:  $_routing_protocol, GW: $_routing_lastgateway, Intf:  $_routing_lastinterface" action 0.6 syslog msg "$msg" action 1.0 handle-error type ignore action 2.0 context retrieve key RTRCTXT variable msgs action 3.0 if $_error ne FH_EOK action 4.0  set msgs "$msg\n" action 5.0 else action 6.0  append msgs "$msg\n" action 7.0 end action 8.0 handle-error type exit action 9.0 context save key RTRCTXT variable msgs!event manager applet route-table-batcher event timer watchdog time 60 action 1.0 handle-error type ignore action 2.0 context retrieve key RTRCTXT variable msgs action 3.0 if $_error eq FH_EOK action 4.0  info type routername action 5.0  mail server "10.*.*.*" to "roger.perkin@****" from "$_info_routername" subject "Routing Table Change" body "$msgs" action 6.0 end action 7.0 handle-error type exit

  • Help with creating a sql file that will capture any database table changes.

    We are in the process of creating DROP/Create tables, and using exp/imp data into the tables (the data is in flat files).
    Our client is bit curious to work with. They do the alterations to their database (change the layout, change the datatype, drops tables) without our knowing. This has created a hell lot of issues with us.
    Is there a way that we can create a sql script which can capture any table changes on the database, so that when the client trys to execute imp batch file, the sql file should first check to see if any changes are made. If made, then it should stop execution and give an error message.
    Any help/suggestions would be highly appreciable.
    Thanks,

    Just to clarify...
    1. DDL commands are like CREATE, DROP, ALTER. (These are different than DML commands - INSERT, UPDATE, DELETE).
    2. The DDL trigger is created at the database level, not on each table. You only need one DDL trigger.
    3. You can choose the DDL commands for which you want the trigger to fire (probably, you'll want CREATE, DROP, ALTER, at a minimum).
    4. The DDL trigger only fires when one of these DDL commands is run.
    Whether you have 50 tables or 50,000 tables is not significant to performance in this context.
    What's signficant is how often you'll be executing the DDL commands on which the trigger is set to fire and whether the DDL commands execute in acceptable time with the trigger in place.

  • How to monitor the status change of pp order?

    I want to monitor all of the status change of PP order ,when the status change to DLV, system trigger a idoc to legacy system.
    I added some code in EXIT_SAPLCOBT_001, but I found this user exit only working in CO02, when I use MIGO or MB1C ... tcode to do some GR, the source code is not woking, that means I have to add the code to any entrance of status change????? anybody have some good idea? maybe I have to add a monitor to monitor the table jest ????

    Could you elaborate your requirement please?
    Anyways, the BP transaction display/change mode can be controlled through settings. Goto BP->Extras->Settings->Choose Display/Change/Setting last selected. May be in your system, the setting is 'Setting last selected'. That's why it's showing the last status display/change. If you want it to be display only, you can change the setting to display. But, the settings are user specific and any changes made will reflect for the specific user.

  • Incorrect registration information in Monitoring Registration table

    Hi, I've got following issue: if I reboot my lync phone (not pc client) new entry is not created in the monitoring Registration table, but the old entry, column DeRegisterTime is updated and DeRegisterTypeId is changed to 'ClientCrashed'.
    However if I keep the phone powered down for 10 minutes (default subscription expiry time I guess) or try to call the user on this phone, the old entry will be marked as ClientCrashed but after I log in, I will get an new entry.
    Did any of you guys had such issue? the problem is that you can't really tell if the client is logged on or not, because in many cases I have status 'client crashed' when in reality the user has just restarted their phone...
    cheers, 
    Łukasz

    Hi,
    Did the issue happen for only one user or for multiple users? May be when you restart the phone you did not exit the Lync client so Monitoring Registration table show client crashed. You can try to exit Lync client firstly and then restart Phone and check
    again.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Right way to fire table changes

    suppose i have a class that extends AbstractTableModel and i used a List to store data, like
    public class MyTableModel extends AbstractTableModel
    List dataList = Collections.synchronizedList(new LinkedList());
    public void insertMyData(String data)
    synchronized(dataList)
    // ... do something
    ##Line A##
    ##Line B##
    If i want to fire table changes, say like using
    this.fireTableDataChanged();
    where should i place it?
    at ##Line A## or ##Line B## ???
    or should I use
    SwingUtilities.invokeLater(new Runnable(){public void run(){
      this.fireTableDataChanged();
    Moreover, i would like to ask, if I implement my own TableCellRender and overriding the getTableCellRendererComponent method, all the calls like setText, setBackground, setForeground,...
    should i use SwingUtilities.invokeLater to do that? or just call it as usual ?
    Thanks alot

    Since you mention synchronized several times, I assume your model will be accessed from different threads
    (although you didn't write this.) Client code will have to be careful: getRowCount may return 10, but by the
    time the client gets to row 7 it may no longer exist! What does your model do when getValueAt is based
    indices that are out of bounds?
    As far as synchronization goes, I think you are going overboard with:
    List dataList = Collections.synchronizedList(new LinkedList());...since you are using synchronization blocks elsewhere. In general, I find little use for those synchronizedXXX
    factory methods -- usually the class having a collection member provides the thread safety.
    As far as the listeners go, model listeners assume their event handlers are executing in the EDT, so
    you will have to call the fire*** methods from the EDT. This means you have to use invokeLater or invokeAndWait.
    Using invokeAndWait defeats the multithreading you are building, so I think you
    should call invokeLater, and since this is an asynchronous-style call it makes no sense doing it
    from within a synchronized block. Just be aware that your JTable class may quety the model
    out of bounds.
    Also, if your model's data is written or changed seldom but read often, I would use the serial immutable
    pattern. Have the List reference dataList point to list whose state is immutable. If you want to change
    the data, you make a copy, change that and then have dataList refer to the updated copy.

  • Data in the table changes when multiple users try to submit data

    I have a dynamic table. The table is created in the wdDoModifyView. The user can load data into the table from an excel file. So I have a "Load" button that loads the data from the selected excel file to the table. I also have a "Submit" button. This "Submit" button converts the data to an xml file and make a call to an oracle stored procedure for validation check. If there's an error it will be returned and displayed to the user. If none, a summary of data for posting will be displayed to the user. If the data is correct and the user hit the ok button, the same data will be return to oracle sp for loading in the table.
    The problem we encountered is when multiple users are loading and submitting at the same time, the data displayed in the dynamic tables changes after clicking the ok button. It is as if, the table displays the data being loaded by other user.
    This is an error that is difficult to recreate. This doesn't happen all the time. I hope you somebody could enlighten me why this is happening. I'm not sure if it has something to do with multithreading or session.
    Edited by: Marlyn Agco on Apr 14, 2009 3:57 PM

    Hi Armin,
    Did you mean storing view instances in static references and accessing them outside the wdDoModifyView is not a good idea? In wdDoInit the nodes are dynamically created according to the xml file being returned by the database. This node is stored in a static variable which is also used in wdDoModifyView to create the dynamic table.
    What do you suggest? We're still encountering same issue when multiple users are uploading data.

  • Initial Balances for some of the G/L Accounts  in GLPCT table changed

    Sub : G/L Account Balance( T code FAGLB03 )  and EC-PCA: Totals Table (Table GLPCT) initial balances are not same for some of the G/L accounts ( Initial Balances for some of the G/L Accounts and profit centers in GLPCT table changed )
    Dear Friends
    We are in SAP ECC 5.0. We are using New G/L Accounting
    G/L Account  Balance(Initial Balance)( T code FAGLB03 )  and EC-PCA: Totals Table (Table GLPCT) initial balances are not same for some of the G/L accounts ( Initial Balances for some of the G/L Accounts and Profit centers in GLPCT table changed )
    G/L Account : 1110001 AR Trade - Recon
    G/L Account Initial  Balance( T code FAGLB03 )          36,789,209.26 USD
    EC-PCA: Totals initial balance  (GLPCT table)                14,178,848.14 USD
    I found in GLPCT table initial balances for G/L 1110001 and some of the profit centers are changed. The initial balances are not supposed to change for the entire financial year
    I have checked   none of  documents for this G/L and these Profit centers of last financial year  have been posted or reversed in current financial year.
    Please try to help me what has caused to changed the initial balances and how to correct it
    Please let me know if you guys need more details
    Thanks in advance
    Thanks
    MVS

    Hi Vinay,
    If I understood correctly you are trying to balance  Accumulated Depreciation accounts (from the AA module) with the Cost Depreciation Accounts.
    If they don`t balance zero, it mostly likely means, that some user has posted manually deprecian in your GL, not using the depreciation program.
    Hope this helps.
    KR
    Severina Koleva

  • Monitor setup has changed - KDE Daemon after sleep

    After the monitor goes into powersave mode and is restored I keep gettung the Monitor setup has changed - KDE Daemon  box, anyone know how to get rid of this? everything seams to work but the box is getting annoying.  Logs dont show anything wrong and I have tried lots of things to fix it with no solution.

    Ok still cant work this out. manually set monitor settings etc the box still pops up when waking monotor from sleep. logs still show nothing.  Can anyone help?
    Log below
    [ 11.918]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 11.918]
    X.Org X Server 1.13.2.901 (1.13.3 RC 1)
    Release Date: 2013-02-15
    [ 11.918] X Protocol Version 11, Revision 0
    [ 11.918] Build Operating System: Linux 3.7.5-1-ARCH x86_64
    [ 11.918] Current Operating System: Linux ThunderBolt.LoadBalancer.Org 3.7.9-2-ARCH #1 SMP PREEMPT Mon Feb 25 12:04:25 CET 2013 x86_64
    [ 11.918] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=bc60faad-b008-4f1f-8682-88d4c6f235cc ro quiet
    [ 11.918] Build Date: 18 February 2013 03:52:56PM
    [ 11.918]
    [ 11.918] Current version of pixman: 0.28.2
    [ 11.918] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 11.918] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 11.918] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Mar 6 17:45:33 2013
    [ 12.161] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 12.326] (==) ServerLayout "ServerLayout0"
    [ 12.326] (==) No screen section available. Using defaults.
    [ 12.326] (**) |-->Screen "Default Screen Section" (0)
    [ 12.326] (**) | |-->Monitor "<default monitor>"
    [ 12.326] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 12.326] (**) | |-->Device "Intel Graphics"
    [ 12.326] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 12.326] (**) Option "BlankTime" "0"
    [ 12.326] (**) Option "StandbyTime" "0"
    [ 12.326] (**) Option "SuspendTime" "0"
    [ 12.326] (**) Option "OffTime" "0"
    [ 12.326] (==) Automatically adding devices
    [ 12.326] (==) Automatically enabling devices
    [ 12.326] (==) Automatically adding GPU devices
    [ 12.513] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 12.513] Entry deleted from font path.
    [ 12.561] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 12.561] Entry deleted from font path.
    [ 12.561] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 12.561] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 12.561] Entry deleted from font path.
    [ 12.561] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 12.561] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 12.561] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 12.561] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 12.562] (II) Loader magic: 0x7fcc20
    [ 12.562] (II) Module ABI versions:
    [ 12.562] X.Org ANSI C Emulation: 0.4
    [ 12.562] X.Org Video Driver: 13.1
    [ 12.562] X.Org XInput driver : 18.0
    [ 12.562] X.Org Server Extension : 7.0
    [ 12.562] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 12.563] (--) PCI:*(0:0:2:0) 8086:2e22:1025:0251 rev 3, Mem @ 0xfe400000/4194304, 0xd0000000/268435456, I/O @ 0x0000dc00/8
    [ 12.563] (--) PCI: (0:0:2:1) 8086:2e23:1025:0251 rev 3, Mem @ 0xfe900000/1048576
    [ 12.762] Initializing built-in extension Generic Event Extension
    [ 12.763] Initializing built-in extension SHAPE
    [ 12.763] Initializing built-in extension MIT-SHM
    [ 12.763] Initializing built-in extension XInputExtension
    [ 12.763] Initializing built-in extension XTEST
    [ 12.763] Initializing built-in extension BIG-REQUESTS
    [ 12.763] Initializing built-in extension SYNC
    [ 12.763] Initializing built-in extension XKEYBOARD
    [ 12.763] Initializing built-in extension XC-MISC
    [ 12.763] Initializing built-in extension SECURITY
    [ 12.763] Initializing built-in extension XINERAMA
    [ 12.763] Initializing built-in extension XFIXES
    [ 12.763] Initializing built-in extension RENDER
    [ 12.763] Initializing built-in extension RANDR
    [ 12.763] Initializing built-in extension COMPOSITE
    [ 12.763] Initializing built-in extension DAMAGE
    [ 12.763] Initializing built-in extension MIT-SCREEN-SAVER
    [ 12.763] Initializing built-in extension DOUBLE-BUFFER
    [ 12.763] Initializing built-in extension RECORD
    [ 12.763] Initializing built-in extension DPMS
    [ 12.763] Initializing built-in extension X-Resource
    [ 12.763] Initializing built-in extension XVideo
    [ 12.763] Initializing built-in extension XVideo-MotionCompensation
    [ 12.763] Initializing built-in extension XFree86-VidModeExtension
    [ 12.763] Initializing built-in extension XFree86-DGA
    [ 12.763] Initializing built-in extension XFree86-DRI
    [ 12.763] Initializing built-in extension DRI2
    [ 12.763] (II) LoadModule: "glx"
    [ 12.816] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 12.828] (II) Module glx: vendor="X.Org Foundation"
    [ 12.829] compiled for 1.13.2.901, module version = 1.0.0
    [ 12.829] ABI class: X.Org Server Extension, version 7.0
    [ 12.829] (==) AIGLX enabled
    [ 12.829] Loading extension GLX
    [ 12.829] (II) LoadModule: "intel"
    [ 12.853] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 13.078] (II) Module intel: vendor="X.Org Foundation"
    [ 13.078] compiled for 1.13.2.901, module version = 2.21.3
    [ 13.079] Module class: X.Org Video Driver
    [ 13.079] ABI class: X.Org Video Driver, version 13.1
    [ 13.079] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
    965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
    4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
    Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
    Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
    Haswell Server (GT2+), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
    Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
    Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
    Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
    Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
    Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
    Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
    ValleyView PO board
    [ 13.079] (++) using VT number 7
    [ 13.213] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 13.213] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 13.213] (==) intel(0): RGB weight 888
    [ 13.213] (==) intel(0): Default visual is TrueColor
    [ 13.213] (**) intel(0): Option "AccelMethod" "sna"
    [ 13.213] (--) intel(0): Integrated Graphics Chipset: Intel(R) G45/G43
    [ 13.213] (**) intel(0): Framebuffer tiled
    [ 13.213] (**) intel(0): Pixmaps tiled
    [ 13.213] (**) intel(0): "Tear free" disabled
    [ 13.213] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 13.253] (II) intel(0): Output VGA1 has no monitor section
    [ 13.362] (II) intel(0): Output HDMI1 using monitor section HDMI1
    [ 13.403] (II) intel(0): Output DP1 has no monitor section
    [ 13.443] (II) intel(0): EDID for output VGA1
    [ 13.552] (II) intel(0): EDID for output HDMI1
    [ 13.552] (II) intel(0): Manufacturer: GSM Model: 56cc Serial#: 258443
    [ 13.552] (II) intel(0): Year: 2011 Week: 4
    [ 13.552] (II) intel(0): EDID Version: 1.3
    [ 13.552] (II) intel(0): Digital Display Input
    [ 13.552] (II) intel(0): Max Image Size [cm]: horiz.: 53 vert.: 30
    [ 13.552] (II) intel(0): Gamma: 2.20
    [ 13.552] (II) intel(0): No DPMS capabilities specified
    [ 13.552] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 13.552] (II) intel(0): First detailed timing is preferred mode
    [ 13.552] (II) intel(0): redX: 0.635 redY: 0.342 greenX: 0.292 greenY: 0.611
    [ 13.552] (II) intel(0): blueX: 0.147 blueY: 0.070 whiteX: 0.313 whiteY: 0.329
    [ 13.552] (II) intel(0): Supported established timings:
    [ 13.552] (II) intel(0): 640x480@60Hz
    [ 13.552] (II) intel(0): 800x600@60Hz
    [ 13.552] (II) intel(0): 1024x768@60Hz
    [ 13.552] (II) intel(0): Manufacturer's mask: 0
    [ 13.552] (II) intel(0): Supported standard timings:
    [ 13.552] (II) intel(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 13.552] (II) intel(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 13.552] (II) intel(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 13.552] (II) intel(0): Supported detailed timing:
    [ 13.552] (II) intel(0): clock: 138.5 MHz Image Size: 531 x 299 mm
    [ 13.552] (II) intel(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 13.552] (II) intel(0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
    [ 13.552] (II) intel(0): Supported detailed timing:
    [ 13.552] (II) intel(0): clock: 148.5 MHz Image Size: 531 x 299 mm
    [ 13.552] (II) intel(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 13.552] (II) intel(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 13.552] (II) intel(0): Ranges: V min: 56 V max: 61 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
    [ 13.552] (II) intel(0): Monitor name: W2442
    [ 13.552] (II) intel(0): Supported detailed timing:
    [ 13.552] (II) intel(0): clock: 148.5 MHz Image Size: 531 x 299 mm
    [ 13.552] (II) intel(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 13.552] (II) intel(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 13.552] (II) intel(0): Supported detailed timing:
    [ 13.552] (II) intel(0): clock: 74.2 MHz Image Size: 531 x 299 mm
    [ 13.552] (II) intel(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 13.552] (II) intel(0): v_active: 540 v_sync: 542 v_sync_end 547 v_blanking: 562 v_border: 0
    [ 13.552] (II) intel(0): Supported detailed timing:
    [ 13.552] (II) intel(0): clock: 74.2 MHz Image Size: 531 x 299 mm
    [ 13.552] (II) intel(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 13.552] (II) intel(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 13.552] (II) intel(0): Supported detailed timing:
    [ 13.552] (II) intel(0): clock: 27.0 MHz Image Size: 531 x 299 mm
    [ 13.552] (II) intel(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 13.552] (II) intel(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 13.552] (II) intel(0): Number of EDID sections to follow: 1
    [ 13.552] (II) intel(0): EDID (in hex):
    [ 13.552] (II) intel(0): 00ffffffffffff001e6dcc568bf10300
    [ 13.552] (II) intel(0): 0415010380351e780aaec5a2574a9c25
    [ 13.552] (II) intel(0): 125054210800b3008180814001010101
    [ 13.552] (II) intel(0): 0101010101011a3680a070381f403020
    [ 13.552] (II) intel(0): 3500132b2100001a023a801871382d40
    [ 13.552] (II) intel(0): 582c4500132b2100001e000000fd0038
    [ 13.552] (II) intel(0): 3d1e530f000a202020202020000000fc
    [ 13.552] (II) intel(0): 0057323434320a202020202020200128
    [ 13.552] (II) intel(0): 020321f14e900403011412051f101300
    [ 13.552] (II) intel(0): 000000230907078301000065030c0010
    [ 13.552] (II) intel(0): 00023a801871382d40582c4500132b21
    [ 13.552] (II) intel(0): 00001e011d8018711c1620582c250013
    [ 13.552] (II) intel(0): 2b2100009e011d007251d01e206e2855
    [ 13.552] (II) intel(0): 00132b2100001e8c0ad08a20e02d1010
    [ 13.552] (II) intel(0): 3e9600132b2100001800000000000000
    [ 13.552] (II) intel(0): 00000000000000000000000000000026
    [ 13.552] (II) intel(0): Printing probed modes for output HDMI1
    [ 13.552] (II) intel(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 13.552] (II) intel(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 13.552] (II) intel(0): Modeline "1920x1080"x50.0 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
    [ 13.552] (II) intel(0): Modeline "1920x1080i"x60.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 13.552] (II) intel(0): Modeline "1920x1080i"x50.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 13.552] (II) intel(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 13.552] (II) intel(0): Modeline "1680x945"x60.0 131.48 1680 1784 1960 2240 945 946 949 978 -hsync +vsync (58.7 kHz)
    [ 13.552] (II) intel(0): Modeline "1400x1050"x59.9 101.00 1400 1448 1480 1560 1050 1053 1057 1080 +hsync -vsync (64.7 kHz e)
    [ 13.552] (II) intel(0): Modeline "1600x900"x60.0 118.96 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz)
    [ 13.552] (II) intel(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 13.552] (II) intel(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 13.552] (II) intel(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 13.552] (II) intel(0): Modeline "1366x768"x60.0 85.89 1366 1439 1583 1800 768 769 772 795 -hsync +vsync (47.7 kHz)
    [ 13.552] (II) intel(0): Modeline "1360x768"x60.0 85.50 1360 1424 1536 1792 768 771 777 795 +hsync +vsync (47.7 kHz e)
    [ 13.552] (II) intel(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 13.552] (II) intel(0): Modeline "1280x768"x60.0 68.25 1280 1328 1360 1440 768 771 778 790 +hsync -vsync (47.4 kHz e)
    [ 13.552] (II) intel(0): Modeline "1280x720"x50.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 13.552] (II) intel(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 13.552] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 13.552] (II) intel(0): Modeline "1024x576"x60.0 46.97 1024 1064 1168 1312 576 577 580 597 -hsync +vsync (35.8 kHz)
    [ 13.552] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 13.552] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 13.552] (II) intel(0): Modeline "720x576"x50.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 13.552] (II) intel(0): Modeline "848x480"x60.0 33.75 848 864 976 1088 480 486 494 517 +hsync +vsync (31.0 kHz e)
    [ 13.552] (II) intel(0): Modeline "720x480"x59.9 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 13.552] (II) intel(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 13.552] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 13.593] (II) intel(0): EDID for output DP1
    [ 13.593] (II) intel(0): Output VGA1 disconnected
    [ 13.593] (II) intel(0): Output HDMI1 connected
    [ 13.593] (II) intel(0): Output DP1 disconnected
    [ 13.593] (II) intel(0): Using exact sizes for initial modes
    [ 13.593] (II) intel(0): Output HDMI1 using initial mode 1920x1080
    [ 13.593] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 13.593] (==) intel(0): DPI set to (96, 96)
    [ 13.593] (II) Loading sub module "dri2"
    [ 13.593] (II) LoadModule: "dri2"
    [ 13.593] (II) Module "dri2" already built-in
    [ 13.593] (==) Depth 24 pixmap format is 32 bpp
    [ 13.793] (II) intel(0): SNA initialized with Broadwater/Crestline backend
    [ 13.793] (==) intel(0): Backing store disabled
    [ 13.793] (==) intel(0): Silken mouse enabled
    [ 13.793] (II) intel(0): HW Cursor enabled
    [ 13.793] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 13.794] (==) intel(0): DPMS enabled
    [ 13.794] (II) intel(0): Overlay video not supported on this hardware
    [ 13.794] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 13.794] (II) intel(0): [DRI2] Setup complete
    [ 13.794] (II) intel(0): [DRI2] DRI driver: i965
    [ 13.794] (II) intel(0): direct rendering: DRI2 Enabled
    [ 13.794] (==) intel(0): hotplug detection: "enabled"
    [ 13.794] (--) RandR disabled
    [ 14.124] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 14.124] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 14.124] (II) AIGLX: enabled GLX_ARB_create_context
    [ 14.124] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 14.124] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 14.124] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 14.124] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 14.124] (II) AIGLX: Loaded and initialized i965
    [ 14.124] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 14.125] (II) intel(0): switch to mode 1920x1080 on crtc 3 (pipe 0)
    [ 14.210] (II) intel(0): Setting screen physical size to 508 x 285
    [ 14.922] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 14.922] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 14.922] (II) LoadModule: "evdev"
    [ 14.922] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 14.957] (II) Module evdev: vendor="X.Org Foundation"
    [ 14.957] compiled for 1.13.0, module version = 2.7.3
    [ 14.957] Module class: X.Org XInput Driver
    [ 14.957] ABI class: X.Org XInput driver, version 18.0
    [ 14.957] (II) Using input driver 'evdev' for 'Power Button'
    [ 14.957] (**) Power Button: always reports core events
    [ 14.957] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 14.957] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 14.957] (--) evdev: Power Button: Found keys
    [ 14.957] (II) evdev: Power Button: Configuring as keyboard
    [ 14.957] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
    [ 14.957] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 14.957] (**) Option "xkb_rules" "evdev"
    [ 14.957] (**) Option "xkb_model" "evdev"
    [ 14.957] (**) Option "xkb_layout" "us"
    [ 14.988] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 14.988] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 14.988] (II) Using input driver 'evdev' for 'Power Button'
    [ 14.988] (**) Power Button: always reports core events
    [ 14.988] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 14.988] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 14.988] (--) evdev: Power Button: Found keys
    [ 14.989] (II) evdev: Power Button: Configuring as keyboard
    [ 14.989] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
    [ 14.989] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 14.989] (**) Option "xkb_rules" "evdev"
    [ 14.989] (**) Option "xkb_model" "evdev"
    [ 14.989] (**) Option "xkb_layout" "us"
    [ 14.989] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 14.989] (II) config/udev: Adding input device UVC Camera (046d:0825) (/dev/input/event14)
    [ 14.989] (**) UVC Camera (046d:0825): Applying InputClass "evdev keyboard catchall"
    [ 14.989] (II) Using input driver 'evdev' for 'UVC Camera (046d:0825)'
    [ 14.989] (**) UVC Camera (046d:0825): always reports core events
    [ 14.989] (**) evdev: UVC Camera (046d:0825): Device: "/dev/input/event14"
    [ 14.989] (--) evdev: UVC Camera (046d:0825): Vendor 0x46d Product 0x825
    [ 14.989] (--) evdev: UVC Camera (046d:0825): Found keys
    [ 14.989] (II) evdev: UVC Camera (046d:0825): Configuring as keyboard
    [ 14.989] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input14/event14"
    [ 14.989] (II) XINPUT: Adding extended input device "UVC Camera (046d:0825)" (type: KEYBOARD, id 8)
    [ 14.989] (**) Option "xkb_rules" "evdev"
    [ 14.989] (**) Option "xkb_model" "evdev"
    [ 14.989] (**) Option "xkb_layout" "us"
    [ 14.990] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event4)
    [ 14.990] (II) No input driver specified, ignoring this device.
    [ 14.990] (II) This device may have been added with another device file.
    [ 14.990] (II) config/udev: Adding input device HDA Intel Front Headphone (/dev/input/event10)
    [ 14.990] (II) No input driver specified, ignoring this device.
    [ 14.990] (II) This device may have been added with another device file.
    [ 14.991] (II) config/udev: Adding input device HDA Intel Line Out CLFE (/dev/input/event11)
    [ 14.991] (II) No input driver specified, ignoring this device.
    [ 14.991] (II) This device may have been added with another device file.
    [ 14.991] (II) config/udev: Adding input device HDA Intel Line Out Surround (/dev/input/event12)
    [ 14.991] (II) No input driver specified, ignoring this device.
    [ 14.991] (II) This device may have been added with another device file.
    [ 14.991] (II) config/udev: Adding input device HDA Intel Line Out Front (/dev/input/event13)
    [ 14.991] (II) No input driver specified, ignoring this device.
    [ 14.991] (II) This device may have been added with another device file.
    [ 14.991] (II) config/udev: Adding input device HDA Intel HDMI/DP,pcm=3 (/dev/input/event6)
    [ 14.991] (II) No input driver specified, ignoring this device.
    [ 14.991] (II) This device may have been added with another device file.
    [ 14.992] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event7)
    [ 14.992] (II) No input driver specified, ignoring this device.
    [ 14.992] (II) This device may have been added with another device file.
    [ 14.992] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event8)
    [ 14.992] (II) No input driver specified, ignoring this device.
    [ 14.992] (II) This device may have been added with another device file.
    [ 14.992] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event9)
    [ 14.992] (II) No input driver specified, ignoring this device.
    [ 14.992] (II) This device may have been added with another device file.
    [ 14.993] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 14.993] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 14.993] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 14.993] (**) AT Translated Set 2 keyboard: always reports core events
    [ 14.993] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 14.993] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 14.993] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 14.993] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 14.993] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 14.993] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 14.993] (**) Option "xkb_rules" "evdev"
    [ 14.993] (**) Option "xkb_model" "evdev"
    [ 14.993] (**) Option "xkb_layout" "us"
    [ 14.993] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/event5)
    [ 14.993] (**) ImPS/2 Generic Wheel Mouse: Applying InputClass "evdev pointer catchall"
    [ 14.993] (II) Using input driver 'evdev' for 'ImPS/2 Generic Wheel Mouse'
    [ 14.993] (**) ImPS/2 Generic Wheel Mouse: always reports core events
    [ 14.993] (**) evdev: ImPS/2 Generic Wheel Mouse: Device: "/dev/input/event5"
    [ 14.993] (--) evdev: ImPS/2 Generic Wheel Mouse: Vendor 0x2 Product 0x5
    [ 14.993] (--) evdev: ImPS/2 Generic Wheel Mouse: Found 3 mouse buttons
    [ 14.993] (--) evdev: ImPS/2 Generic Wheel Mouse: Found scroll wheel(s)
    [ 14.993] (--) evdev: ImPS/2 Generic Wheel Mouse: Found relative axes
    [ 14.993] (--) evdev: ImPS/2 Generic Wheel Mouse: Found x and y relative axes
    [ 14.993] (II) evdev: ImPS/2 Generic Wheel Mouse: Configuring as mouse
    [ 14.993] (II) evdev: ImPS/2 Generic Wheel Mouse: Adding scrollwheel support
    [ 14.994] (**) evdev: ImPS/2 Generic Wheel Mouse: YAxisMapping: buttons 4 and 5
    [ 14.994] (**) evdev: ImPS/2 Generic Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 14.994] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event5"
    [ 14.994] (II) XINPUT: Adding extended input device "ImPS/2 Generic Wheel Mouse" (type: MOUSE, id 10)
    [ 14.994] (II) evdev: ImPS/2 Generic Wheel Mouse: initialized for relative axes.
    [ 14.994] (**) ImPS/2 Generic Wheel Mouse: (accel) keeping acceleration scheme 1
    [ 14.994] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration profile 0
    [ 14.994] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration factor: 2.000
    [ 14.994] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration threshold: 4
    [ 14.994] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/mouse0)
    [ 14.994] (II) No input driver specified, ignoring this device.
    [ 14.994] (II) This device may have been added with another device file.
    [ 14.994] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 14.994] (II) No input driver specified, ignoring this device.
    [ 14.994] (II) This device may have been added with another device file.
    [ 23.841] (II) intel(0): EDID vendor "GSM", prod id 22220
    [ 23.841] (II) intel(0): Using EDID range info for horizontal sync
    [ 23.841] (II) intel(0): Using EDID range info for vertical refresh
    [ 23.841] (II) intel(0): Printing DDC gathered Modelines:
    [ 23.841] (II) intel(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 23.841] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 23.842] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 23.842] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 23.842] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 23.842] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 23.842] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 23.842] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 23.842] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 23.842] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 23.842] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 23.842] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 23.842] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 23.842] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 23.842] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 23.842] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 23.842] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 23.884] (II) intel(0): switch to mode 1920x1080 on crtc 3 (pipe 0)
    [ 24.108] (II) intel(0): EDID vendor "GSM", prod id 22220
    [ 24.108] (II) intel(0): Using hsync ranges from config file
    [ 24.108] (II) intel(0): Using vrefresh ranges from config file
    [ 24.108] (II) intel(0): Printing DDC gathered Modelines:
    [ 24.108] (II) intel(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 24.108] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 24.108] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 24.108] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 24.108] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 24.108] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 24.108] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 24.108] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 24.108] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 24.108] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 24.108] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 24.108] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 24.108] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 24.108] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 24.108] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 24.108] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 24.108] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 33.191] (II) intel(0): EDID vendor "GSM", prod id 22220
    [ 33.191] (II) intel(0): Using hsync ranges from config file
    [ 33.191] (II) intel(0): Using vrefresh ranges from config file
    [ 33.191] (II) intel(0): Printing DDC gathered Modelines:
    [ 33.191] (II) intel(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 33.191] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 33.191] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 33.191] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 33.191] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 33.191] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 33.191] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 33.191] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 33.191] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 33.191] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 33.192] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 33.192] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 33.192] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 33.192] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 33.192] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 33.192] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 33.192] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 40.998] (II) intel(0): EDID vendor "GSM", prod id 22220
    [ 40.998] (II) intel(0): Using hsync ranges from config file
    [ 40.998] (II) intel(0): Using vrefresh ranges from config file
    [ 40.998] (II) intel(0): Printing DDC gathered Modelines:
    [ 40.998] (II) intel(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 40.998] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
    [ 40.998] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 40.998] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 40.998] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 40.998] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 40.998] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 40.998] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 40.998] (II) intel(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 40.998] (II) intel(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 40.998] (II) intel(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 40.998] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 40.998] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 40.998] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 40.998] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 40.998] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 40.998] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 936.094] (II) evdev: ImPS/2 Generic Wheel Mouse: Close
    [ 936.094] (II) UnloadModule: "evdev"
    [ 936.094] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 936.094] (II) UnloadModule: "evdev"
    [ 936.094] (II) evdev: UVC Camera (046d:0825): Close
    [ 936.094] (II) UnloadModule: "evdev"
    [ 936.094] (II) evdev: Power Button: Close
    [ 936.094] (II) UnloadModule: "evdev"
    [ 936.094] (II) evdev: Power Button: Close
    [ 936.094] (II) UnloadModule: "evdev"
    [ 936.194] Server terminated successfully (0). Closing log file.
    kde log
    Note that your system uses syslog. All of kdm's internally generated messages
    (i.e., not from libraries and external programs/scripts it uses) go to the
    daemon.* syslog facility; check your syslog configuration to find out to which
    file(s) it is logged. PAM logs messages related to authentication to authpriv.*.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(7126) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(7120)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(7120)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    klauncher(7543) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(7537)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(7537)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    kdmgreet: Fatal IO error: client killed
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(326) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(285)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(285)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(341) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(294)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(294)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(273) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(264)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(264)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Error: Can't find file "uk" for symbols include
    > Exiting
    > Abandoning symbols file "default"
    Errors from xkbcomp are not fatal to the X server
    klauncher(857) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(847)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(847)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Error: Can't find file "uk" for symbols include
    > Exiting
    > Abandoning symbols file "default"
    Errors from xkbcomp are not fatal to the X server
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Error: Can't find file "uk" for symbols include
    > Exiting
    > Abandoning symbols file "default"
    Errors from xkbcomp are not fatal to the X server
    klauncher(1223) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(1215)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(1215)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Error: Can't find file "uk" for symbols include
    > Exiting
    > Abandoning symbols file "default"
    Errors from xkbcomp are not fatal to the X server
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(269) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(263)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(263)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(706) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(700)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(700)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(2630) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(2624)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(2624)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(3118) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(3112)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(3112)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(4638) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(4632)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(4632)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    klauncher(5014) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(5008)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(5008)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Compat map for group 2 redefined
    > Using new definition
    > Warning: Compat map for group 3 redefined
    > Using new definition
    > Warning: Compat map for group 4 redefined
    > Using new definition
    Errors from xkbcomp are not fatal to the X server
    Server terminated successfully (0). Closing log file.
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extensio

  • Do indices change, when data of table changes?

    Hello,
    if a table has got many indices and is changed frequently, do the indices change as well. Are all indices corresponding to that table changed. Are these indices processed in any way?
    thanks, resi

    "in indexes, the space can be reused only by rows with the same key-filed"
    That is incorrect. The space left in a index by a deleted row can be used by any key that is between the prior and next keys. For example, if you have Index entries
    Entry 1  Ball
    Entry 2  Bell
    Entry 3  BollNow, you delete Bell, the inndex would look like:
    Entry 1  Ball
    Entry 2  
    Entry 3  BollNow, add Bill, and the index would look like:
    Entry 1  Ball
    Entry 2  Bill
    Entry 3  Bollno wasted space.
    Rebuilding indexes is a waste of time and resources in the vast majority of cases.
    Search Tom Kyte's site here for rebuilding indexes or reorganizong indexes for many, often lively, discussions.
    John

  • Logging of table changes

    Hi All,
              We are working on ERP 6.0. Recently Basis team has been asked to activate the table changes logs in Production system. Accordingly we activated the rec/client parameter for Production system client. We are also required to click the log changes tab in the table for which the logs are to be activated.This is to be done through t code SE13. While trying to do so, I have found that our Production system is not allowing to make changes directly as it is configured in non modifiable stage. I have also tried to make changes in devp clinet and then transport it to quality an Production,however it is not working.
    Kindly let me know the exact method by which I can activate the tab in the table.
    Thanks,
    Prasad Thakur

    Hello Prasad,
    This is strange. It is understandable that the table content changes is not getting recorded in case rec/client (in default profile) is not set along with recclient="XXX" (in transport profile) but  table logging activation not getting reflected in QA is a bit weird.
    Are you sure that the transport carried correct contents. Can you list the contents of the transport. It should have an entry related to DD09L.
    Is the table showing as activated ? Just try to activate/generate it.
    For more info on recording please check OSS notes 1916 and 84052.
    With Regards.
    Ruchit Khushu.

  • High DML table for GG replication

    Dear All,
    GG version : 11.1.1
    Source db Version: 9.2.0.6(siebel database)
    Target DB version: 10.2.04
    We have a very huge DML table where daily basis aroud 10 million records will get inserted into this table. As per the business requirement , we have to replicate this table to our datawarehouse env.
    So can somebody help me out , what kind of precautions i need to take care before and after starting the replication of this table.( wrt Performance and maintainance)
    Thanks in Advance...
    Mvk

    You'll want to use more than one process group, kind of like a divide and conquer approach.
    You'll want to use a data pump/secondary extract to prevent data loss due to network failure.
    Keep short transactions together, long running ones separate, and LOBs separate.
    Tune your network, see some MAA papers (over in Data Guard and Streams, plus note on MOS).
    Figure out which is the best way to do the initial load (probably Oracle data pump, depends on where/when for transformations).
    Do data transformations on Replicat side (or within the DW database, so let GoldenGate data pump use passthru, and even for Replicat assumetargetdefs if transformation is done on/in the DW).
    Consider how you manage trails (purge policy, file system storage, recoverability). How much archived redo does the 10 million txns generate? Estimate about 40% of that for your daily trail space usage.
    Robust error detection/alert and handling. Don't let synch get too far behind or off, and try to figure out where your switchover point is (is it easier to try and get both sides synched via GoldenGate, or is it better to do a new initial load). With your scenario, I'd probably look at just getting the data from source to target, and then do all transformation in the DW. The management pack can help with the alert/reporting.

  • Table changes in database are not captured in ODI model level

    Hi All,
    Can any one help me how to fix the bug in ODI.
    Table changes in database are not captured in ODI model level.
    Thanks in advance

    I created the interface which is running successfully.
    Now i did some changes in target table(data base level).
    I reversed the updated table in model section. Till here its ok
    The table which is updated in the model section is not automatically updated in the interface.
    I have to drop the existed datastore in the interface and and re do the entire process of bringing the updated datastore, mapping,etc..
    Please tell the any alternate way.
    Regards
    suresh

  • How to monitor DML statements

    Hi pals,
    I want to know how i can monitor DML statements, i can able to monitor select statments but don't DML statements, is there any way or script in following format:
    Executer,Statement,%Completed,%left,Exec_Time,Time_left
    Where
    Executer is a user who runs the statement
    Statement which statement runs
    %completed how much DML operation completed
    %left how much DML operation left
    Exec_Time elapsed time
    time_left how much time remaining in complete operation
    I really apperciate you pals if you can give me some idea how this can be possible??
    Thanks in advance
    Hassan Khan

    Hi,
    These info can be found in V$SESSION_LOGOPS. But the view isn't populated for every query and sometimes it's a bit weird (I actually had queries that ouput 290% of "work" - parallel query side effect). Also notice that this is for long ops, and not everything will be reported there.
    HTH,
    Yoann.

  • Track of table changes in a database

    how to keep track of table changes in a database.
    Some records have been deleleted, is there away of seeing that change.

    basically, if you havn't already set up a mechanism to track these sorts of changes, they are already lost.
    there are a number of things you can do. one method that we use is a trigger on the table to insert a record into an audit table for every row that gets changed or deleted.
    oracle has some other built in auditing tools that I'm not familiar with though.

Maybe you are looking for