Script has changed

My problem is that a script that I created with Panther has changed in Tiger. The original script was:
tell application "Microsoft Excel"
Activate
set RowNum to Row of ActiveCell
set ColNum to Column of ActiveCell
set FormulaR1C1 of ActiveCell to "Deposit"
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
Select Range NewRange
display dialog "What Film is This?" default answer ""
set FilmWorked to text returned of result
set FormulaR1C1 of ActiveCell to FilmWorked
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
Select Range NewRange
display dialog "What Kind of Income?" default answer ""
set IncomeType to text returned of result
set FormulaR1C1 of ActiveCell to IncomeType
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
Select Range NewRange
display dialog "What are the Details?" default answer ""
set IncomeDetails to text returned of result
set FormulaR1C1 of ActiveCell to IncomeDetails
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
Select Range NewRange
set FormulaR1C1 of ActiveCell to "DEP"
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
Select Range NewRange
end tell
That script has been replaced by:
tell application "Microsoft Excel"
«event XCELactv»
set RowNum to row of «class PACL»
set ColNum to column of «class PACL»
set «class PFO1» of «class PACL» to "Deposit"
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
«event XCELSLCT» «class crng» NewRange
display dialog "What Film is This?" default answer ""
set FilmWorked to text returned of result
set «class PFO1» of «class PACL» to FilmWorked
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
«event XCELSLCT» «class crng» NewRange
display dialog "What Kind of Income?" default answer ""
set IncomeType to text returned of result
set «class PFO1» of «class PACL» to IncomeType
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
«event XCELSLCT» «class crng» NewRange
display dialog "What are the Details?" default answer ""
set IncomeDetails to text returned of result
set «class PFO1» of «class PACL» to IncomeDetails
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
«event XCELSLCT» «class crng» NewRange
set «class PFO1» of «class PACL» to "DEP"
set ColNum to (ColNum + 1)
set NewRange to "R" & RowNum & "C" & ColNum
«event XCELSLCT» «class crng» NewRange
end tell
The script no longer functions. Does this ring a bell to anyone? The file date of the script hasn't changed, although the script is different in the script editor. When I copy the same script to my laptop (also running OS X 10.4.3) it appears as it originally did. Same file, same date. Strange. Is it possible that Excel is changing the script on my G5?
Any help would be greatly appreciated. For now, I'll run the script on my laptop.
Tom Carlson
G5 2.7 Dual Processor   Mac OS X (10.4.3)  
G5 2.7 Dual Processor   Mac OS X (10.4.3)  

Thanks Neil and Camelot for your answers. I believe that you have hit on the problem. The script was written using Excel v. X and the problems popped up on the G5 which is running Excel 2004. That would definitely point to the dictionary. When I copied and pasted the script, it appeared as it did originally, but would not run on the G5.
Do either of you have a suggestion as to the best way to make the transition to the new dictionary? Are there likely to be any other syntax issues, or do I just need to figure out how to do the same task with the new dictionary?
Thanks again, guys for the quick response.
Tom Carlson
G5 2.7 Dual Processor   Mac OS X (10.4.3)  

Similar Messages

  • I have down loaded iOS 5 and the language script has changed to Arabic. I am based in Kuwait but dont' speak Arabic. I need English script back. Please advice.

    Please advice on the above. Thank you.

    Dear Huntress.
    I had done all that but no use.
    Thank you so much for your response. Rgds.

  • Has there been updates to transcription support in a PS 4 Windows Update? Behaviour has changed...

    I utilise PowerShell transcription support heavily in my PS scripts. Essentially I utilise transcription as a replacement to having a logging framework - all logging is performed via Write-Host, Write-Verbose and Write-Debug calls, and then logged to file
    via a call to Start-Transcript at the start of script execution.
    Transcription support in PS versions prior to 5 is limited in that it is hard coded in the Start-Transcript and Stop-Transcript commands to throw an exception if the host is not an instance of Microsoft.PowerShell.ConsoleHost. Also, to make it even more difficult,
    Stop-Transcript throws an error when there is no active transcript; but there is no way to detect if there is. Therefore, I use reflection to get the ConsoleHost.IsTranscribing internal property value to determine whether to call Stop-Transcript at script
    completion. This logic has worked fine for PS versions 2, 3 and 4. However, more recently I believe a Windows Update patch has changed the way the transcription works. It appears that PS 4 now supports transcription functionality that I thought was PS 5 (CTP)
    specific - nested transcription sessions (i.e. you can now continually call Start-Transcript and it will create more sessions, rather than throw an error when there is an active session).  Also, the internals of how transcription is managed must have
    changed because the IsTranscribing property no longer returns the correct value. I am unsure if there is now a "supported" way of checking for this rather than hacking into the internals of the host. This change results in my script creating multiple
    transcription sessions as it does not know there is already transcription started.
    Does anyone know if there has been any updates in PS 4 for the transcription functionality? Or any other details regarding this?
    Cheers

    Hi Anna,
    Thanks for the response. Can you make sense of the info below? Transcription appears completely broken
    on the build on my machine, which I have not installed any PS CTP on. I am worried a hotfix such as KB3000850 which has also caused me the grief here:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/eaa4a532-5ff5-4a2f-89ce-7e72c71a8fb7/powershell-30-stuck-in-infinite-loop-resolving-members-internally-is-this-a-ps-bug?forum=winserverpowershell
    https://connect.microsoft.com/PowerShell/feedback/details/1045858/add-member-cmdlet-invokes-scriptproperty-members-when-adding-new-member
    ...has been installed via Windows Update. I am running Windows 8.1 and all latest updates applied as at 23 April.
    My $PSVersionTable is the same as yours except for "BuildVersion" 6.3.9600.17400. I can also call Start-Transcript continually and it will keep creating sessions. Once I do this all sessions receive data once I
    enter more commands in the console (i.e. each file is getting the same data). This is the behaviour I would have expected in PS 5 with the transcription updates, but not in a PS 4 update.
    NOTE: In addition to this, the data being fed into the transcription file is NOT the same format as the standard transcription format. The transcription file contains different data and
    is not a true reflection of what is on the console). The following data is being output to the transcription file after each command:
    CurrentMatchIndex              ReplacementIndex             ReplacementLength CompletionMatches
                               -1                            
    0                             8 {System.Management.Automat...
    In addition to that (I haven't had a chance to look into this in detail), but the log files that are being generated by the PS module I have written are now containing a heap of contents that appear to be generated each time an exception
    is thrown (even if it has been caught?)
    "PS>TerminatingError(Invoke-Expression): xxxxxxx" and
    "PS>TerminatingError(): "The pipeline has been stopped.""
    messages, but no host, verbose, or debug data (i.e. terminating error details only, which I have never seen in the transcript file before). That's correct -
    the transcription file doesn't contain any of the data it used to, just error info that did not used to be in there!!
    Please assist urgently, this is a critical issue for me.

  • Fields don't recognize their value has changed when a copy/paste value in inputed

    I'm having a minor hiccup with my copy and paste buttons.
    I have check boxes that, when checked, make other fields visible.  The copy/paste actions recognize when the check box value is 1 and paste accordingly in the new instance of the subform, however, the invisible fields do not become visible, despite the check box value being 1 in the new instance.  I feel like I'm missing something simple....possibly something that forces the scripting within the check box field to run since it is not recognizing that it's value has changed?  If I manually click the check box in the new instance, the scripting works and the invisible fields become visible so I know its not an issue with creating new instances.
    Any suggestions will be appreciated...I am new to this...
    Scott

    Still interested in solving this issue....anyone? please?

  • Is it possible to script language change in OSX Lion ?

    I recently purchased a Disney game (Cars 2) from the App Store, which advertises being available in 5 languages. It seems now that the game has no in-app options to change language, but selects the language based on OSX settings (but otherwise the app doesn't use ANY of the GUI elements from the OS).
    My Mac's are all set up in English, in the account on which my kid plays the game doesn't have administrator rights (for good reasons). He doesn't master the English language enough and would like to play the game in dutch. On the other hand, when using Safari and other apps, he is used to the English user interface.
    Is it possible to create a script that changes the Finder language to Dutch, then forces Finder Quit, then launches the App, and after quitting the App reverses the Finder Change ? (or if not in one step, maybe in a number of subscripts), so that I can let my kid enjoy his game in dutch without me having to be present each time to change the system settings ?
    Thanks in advance.
    Philip

    Tom, thanks, this works perfectly. In older days, I have been a programmer on Mac (long before even the PowerMac days), and back then I would have used ResEdit to do something similar as what you suggested. Since those days are long gone, I was not sure if it was possible to change the resources of an app without extensive coding software, but the trick you just showed me seems to be the current-day equivalent of ResEdit ...
    Anyways, you saved our day ... thanks alot
    Philip

  • ITunes 7.1 has changed how my music files are organised - why?

    My preference is to store all the music on my PC underneath iTunes, thus:
    My Documents\My Music\iTunes\iTunes Music\{artist}\{album}
    I do not purchase music from the iTunes store (there hasn't been one in my country until very recently) but I do import CDs from my own collection, and also mp3 files which I obtain (legally) from other sources such as emusic.
    I have had the "keep iTunes music folder organised" and "copy files to iTunes music folder" preferences checked. To avoid duplication, when I have new tracks to add to my library I move them into a 'New Imports' folder inside 'iTunes Music' and then invoke "File > Add Folder to Library" in iTunes.
    Id tags in these mp3 files are not always consistent w.r.t. artist names, so I often have to select a few tracks, and edit the info so that the artist/album names are standard. When I do this the files are physically moved into the correct folder (and so I have one "Beethoven, Ludwig van" folder, rather than the dozen or so variations on that name which have been imported, and the other now-empty folders have been deleted).
    So far so good - up until the latest iTunes upgrade, that is.
    It appears that this version has changed the way iTunes operates, and it now uses the "Album Artist" field in preference to the "Artist" field. Actually that can't be strictly true, there must be other factors at work too: this afternoon I imported an album with 33 tracks; the album artist was empty while the artist was spelt in two different ways. I selected all the tracks in iTunes-Music and used "Get Info" to give all 33 tracks the same artist; the result moved 32 tracks into one folder (named as "artist") and left track 23 in its original folder. I then selected track 23 alone and checked the artist and album artist fields, and the result moved the other 32 tracks into the same folder as track 23 (named as "album artist").
    What's going on? A "what's new in iTunes 7.1" document would probably be useful but if Apple have released one I can't find it.
    Cheers
    T

    iTunes keeps no memory of the previous folders things were in so no obvious way to reverse the change. iTunes shouldn't move your files about if that option isn't ticked except if you use the option File > Library > Organize Library > Rearrange files in the folder "iTunes Media" (or you "consolidated", in which case the originals would still be in place). If it's not that then I've no idea why it did what it did. Ideally you would have a backup to recover from such a situation.
    If your files are all correctly tagged with their respective genres so that it is easy to identify "audiobooks", "teaching", "study" etc. within iTunes then you could modify my script ConsolidateByMoving to move selected files to precisely where you want them.
    tt2

  • Can I script the changing of creation date, using the file name?

    Normally people are doing this in reverse, but let me paint the picture.
    I pulled 204 video files from an old HDD based JVC camera.  JVC records in .MOD format which iPhoto won't import.  I imported them into iMovie just fine, and iMovie even set the file name to clip-2007-11-04 04;42;29.mov which is great, but it now has a new creation date of whatever date I imported it.  Which then causes problem when I want the videos stored in iPhoto and sorted appropriately by creation date.
    I've used the application "A Better Finder Attributes 5" to individually edit the creation and modify, but I'm sure I don't want to do this 203 more times, as you can't just type in the date and time, you have to type in each part of the date/time, or select it on a calendar.
    I've used the application "Name Changer" to batch convert the file names to the format YYYYMMDDhhmm which would be helpful if I were going to use the terminal command touch -t, but again I don't want to have to type it in 203 more times, plus drag and drop the file into finder to populate the location.
    Now, if I were more handy with automator, or maybe some (any) scripting language this would be easy peasy.  I'd batch rename all the files to the YYYYMMDDhhmm.mov and then have a script that just took the file name, passed that to touch -t along with the file location, and a few seconds later, they would all be done!
    Anybody have any suggestions to how I can do this, and tips to what commands to use or ANY advice?  I'm more than happy to RTFM, but I have no idea which manual to read!
    Thanks

    If your file names are precisely as you have written, this script will do what you want.
    Copy the script into an AppleScript Editor document, select one or more files in a Finder window, return to the AS Editor and press Run.  Note: you will need to provide your password when the script runs.
    Make sure you have a backup of any files you are working on (try using duplicates first, perhaps). The script has no error handling.
    tell application "Finder"
              set FileList to selection
              repeat with theFile in FileList
                        set fileName to name of theFile
                        set filePath to quoted form of (POSIX path of (theFile as alias))
                        set crYear to text 6 thru 9 of fileName
                        set crMonth to text 11 thru 12 of fileName
                        set crDay to text 14 thru 15 of fileName
                        set crHour to text 17 thru 18 of fileName
                        set crMins to text 20 thru 21 of fileName
                        set crDate to crYear & crMonth & crDay & crHour & crMins
                        set shellString to "touch -t " & crDate & " " & filePath
      do shell script shellString with administrator privileges
              end repeat
    end tell

  • 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

  • Powershell script to change the a column value of all documents in a site.

    Hi,
    I need a powershell script to change the value of a column (a site column which has been added to all document libraries) in all documents in a site,
    For example: 
    -column 1 is a site column added to all libraries
    the value of column 1 of all documents under this site: http://intranet.doman/ex1 should be equal to V1
    the value of column 1 of all documents under this site: http://intranet.doman/ex2 should be equal to V2
    So, if I can write a powershell script to change the value of all documents in a site, I can modify it for different site that I have and run it for each of them individually,

    cls
    # Is dev version?
    $dev = $false
    # Configuration
    $termStore = "Managed Metadata Service"
    $group = "G1"
    $subjectMatterTermSetName = "Subject Matter"
    # Check if SharePoint Snapin is loaded
    if((Get-PSSnapin | Where {$_.Name -eq "Microsoft.SharePoint.PowerShell"}) -eq $null) {
         Add-PSSnapin Microsoft.SharePoint.PowerShell
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Taxonomy") | Out-Null
    function GetTermStore($site, $termStore, $group, $termSet) {    
        $session = New-Object Microsoft.SharePoint.Taxonomy.TaxonomySession($site)
        $termStore = $session.TermStores[$termStore]
        $group = $termStore.Groups[$group]
        $termSet = $group.TermSets[$termSet]
        return $termSet
    if($dev) {
        Write-Host "Running DEV version..."
        $webUrl = "http://Site1"   
        $libraryName = "L1"
        $subjectMatter = "C1"
    } else {
        $webUrl = Read-Host "Enter Site URL" 
        $libraryName = Read-Host "Enter Document Library name"
    $subjectMatter = Read-Host "Enter Subject Matter"
    try {
        $web = Get-SPWeb $webUrl
        $site = $web.Site
        $library = $web.Lists[$libraryName]
        $items = $library.GetItems()
        $subjectMatterTermSet = GetTermStore $site $termStore $group $subjectMatterTermSetName
        $subjectMatterTerm = $subjectMatterTermSet.GetTerms($subjectMatter,$true) | select -First 1
        foreach($item in $items) {
            if([string]::IsNullOrEmpty($item["Subject Matter"])) {     
                #Write-Host "Filename: $filename / Keywords: $keywords / Subject Matter: $subjectMatter / Document Type: $documentType"        
                Write-Host "Updating $($item["ows_FileLeafRef"])..."           
                # Set Subject Matter column
                $subjectMatterField = [Microsoft.SharePoint.Taxonomy.TaxonomyField]$item.Fields["Subject Matter"]
                $subjectMatterField.SetFieldValue($item,$subjectMatterTerm)
                # Update Item
                $item.SystemUpdate()
    catch
        $ErrorMessage = $_.Exception.Message
        Write-Host "Something went wrong. Error: $ErrorMessage" -ForegroundColor Red

  • Em does not start after servername has changed

    Is there a possibility to get the datanbase running in an ordinary way after the servername has changed after the installation of the database?
    System:
    Windows Server 2003R2
    Oracle 10g R2
    I have changed tnsnames.ora and listener.ora, so the client connection runs well.
    But enterprise manager does not start:
    If I want to start "Database control" there is the old servername in the http-Link:
    http://oldservername:1158/em
    If I replace the old name with "localhost" or the new name I get also an errormessage that the site cant be found.
    In services the OracleDBConsole cant be started.
    with ">emctl start dbconsole" I get the error message ORACLE_SID is not defined.
    Defining it does not change the behaviour.
    Do I have to reinstall the database?
    Thanks
    Roswitha

    Subject: How To Drop, Create And Recreate DB Control In A 10g Database
    Doc ID: Note:278100.1 Type: BULLETIN
    Last Revision Date: 05-JUN-2007 Status: PUBLISHED
    In this Document
    Purpose
    Scope and Application
    How To Drop, Create And Recreate DB Control In A 10g Database
    DB Control options:
    A. Delete DB Control Objects:
    B. Create DB Control Objects
    C. Recreate/ReConfig DB Control
    Applies to:
    Enterprise Manager Grid Control - Version: 10.1 to 10.2
    Information in this document applies to any platform.
    DBConsole
    Purpose
    This article provides detailed instructions on how to 1) create, 2) drop and 3)recreate the repository and configuration files for the DB Control application used to manage a single 10g Database.
    Scope and Application
    The steps in this article are written for a DBA or System Administrator who needs to create, drop or reconfigure the DB Control Application.
    The format of the document will include steps for both 10.1 and 10.2 EMCA because the commands changed between the two releases.
    How To Drop, Create And Recreate DB Control In A 10g Database
    DB Control options:
    A. Delete DB Control Objects:
    Option 1. Delete DB Control Configuration Files using EMCA scripts
    Option 2. Delete DB Control Configuration Files Manually:
    Option 3. Delete DB Control Repository Objects using RepManager
    Option 4. Delete DB Control Repository Objects Manually
    Option 5. Delete DB Control Configuration Files and Repository Objects using EMCA
    Option 1. Delete DB Control Configuration Files using EMCA scripts:
    For DB Control 10.1.x, run the command: <ORACLE_HOME>/bin/emca -x <sid>For DB Control 10.2.x, run the command: <ORACLE_HOME>bin/emca -deconfig dbcontrol db
    Option 2. Delete DB Control Configuration Files Manually:
    Remove the following directories from your filesystem:
    <ORACLE_HOME>/<hostname_sid>
    <ORACLE_HOME>/oc4j/j2ee/OC4J_DBConsole_<hostname>_<sid>
    NOTE:
    On Windows you also need to delete the DB Console service:
    - run regedit
    - navigate to HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services
    - locate the OracleDBConsole<sid> entry and delete it
    Alternatively on Windows XP and Windows Server 2003 you can run the following from the command line:
    'sc delete <service_name>'
    - where <service_name> is the DB Control service name (typically: OracleDBConsole<sid>)
    Also available from Microsoft is the delsrv.exe command. (Free download from Microsoft)
    Option 3. Delete DB Control Repository using RepManager:
    This option is not as complete as the other options. You may find that dropping the repository using the commandline options is a better solution. Also note, RepManager is not used to create a DB Control Repository.
    In both 10g R1 and R2 run: <ORACLE_HOME>/sysman/admin/emdrep/bin/RepManager <hostname> <listener_port> <sid> -action drop
    Option 4. Delete DB Control Repository Objects Manually
    Logon SQLPLUS as user SYS or SYSTEM, and drop the sysman account and management objects:SQL> SHUTDOWN
    IMMEDIATE;SQL> STARTUP RESTRICT;SQL> EXEC sysman.emd_maintenance.remove_em_dbms_jobs;SQL> EXEC sysman.setEMUserContext('',5);SQL>
    REVOKE dba FROM sysman;SQL> DECLARECURSOR c1 ISSELECT owner, synonym_name nameFROM dba_synonymsWHERE table_owner
    = 'SYSMAN';BEGINFOR r1 IN c1 LOOPIF r1.owner = 'PUBLIC' THENEXECUTE IMMEDIATE 'DROP PUBLIC SYNONYM '||r1.name;ELSEEXECUTE
    IMMEDIATE 'DROP SYNONYM '||r1.owner||'.'||r1.name;END IF;END LOOP;END;/SQL> DROP USER mgmt_view CASCADE;SQL> DROP ROLE mgmt_user;SQL> DROP USER sysman CASCADE;SQL> ALTER SYSTEM DISABLE RESTRICTED SESSION;
    Note: The above will completely delete the DB Control repository from the database; under certain circumstances (e.g. you want to recreate the repository later on) the following statements may be sufficient to remove the repository:
    Logon SQLPLUS as user SYS or SYSTEM, and drop the sysman account and management objects:SQL> drop user
    sysman cascade;SQL> drop role MGMT_USER;SQL> drop user MGMT_VIEW cascade;SQL> drop public synonym MGMT_TARGET_BLACKOUTS;SQL> drop public synonym SETEMVIEWUSERCONTEXT;
    Option 5. Delete DB Control Configuration Files and Repository Objects using EMCA
    For DB Control 10.1.x, dropping both the configuration files and the repository objects is a two step process. Run the following two commands:
    <ORACLE_HOME>/bin/emca -x <sid><ORACLE_HOME>/sysman/admin/emdrep/bin/RepManager <hostname> <listener_port> <sid> -action drop
    For DB Control 10.2.x, both configuration files and repository objects can be deleted with a single command. Run the command:
    <ORACLE_HOME>/bin/emca -deconfig dbcontrol db -repos drop
    B. Create DB Control Objects
    Option 1. Create the DB Control Configuration Files
    Option 2. Create the DB Control Repository Objects and Configuration Files
    Option 1. Create the DB Control Configuration Files
    To create only the DB Control configuration files, skipping the repository creation (this would be done for instance if you dropped only the files and left the repository in place):
    For DB Control 10.1.x, run the command: <ORACLE_HOME>/bin/emca -rFor DB Control 10.2.x, run the command: <ORACLE_HOME>/bin/emca -config dbcontrol db
    Option 2. Create the DB Control Repository Objects and Configuration Files
    For DB Control 10.1.x, run the command: <ORACLE_HOME>/bin/emcaFor DB Control 10.2.x, run the command: <ORACLE_HOME>bin/emca -config dbcontrol db -repos create
    C. Recreate/ReConfig DB Control
    Option 1. Recreate the DB Control Configuration Files only (leave Repository intact)
    Option 2. Recreate the DB Control Configuration Files and Repository
    In 10.2, the EMCA commands can be used to reconfigure the existing installs without removing them first.
    Option 1. Recreate the DB Control Configuration Files only (leave Repository intact):
    For DB Control 10.2.x, run the command:
    <ORACLE_HOME>/bin/emca -config dbcontrol db
    Option 2. Recreate the DB Control Configuration Files and Repository
    For DB Control 10.2.x, run the command:
    <ORACLE_HOME>/bin/emca -config dbcontrol db -repos recreate
    For additional information on EMCA commandline options, please see the Oracle Enterprise Manager 10g Advanced Configuration Guide or see Note 330130.1 Overview Of The EMCA Commands Available for DB Control 10.2

  • Script to Change swatch CMYK values

    Are there any scripts available to change CMYK values of swatches for files in CS3?
    I have hundreds, probably thousands of Illustrator EPS files that use swatches all drawn from a total palette of maybe 50 colours.
    Each colour is named and has a corresponding CMYK value.
    I want to update the CMYK values for all ~50 colours that appears across all these documents. Is there some way I can simply change the CMYK spec of the swatches used by each of these documents by not having to manually open and change the colours etc?
    Even a script would be good that could batch process the files?
    For example:
    File contains a swatch as a named colour like:
    Fire Red spec'd as 0, 96, 99, 0
    I want to automate changing the CMYK values for all files containing Fire Red to, say, 0, 98, 99, 0
    Any ideas? I have searched Google for a couple of days.
    Edit: the flavour here is Illustrator for CS3 - both Win and Mac.

    I understand EXACTLY what you mean as it's the same thing I need to do, and will probably need to do on future occasions.
    Did you get anywhere with this problem?
    I have designed a scheme for a textbook I am illustrating (this is what I do for a living and have been doing so for well over a decade using Illustrator).
    All colours used in every illustration are based on 7 CMYK Global swatches, usually 100% tints but also 50% 75% and others when required.
    Anyway I have done 100 illustrations already based on my template when I realize I'm going to have to darken the green by +10% cyan.
    What I need is a script to change the definition of my global 'green' swatch in every document from 100Y 30C to 100Y 40C.
    Actions won't do it.
    Any suggestions?

  • Script to change wallpaper

    I am looking for a way (script or porgram) to change my wallpaper selection based on what my IP is (like home or work) but also change the image randomly every hour or so (still making sure not to show a work image at home or a home image at work). Any one have idea ideas on how to do this?

    Sorry I have never touched applescript before
    in this case you might want to learn a little apple script if you'll be using a script like that. There are probably several ways to do what you want but the following should work.
    paste the following into Script Editor (it's in /Applications/Utilities).
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 335px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    property ip_address : ""
    set cur_ip to do shell script "ifconfig |grep inet |tail -1 | awk '{print $2}'"
    if cur_ip is not equal to ip_address then -- check to see if the ip address has changed since last check. if it didn't - do nothing.
    set ip_address to cur_ip
    if ip_address = "home.ip.address" then
    tell application "System Events"
    -- RANDOM ROTATION OF A FOLDER OF IMAGES
    tell current desktop
    set picture rotation to 1 -- (0=off, 1=interval, 2=login, 3=sleep)
    set random order to true
    set pictures folder to file "path:to:home:images:"
    set change interval to 3600.0 -- seconds
    end tell
    end tell
    else if ip_address = "work.ip.address" then
    tell application "System Events"
    -- RANDOM ROTATION OF A FOLDER OF IMAGES
    tell current desktop
    set picture rotation to 1 -- (0=off, 1=interval, 2=login, 3=sleep)
    set random order to true
    set pictures folder to file "path:to:work:images:"
    set change interval to 3600.0 -- seconds
    end tell
    end tell
    end if
    end if
    </pre>
    put the ip addresses of at home and at work in the above, as well as the corect paths to different folders with images. then save the script in your Documents folder. Call it, say, backgrounchanger. Then download [lingon|http://www.tuppis.com/lingon> and use it to make a launch daemon. make it run, say, every minute and execute the following command (enter it on line 2)
    osascript /users/username/documents/backgroundchanger.scpt
    Put your short user name instead of username in the above.
    save the daemon and log out/in to activate it.

  • I try to play a song, but iTunes has changed the information on the file

    After installing iCloud, my iTunes suddenly started changing the information on my music files. I would go to play one song, but another song would play instead. I have a PC. Does anyone have any idea what the cause and solution might be?

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout, or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • RichEditableText.content has changed?

    How can I find out whether the content of RichEditableText has changed? When running the sample below, the textFlow.generation number is changed after reading the generation the first time. Any hints?
    Thanks,
    Marc
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo"
                   minWidth="1024" minHeight="768"
                   applicationComplete="application1_applicationCompleteHandler(event)"
                   >
        <s:layout>
            <s:VerticalLayout/>
        </s:layout>
        <fx:Script>
            <![CDATA[
                import flashx.textLayout.elements.TextFlow;
                import flashx.textLayout.conversion.TextConverter;
                import mx.events.FlexEvent;
                private var textFlow:TextFlow
                protected function application1_applicationCompleteHandler(event:FlexEvent):void
                    var init:XML = <TextFlow xmlns="http://ns.adobe.com/textLayout/2008"><p><span>aaa</span></p></TextFlow>
                    textFlow = TextConverter.importToFlow(init, TextConverter.TEXT_LAYOUT_FORMAT)
                    ret.content = textFlow
                    // the same with ret.textFlow = textFlow
                    printGeneration()
                private function printGeneration():void {
                    info.text += textFlow.generation + "\n"
            ]]>
        </fx:Script>
        <s:RichEditableText id="ret" width="200" height="200" />
        <s:TextArea id="info" width="200" height="200" />
        <s:Button label="print generation" click="printGeneration()" />
    </s:Application>

    So, I solved it myself! But it's taken days!!! I'm sure someone could have helped me shorten that time.
    Steps.
    1. In the javascript set name="appletname" in the applet tag.
    2 add some javascript to your html
    function confirmUnload(){
        if (document.appletname.changed()=="yes")
           return 'You have made changes, and they will be lost!';
    //register function with the event handler
    window.onbeforeunload = confirmUnload;
    3. In your applet, add a function
         public String changed(){
              if (hasChanged)
                   return "yes";
              else
                   return "no";
         }

  • EUL has changed. Reschedule report

    Hi Gurus
    I had scheduled a discoverer report to run hourly but now it has eroded out with a Status showing "EUL has changed reschedule report".
    Is there a way to capture all scheduled reports and restore the scheduling automatically using a script?
    We are on discoverer 10.1.2.2
    Thanks
    Ariv

    Pl see if MOS Doc 780025.1 (Scheduled Workbook Error: 'EUL Has Changed, Reschedule Report') can help
    HTH
    Srini

Maybe you are looking for

  • How to install Excell client using Silent Installation

    Hi, We are planning to do the 'client install' using silent installation. I followed the BPC 7.5 installation giude but it just gives the option to do the both ADMIN and EXCEL client installation. For example:bpcclient75.exe /s /zu201Cc:\test&c:\inst

  • Adobe Reader XI 11.0.06 hangs

    Adobe Reader XI 11.0.06 now hangs, was working fine yesterday. What is corrective action? Also, if I unstall and reinstall Adobe Reader XI 11.0.06, will I lose all of my existing Adobe files on my desk top? Vern

  • Relation between SLD, IR and ID

    Can anyone please tell me the technical relation between SLD, IR, ID. In a scenario, at what steps they get related? Regards, -Naveen.

  • Flash Player in browser goes blank

    I've been running an Internet radio station since 2006 and use the Flash Player for the audio playback stream in my browser and have never had any problems until now. About three weeks ago, no matter what version of Flash Player is being used (and al

  • Collection questions please advise

    Hello everyone, i was was recently reviewing my credit report and see that I have an account that was opened by CO in 2011, as well as a collection (Cavalry portfolio services)  for this account that posted from 2013 in the amount of 750. My first qu