120-300 f2,8 Sport de Sigma identifié unknown et bibliothèque(s) non compatibles

Bonjour à tous,
Pour info, je suis un utilisateur avancé.
J'utilise Lightroom 4 (bientôt 5) sur mes PC et Aperture sur mes Mac.
J'ai été désagréablement surpris quand j'ai voulu récupérer sur mon nouveau MacPro les bibliothèques créer avec Aperture sur (Leopard).
Curieusement j'ai pu récupérer les bibliothèques à une date ou Leopard été encore maintenu par Apple !!!!
J'ai donc eu une année de tags et de traitement à refaire.
Que Apple arrête de maintenir un système est tout à fait normal mais que les logiciels installé sur ce même système ne
soient plus compatible est choquant. Lightroom n'a pas ce genre de problème.
Les photographes qui utilisent un logiciel aussi professionnel que Aperture doivent avoir la certitude
de pouvoir récupérer leurs bibliothèques tant que le programme Aperture est maintenu.
C'est aussi un logiciel d'archivage. Qui dit archivage dit pérennité.
De plus pourquoi le 120-300 f2,8 Sport de Sigma n'est toujours pas identifié par Aperture ?
Si Aperture devient un Logitiel pour amateur je viendrai à la concurrence ce qui est vraiment regrettable.
Cordialement
Daniel

Similar Messages

  • SshException: Failed to read remote identification [Unknown cause]

    I have set up the cygwin server to run sftp in my project, but i got these exception, how should i solve it?
    Here is the exception :
    com.maverick.ssh.SshException: com.maverick.ssh.SshException
         at com.maverick.ssh.SshException.<init>(Unknown Source)
         at com.maverick.ssh.SshConnector.A(Unknown Source)
         at com.maverick.ssh.SshConnector.connect(Unknown Source)
         at com.maverick.ssh.SshConnector.connect(Unknown Source)
         at qrcom.util.EdtFTPClient.edtUploadFile(EdtFTPClient.java:182)
         at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.runFTPFile(CreateFTPFileEON.java:183)
         at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.initFTPFile(CreateFTPFileEON.java:129)
         at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.startReport(CreateFTPFileEON.java:101)
         at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.main(CreateFTPFileEON.java:1052)
    Caused by: com.maverick.ssh.SshException: Failed to read remote identification [Unknown cause]
         ... 9 more
    these is the function that i think causes it :
    public void edtUploadFile(String fileFullPath, String remoteFileName, ArrayList attachList, String strftpIP, String ftpPortNo, String strftpUserID, String strftpPwd, FTPMessage ftpMailMessage) throws FTPFileException, Exception{
    StringBuffer ftpMailMsg = new StringBuffer();
    FTPClient ftp = null;
    FTPMessageCollector listener = null;
    try
    * Create an SshConnector instance
    SshConnector con = SshConnector.getInstance();
    // Lets do some host key verification
    con.getContext(SshConnector.SSH2).setHostKeyVerification(new ConsoleKnownHostsKeyVerification("C:\\cygwin\\home\\wmlam\\.ssh\\known_hosts"));
    Ssh2Context ssh2Context = (Ssh2Context)con.getContext(SshConnector.SSH2);
    //ssh2Context.setPreferredPublicKey(Ssh2Context.PUBLIC_KEY_SSHDSS);
    ssh2Context.setPreferredPublicKey(Ssh2Context.PUBLIC_KEY_SSHRSA);
    * Connect to the host
    int port = Integer.parseInt(ftpPortNo);
    SocketTransport t = new SocketTransport(strftpIP, port);
    t.setTcpNoDelay(true);
    PublicKeyAuthentication pk = new PublicKeyAuthentication();
    SshPrivateKeyFile pkfile = SshPrivateKeyFileFactory.parse(new FileInputStream("C:\\cygwin\\home\\wmlam\\.ssh\\id_rsa"));
    SshKeyPair pair;
    if(pkfile.isPassphraseProtected()) {
    pair = pkfile.toKeyPair(Ssh2Context.PUBLIC_KEY_SSHRSA);
    } else
    pair = pkfile.toKeyPair(null);
    pk.setPrivateKey(pair.getPrivateKey());
    pk.setPublicKey(pair.getPublicKey());
    SshClient ssh = con.connect(t, strftpUserID);
    * Determine the version
    if(ssh instanceof Ssh1Client) {
    System.out.println(strftpIP + " is an SSH1 server!! SFTP is not supported");
    ssh.disconnect();
    System.exit(0);
    else
    System.out.println(strftpIP + " is an SSH2 server");
    Ssh2Client ssh2 = (Ssh2Client)ssh;
    * Authenticate the user using password authentication
    com.maverick.ssh.PasswordAuthentication pwd = new com.maverick.ssh.PasswordAuthentication();
    do {
    pwd.setPassword(strftpPwd);
    while(ssh2.authenticate(pwd)!=SshAuthentication.COMPLETE
    && ssh.isConnected());
    * Start a session and do basic IO
    if(ssh.isAuthenticated()) {
    SftpClient sftp = new SftpClient(ssh2);
    // Tell the client which EOL the remote client is using - note
    // that this will be ignored with version 4 of the protocol
    sftp.setRemoteEOL(SftpClient.EOL_LF);
    // Now put the file, the remote file should end up with all \r\n changed to \n
    //sftp.put(textFile.getAbsolutePath());
    sftp.put(fileFullPath+remoteFileName);
    * Now perform some binary operations
    sftp.setTransferMode(SftpClient.MODE_BINARY);
    * List the contents of the directory
    SftpFile[] ls = sftp.ls();
    for(int i=0;i<ls.length;i++) {
    ls.getParent();
    System.out.println(SftpClient.formatLongname(ls[i]));
    ftpMailMsg.append("<TABLE border=1 width=100% cellspacing=1 cellpadding=1>");
    ftpMailMsg.append("<TR>");
    ftpMailMsg.append("<TD width=60%> <b>CSMS</b></TD>");
    ftpMailMsg.append("<TD width=40%> <b>FTP</b></TD>");
    ftpMailMsg.append("</TR>");
    ftpMailMsg.append("<TR>");
    ftpMailMsg.append("<TD>"+fileFullPath+"</TD>");
    ftpMailMsg.append("<TD>"+remoteFileName+"</TD>");
    ftpMailMsg.append("</TR>");
    if(attachList!=null && !attachList.isEmpty()){
    Iterator iter = attachList.iterator();
    String [] strAtth;
    String strAtthPathAndName = "";
    String strAtthFTPServerFileName = "";
    for(int i=0; i<attachList.size();i++){
    strAtth = (String [])attachList.get(i);
    strAtthPathAndName = qrMisc.trim(strAtth[1]);
    strAtthFTPServerFileName = qrMisc.trim(strAtth[2]);
    sftp.setTransferMode(SftpClient.MODE_BINARY);
    sftp.put(strAtthPathAndName,strAtthFTPServerFileName);
    ftpMailMsg.append("<TR>");
    ftpMailMsg.append("<TD>"+strAtthPathAndName+"</TD>");
    ftpMailMsg.append("<TD>"+strAtthFTPServerFileName+"</TD>");
    ftpMailMsg.append("</TR>");
    ftpMailMsg.append("</TABLE>");
    if(ftpMailMessage!=null){
    String tmpFtpMailMsg = qrMisc.trim(ftpMailMsg.toString());
    ftpMailMessage.setFTPMessage(tmpFtpMailMsg);
    System.out.println("Test complete");
    ssh.disconnect();
    catch(FileNotFoundException exp){
    exp.printStackTrace();
         listener.logCommand("[FileNotFoundException]Error occur while transfering file :"+exp);
    writeToLog(listener.getLog());
    throw new FTPFileException("[FileNotFoundException] Error occur while transfering file :"+exp.toString());
    }catch(IOException exp){
    exp.printStackTrace();
         listener.logCommand("[IOException]Error occur while transfering file :"+exp);
    writeToLog(listener.getLog());
    throw new FTPFileException("[IOException] Error occur while transfering file :"+exp.toString());
    } catch (Exception exp) {
    exp.printStackTrace();
    listener.logCommand("[Exception]Error occur while transfering file :"+exp);
    writeToLog(listener.getLog());
    throw new FTPFileException("[Exception] Error occur while transfering file :"+exp.toString());
    the program stopped at this line, while trying to connect to ssh :
    SshClient ssh = con.connect(t, strftpUserID);
    Can i use ftp together with sftp? how can i solve this ?
    Edited by: gloria_lai on Dec 13, 2007 9:54 AM

    Hi,
    The issue which you are facing can be the result of security or authentication problems (such as attempting to manage a remote server in an untrusted domain, for example; or attempting to manage a server by using credentials that are not recognized as those
    of an administrator on the remote server), or configuration problems (missing Windows PowerShell, remote management not enabled on the target server, etc.). For more information you can refer below article.
    Windows Server 2012 - Server Manager
    Troubleshooting Guide, Part II: Troubleshoot Manageability Status Errors in Server Manager
    In addition if you want to enable Remote Management you can try to enable using command line or Windows Power Shell. Go through
    this article for additional details.
    To Enable through Command line & Windows Power-Shell (Run as Administrator):
    Configure-SMRemoting.exe –enable
    Hope it helps!
    Thanks.
     

  • Aperture 2.1 not recognizing my Sigma 120-300 F2.8 APO EX IF HSM DG

    It gives me this as my lens used: Sigma 17-35mm f2.8-4 EX Aspherical HSM which of course is not even close.
    Can an admin let the people know about this one. It would really help to get this corrected.
    Thanks

    Use Aperture's "submit feedback" option to report this. There is no admin here reporting bugs to the Aperture team.

  • Every 120 sec. my MacBook is creating a strange unknown sound

    Hi everyone out there,
    sorry for reaching out to you, but tonight s.th. strange happened. From one moment to the next my MacBook decided to create a strange system-like sound every 120 sec. I have recorded it, so if this helps, let me know.
    I did not install any new SW or change any of the system settings - really strange!
    Cheers,
    Hartmut

    HI,
    Open System Preferences/Sound and select the Sound Effects tab. If you have all three boxes checked for user sound effects that could be the culprit. Open Mac Mail/Preferences and select the General tab.
    Where you see: New messages sound, click the pop up menu. If you hve the; Play sounds for other mail actions... that could be it too.
    Since the sound is occuring on a timely basic, might be a fan.
    Try Resetting the PRAM
    Carolyn
    Message was edited by: Carolyn Samit

  • Ere are the specs on the Mac I need more power on.  Mac Tower Processor  2 x 2.26 GHz Quad-Core Intel Xeon Memory  6 GB 1066 MHz DDR3 ECC Graphics  NVIDIA GeForce GT 120 512 MB Serial Number  H00354XF20G Software  OS X 10.8.5 (12F45)  Harddive 640 GB SATA

    ere are the specs on the Mac I need more power on.
    Mac Tower
    Processor  2 x 2.26 GHz Quad-Core Intel Xeon
    Memory  6 GB 1066 MHz DDR3 ECC
    Graphics  NVIDIA GeForce GT 120 512 MB
    Serial Number  H00354XF20G
    Software  OS X 10.8.5 (12F45)
    Harddive 640 GB
    SATA Disk
    (2) Harddrives 1 TB
    SATA Disk
    RAM 6 slots total  -- 6 are filled with 1GB
    (3) UAD Quad cards installed
    I use this computer stictly for audio recording. 
    Pro Tools 10.3.7
    Interface Apollo 16
    Pro Tools is curretnly not compatible with Maverick.   Also, I believe that Pro Tools 10 only allows 4GB ram to be utilized (not sure ) 
    I know Pro Tools 11 allows more, but not sure how much more.  Also not sure if the upgrade to Pro Tools 11 I will have to purchase all new plug ins or if my existing ones will continue to work in it.
    The platform changes from 32 bit to 64 with the upgrade to 11
    If it is as simple as adding more ram, what mode-part #l would you recomeend.  Can the processor be upgraded also ?
    The new tube like Macs are non compatible with UAD Cards.  Those cards a must my sessions

    You can use Activity Monitor to check if apps run as 32 or 64 bit - simply look at the "Kind" column (you may need to select it under View -> Columns) and see if the app in question is listed as "Intel" i.e. 32 bit or as "Intel (64 bit)".
    While in Activity Monitor you can also check if Pro Tools is close to the 3-4 GB limit of a 32 bit app - if you aren't you will probably not benefit from more RAM.
    Your MacPro (it appears to be a Early 2009 model) should have come with a small booklet showing how to install RAM and what kind of RAM that you need. Any RAM that fulfills the requirements should work but your safest choice is probably to buy from a retailer/online store that supports Macs as they will usually know what kind of RAM you need for your mac model.
    Upgrading the CPUs should be possible, but I haven't seen Apple document how to do this, so you will probably have to google around a bit to find instructions and CPU part numbers.
    Your choice of CPUs will also be limited by the motherboard and CPU socket so you may be limited to faster version of your current CPU chip and some slightly newer versions.
    Going from your current CPU to the fastest version included in the 2009 MacPros would be going from 2.26 GHz to 2.93 GHz. This would only give a modest 30% speed boost. Using newer and highly clocked CPUs might boost this somewhat more maybe to 50% ?

  • Capturing Video 8 via Canopus SDVC-300

    I am trying to capture some old Video 8 material. I'm using a Canopus ADVC-300 video converter to convert the analog video to DV. The have the Firewire output of the ADVC-300 connected to the Firewire input on my Mac. I have FCP set to: NTSC/DV 48 kHZ and Non-Controllable Device.
    When I attempt to Capture Now, FCP says that there is no video.
    I tested the output of the ADVC-300 by connecting it to a camcorder and there appears to be both video and audio.
    The ADVC-300 was initially set to Unit. I set it to PC but then I believe I have to change device control to Firewire. I was able to begin capturing, again using Capture Now. But at one point FCP lost the time code and stopped capturing. I know the analog has no time code, but I'm not sure if the ADVC-300 is supplying time code?
    If there is anyone who has used one of these successfully, please let me know what I'm doing wrong in my setup.

    10,415 posts. Obviously not all bad.
    Thanks, it worked.
    I'm not sure what the SW did, as I didn't change anything, simply installed it, ran it and quit. But it must have done something because it is working flawlessly now. (even handling the drop outs with no errors)
    I didn't think there was timecode. But when I tried to capture the Firewire output of the analog source via the Sony GV-D200 not using non-controllable device, Capture Now would not capture anything, since it never saw any timecode.
    With the ADVC-300 in place (and not their SW), it would not capture with non-controllable device with the unit's operation mode set to Unit. If I set it to PC, FCP Capture Now would work, but with a standard Firewire device setting. The source has some drop out, so it would stop capturing waiting on timecode. Which I thought was odd, since (as you stated) I didn't think there was any timecode. Unless the Canopus unit is attempting to create timecode? I wouldn't think so.
    Anyway, many thanks.

  • SATA 300 disk on SATA 150 controller

    Greetings:
    A friend of mine has a MacBook Pro with these specs:
      Model :          MacBook Pro
      Model ID:          MacBookPro1,1
      CPU :          Intel Core Duo
      CPU Speed :          2 GHz
      Number of CPUs :          1
      Number of cores :          2
      Level 2  cache:          2 Mo
      Memory :          2 Go
      Bus speed:          667 MHz
      ROM:          MBP11.0055.B08
      SMC:          1.2f10
      Serial number :          3M6371LAVWW
      UUID :          00000000-0000-1000-8000-0016CB9F513F
    Now the question for you: he wants to change his hard drive, we found SATA 300 at 7200 rpm but I am not sure if this will be compatible as this MacBook Pro (it is the previous version than unibody models) has a disk with SATA 150 at 5400 rpm.
    Do you think I can install a SATA 300 at 7200 rpm on this machine?
    Thanks a lot
    Claudio

    Hi there..
    Yes the drive will work fine, but will step back to the slower speed on the SATA of 150. The spindle speed should still spin up at 7,200 but the data transfer rate will be at the reduced speed.

  • Sigma DP1 & LR

    I am running LR 1.4.1 with Camera Raw 4.4.1 on my Mac with Leopard. Would like to purchase a Sigma DP1 to shoot RAW. Is it compatible? Any other Thoughts?

    The Sigma DP-1 is still not supported (nearly six months after release). Is this model ever going to be supported?

  • HF-300 & answer/end-call key

    Argh! I can't get the answer/end call key to answer or end my calls on my HF-300. I'm using a 3110 classic which is listed as a compatible phone on the front of the box.
    I have tried it out with a 6300 also and I have the same problem (6300 is ALSO listed on the front of the box).
    The only one I can get to work is my N95. I presure that symbian has something to do with it?
    I have read that older batches of the HF-300 have had problems maintaining calls for longer than 5 minutes but no one has listed my problem.
    I cannot find any specific information that states that the 3110 classic is NOT fully compatible with the functions of the HF-300.
    Oh and I have already tried 4 different HF-300's to see if the first one had a fault.

    I think you've pointed out the issue, the 3110 and 6300 use the S40 interface, whereas the N95 (and my 6110 Navigator) use the S60 3rd Edition interface, both of which have no problems with the HF-300. You might try and download any updates, if available, to sort out your problem.

  • Crash Illustrator

    Bonjour,
    nous avons des plantages à répétition sur les produits de la suite Adobe CS6.
    Les postes sont en windows 7 x64, 8 Go Ram, Carte graphique Nvidia Quadro FX1800 (2Go).
    Les drivers GPU sont à jour et les versions aussi (via menu aide, MAJ) .
    Le profil est utilisateur de sa machine (pas admin), il y a peut être des dossiers sur lesquels il faut mettre tous les droits.
    exemple d'un crash obtenu ce matin : (si quelqu'un a une piste)
    Merci.
    Version=1
    EventType=APPCRASH
    EventTime=130416824041630689
    ReportType=2
    Consent=1
    UploadTime=130416824043110689
    ReportIdentifier=53310672-c15c-11e3-98ff-fc4dd43d9b17
    IntegratorReportIdentifier=53310671-c15c-11e3-98ff-fc4dd43d9b17
    Response.BucketId=86833058
    Response.BucketTable=4
    Response.type=4
    Sig[0].Name=Nom de l’application
    Sig[0].Value=Illustrator.exe
    Sig[1].Name=Version de l’application
    Sig[1].Value=16.0.3.691
    Sig[2].Name=Horodatage de l’application
    Sig[2].Value=50bb31df
    Sig[3].Name=Nom du module par défaut
    Sig[3].Value=Illustrator.exe
    Sig[4].Name=Version du module par défaut
    Sig[4].Value=16.0.3.691
    Sig[5].Name=Horodateur du module par défaut
    Sig[5].Value=50bb31df
    Sig[6].Name=Code de l’exception
    Sig[6].Value=c0000005
    Sig[7].Name=Décalage de l’exception
    Sig[7].Value=0000000000935518
    DynamicSig[1].Name=Version du système
    DynamicSig[1].Value=6.1.7601.2.1.0.256.48
    DynamicSig[2].Name=Identificateur de paramètres régionaux
    DynamicSig[2].Value=1036
    DynamicSig[22].Name=Information supplémentaire n° 1
    DynamicSig[22].Value=2eac
    DynamicSig[23].Name=Information supplémentaire n° 2
    DynamicSig[23].Value=2eac4b2016816ef665cb6cbe2700f165
    DynamicSig[24].Name=Information supplémentaire n° 3
    DynamicSig[24].Value=7a39
    DynamicSig[25].Name=Information supplémentaire n° 4
    DynamicSig[25].Value=7a3952edcc5ab3a10c4d655dba8a757e
    UI[2]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe
    UI[3]=Adobe Illustrator CS6 a cessé de fonctionner
    UI[4]=Windows peut rechercher une solution au problème en ligne.
    UI[5]=Rechercher une solution en ligne et fermer le programme
    UI[6]=Rechercher ultérieurement une solution en ligne et fermer le programme
    UI[7]=Fermer le programme
    LoadedModule[0]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\system32\kernel32.dll
    LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.760 1.17825_none_2b253c8271ec7765\gdiplus.dll
    LoadedModule[5]=C:\Windows\system32\msvcrt.dll
    LoadedModule[6]=C:\Windows\system32\USER32.dll
    LoadedModule[7]=C:\Windows\system32\GDI32.dll
    LoadedModule[8]=C:\Windows\system32\LPK.dll
    LoadedModule[9]=C:\Windows\system32\USP10.dll
    LoadedModule[10]=C:\Windows\system32\ole32.dll
    LoadedModule[11]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[12]=C:\Windows\system32\IMM32.dll
    LoadedModule[13]=C:\Windows\system32\MSCTF.dll
    LoadedModule[14]=C:\Windows\system32\VERSION.dll
    LoadedModule[15]=C:\Windows\system32\Secur32.dll
    LoadedModule[16]=C:\Windows\system32\SSPICLI.DLL
    LoadedModule[17]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[18]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\LogSession.dll
    LoadedModule[19]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[20]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[21]=C:\Windows\system32\SHELL32.dll
    LoadedModule[22]=C:\Windows\system32\MSVCP100.dll
    LoadedModule[23]=C:\Windows\system32\MSVCR100.dll
    LoadedModule[24]=C:\Windows\system32\SETUPAPI.dll
    LoadedModule[25]=C:\Windows\system32\CFGMGR32.dll
    LoadedModule[26]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[27]=C:\Windows\system32\DEVOBJ.dll
    LoadedModule[28]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\BIB.dll
    LoadedModule[29]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\BIBUtils.dll
    LoadedModule[30]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AGM.dll
    LoadedModule[31]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\CoolType.dll
    LoadedModule[32]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\MPS.dll
    LoadedModule[33]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\ACE.dll
    LoadedModule[34]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AdobeXMP.dll
    LoadedModule[35]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AdobeXMPFiles.dll
    LoadedModule[36]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AXEDOMCore.dll
    LoadedModule[37]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\SPBasic.dll
    LoadedModule[38]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\ARE.dll
    LoadedModule[39]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\WRServices.dll
    LoadedModule[40]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AdobeLinguistic.dll
    LoadedModule[41]=C:\Windows\system32\PSAPI.DLL
    LoadedModule[42]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\icuin40.dll
    LoadedModule[43]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\icuuc40.dll
    LoadedModule[44]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\icudt40.dll
    LoadedModule[45]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\dvacore.dll
    LoadedModule[46]=C:\Windows\system32\dbghelp.dll
    LoadedModule[47]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\boost_date_time.dll
    LoadedModule[48]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\boost_threads.dll
    LoadedModule[49]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\dvaui.dll
    LoadedModule[50]=C:\Windows\system32\OPENGL32.dll
    LoadedModule[51]=C:\Windows\system32\GLU32.dll
    LoadedModule[52]=C:\Windows\system32\DDRAW.dll
    LoadedModule[53]=C:\Windows\system32\DCIMAN32.dll
    LoadedModule[54]=C:\Windows\system32\dwmapi.dll
    LoadedModule[55]=C:\Windows\system32\COMDLG32.dll
    LoadedModule[56]=C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1d f_6.0.7601.17514_none_fa396087175ac9ac\COMCTL32.dll
    LoadedModule[57]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\dvaai.dll
    LoadedModule[58]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\boost_signals.dll
    LoadedModule[59]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\boost_system.dll
    LoadedModule[60]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\dvaadameve.dll
    LoadedModule[61]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\boost_filesystem.dll
    LoadedModule[62]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\boost_regex.dll
    LoadedModule[63]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\dvaworkspace.dll
    LoadedModule[64]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\exo.dll
    LoadedModule[65]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AdobeOwl.dll
    LoadedModule[66]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AXE8SharedExpat.dll
    LoadedModule[67]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AdobeSplashKit.dll
    LoadedModule[68]=C:\Windows\system32\MSIMG32.dll
    LoadedModule[69]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\amtlib.dll
    LoadedModule[70]=C:\Windows\system32\WINHTTP.dll
    LoadedModule[71]=C:\Windows\system32\webio.dll
    LoadedModule[72]=C:\Windows\system32\IPHLPAPI.DLL
    LoadedModule[73]=C:\Windows\system32\NSI.dll
    LoadedModule[74]=C:\Windows\system32\WINNSI.DLL
    LoadedModule[75]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\ahclient.dll
    LoadedModule[76]=C:\Windows\system32\WININET.dll
    LoadedModule[77]=C:\Windows\system32\api-ms-win-downlevel-user32-l1-1-0.dll
    LoadedModule[78]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll
    LoadedModule[79]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll
    LoadedModule[80]=C:\Windows\system32\api-ms-win-downlevel-version-l1-1-0.dll
    LoadedModule[81]=C:\Windows\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll
    LoadedModule[82]=C:\Windows\system32\normaliz.DLL
    LoadedModule[83]=C:\Windows\system32\iertutil.dll
    LoadedModule[84]=C:\Windows\system32\WS2_32.dll
    LoadedModule[85]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Alcid.dll
    LoadedModule[86]=C:\Windows\system32\MPR.dll
    LoadedModule[87]=C:\PROGRA~2\Sophos\SOPHOS~1\SOPHOS~2.DLL
    LoadedModule[88]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\System\AIRes.dll
    LoadedModule[89]=C:\Windows\system32\profapi.dll
    LoadedModule[90]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[91]=C:\Windows\system32\uxtheme.dll
    LoadedModule[92]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[93]=C:\Windows\system32\rsaenh.dll
    LoadedModule[94]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[95]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[96]=C:\Windows\system32\WindowsCodecs.dll
    LoadedModule[97]=C:\Windows\system32\apphelp.dll
    LoadedModule[98]=C:\Windows\system32\EhStorShell.dll
    LoadedModule[99]=C:\Windows\system32\PROPSYS.dll
    LoadedModule[100]=C:\PROGRA~1\MICROS~1\Office14\GROOVEEX.DLL
    LoadedModule[101]=C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.49 40_none_08e4299fa83d7e3c\MSVCR90.dll
    LoadedModule[102]=C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.49 40_none_08e4299fa83d7e3c\MSVCP90.dll
    LoadedModule[103]=C:\Windows\WinSxS\amd64_microsoft.vc90.atl_1fc8b3b9a1e18e3b_9.0.30729.41 48_none_0a1d2fcba76b3f00\ATL90.DLL
    LoadedModule[104]=C:\PROGRA~1\COMMON~1\MICROS~1\OFFICE14\Cultures\office.odf
    LoadedModule[105]=C:\PROGRA~1\MICROS~1\Office14\1036\GrooveIntlResource.dll
    LoadedModule[106]=C:\Windows\System32\cscui.dll
    LoadedModule[107]=C:\Windows\System32\CSCDLL.dll
    LoadedModule[108]=C:\Windows\system32\CSCAPI.dll
    LoadedModule[109]=C:\Windows\system32\ntshrui.dll
    LoadedModule[110]=C:\Windows\system32\srvcli.dll
    LoadedModule[111]=C:\Windows\system32\slc.dll
    LoadedModule[112]=C:\Windows\system32\WTSAPI32.dll
    LoadedModule[113]=C:\Windows\system32\WINSTA.dll
    LoadedModule[114]=C:\Windows\System32\msxml6.dll
    LoadedModule[115]=C:\Windows\system32\ntmarta.dll
    LoadedModule[116]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[117]=C:\Program Files\Common Files\Adobe\Linguistics\6.0\Providers\Plugins2\AdobeHunspellPlugin\AdobeHunspellPlugin.dl l
    LoadedModule[118]=C:\Program Files\Common Files\Adobe\Linguistics\6.0\Providers\Plugins2\WRLiloPlugin1.3\WRLiloPlugin.dll
    LoadedModule[119]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Photoshop Filters\Photoshop Adapter.aip
    LoadedModule[120]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Action.aip
    LoadedModule[121]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Resources\fr_FR\PlugInRes.aip
    LoadedModule[122]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\UserInterface.aip
    LoadedModule[123]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\FWServer.aip
    LoadedModule[124]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\Flatten Transparency.aip
    LoadedModule[125]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\FOConversionSuite.aip
    LoadedModule[126]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AIPort.dll
    LoadedModule[127]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\PathFinder Suite.aip
    LoadedModule[128]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\Rasterize.aip
    LoadedModule[129]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\Slicing.aip
    LoadedModule[130]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Action Panel.aip
    LoadedModule[131]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\BrushManager.aip
    LoadedModule[132]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\ColorHarmony.aip
    LoadedModule[133]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\ControlPanel.aip
    LoadedModule[134]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Layers Panel.aip
    LoadedModule[135]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Paint Style Panel.aip
    LoadedModule[136]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Path Construction Suite.aip
    LoadedModule[137]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Swatch Libraries.aip
    LoadedModule[138]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Tool Selector.aip
    LoadedModule[139]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Variables Panel.aip
    LoadedModule[140]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Formats\SVG File Format.aip
    LoadedModule[141]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\svgexport.dll
    LoadedModule[142]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\SVGRE.dll
    LoadedModule[143]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Snap.aip
    LoadedModule[144]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\Shape Construction Suite.aip
    LoadedModule[145]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\Expand Suite.aip
    LoadedModule[146]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\Symbolism.aip
    LoadedModule[147]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\Magic Wand.aip
    LoadedModule[148]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\dBrushTool.aip
    LoadedModule[149]=C:\Windows\system32\WINMM.dll
    LoadedModule[150]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\boost_serialization.dll
    LoadedModule[151]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\Crop Area Tool.aip
    LoadedModule[152]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\BoundingBox.aip
    LoadedModule[153]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\VectorizeUI.aip
    LoadedModule[154]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\VariablesPaletteUI.aip
    LoadedModule[155]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\svgFileFormatUI.aip
    LoadedModule[156]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\PathfinderUI.aip
    LoadedModule[157]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\IllustratorUI.aip
    LoadedModule[158]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\BrushManagerUI.aip
    LoadedModule[159]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\AIToolBoxUI.aip
    LoadedModule[160]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Formats\MPSCommon.aip
    LoadedModule[161]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Formats\IdeaFileFormat.aip
    LoadedModule[162]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Filters\Pathfinder.aip
    LoadedModule[163]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Workspaces.aip
    LoadedModule[164]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Transparency Panel.aip
    LoadedModule[165]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Transform Panel.aip
    LoadedModule[166]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Symbol Panel.aip
    LoadedModule[167]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Services.aip
    LoadedModule[168]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\dvaflashview.dll
    LoadedModule[169]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\adbeape.dll
    LoadedModule[170]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\PlugPlug.dll
    LoadedModule[171]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\SeparationPreview.aip
    LoadedModule[172]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\ScriptingSupport.aip
    LoadedModule[173]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\ScCore.dll
    LoadedModule[174]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\ExtendScript.dll
    LoadedModule[175]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\ScriptUIFlex.dll
    LoadedModule[176]=C:\Windows\system32\SXS.DLL
    LoadedModule[177]=C:\Program Files\Common Files\Adobe\APE\3.3\adbeapecore.dll
    LoadedModule[178]=C:\Program Files\Common Files\Adobe\APE\3.3\adbeapeengine.dll
    LoadedModule[179]=C:\Windows\system32\OLEACC.dll
    LoadedModule[180]=C:\Windows\system32\CRYPT32.dll
    LoadedModule[181]=C:\Windows\system32\MSASN1.dll
    LoadedModule[182]=C:\Windows\system32\msi.dll
    LoadedModule[183]=C:\Windows\system32\urlmon.dll
    LoadedModule[184]=C:\Windows\system32\api-ms-win-downlevel-ole32-l1-1-0.dll
    LoadedModule[185]=C:\Windows\system32\mscms.dll
    LoadedModule[186]=C:\Windows\system32\USERENV.dll
    LoadedModule[187]=C:\Windows\system32\DSOUND.dll
    LoadedModule[188]=C:\Windows\system32\POWRPROF.dll
    LoadedModule[189]=C:\Windows\system32\DNSAPI.dll
    LoadedModule[190]=C:\Windows\system32\WINSPOOL.DRV
    LoadedModule[191]=C:\Windows\system32\mlang.dll
    LoadedModule[192]=C:\Windows\system32\credssp.dll
    LoadedModule[193]=C:\Windows\system32\schannel.DLL
    LoadedModule[194]=C:\Windows\system32\icm32.dll
    LoadedModule[195]=C:\Windows\system32\MMDevAPI.DLL
    LoadedModule[196]=C:\Windows\system32\wdmaud.drv
    LoadedModule[197]=C:\Windows\system32\ksuser.dll
    LoadedModule[198]=C:\Windows\system32\AVRT.dll
    LoadedModule[199]=C:\Windows\system32\AUDIOSES.DLL
    LoadedModule[200]=C:\Windows\system32\msacm32.drv
    LoadedModule[201]=C:\Windows\system32\MSACM32.dll
    LoadedModule[202]=C:\Windows\system32\midimap.dll
    LoadedModule[203]=C:\ProgramData\Sophos\Web Intelligence\swi_ifslsp_64.dll
    LoadedModule[204]=C:\Windows\system32\mswsock.dll
    LoadedModule[205]=C:\Windows\System32\wshtcpip.dll
    LoadedModule[206]=C:\Windows\System32\wship6.dll
    LoadedModule[207]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Navigator.aip
    LoadedModule[208]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Live Blends.aip
    LoadedModule[209]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Links Panel.aip
    LoadedModule[210]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Flattening Preview.aip
    LoadedModule[211]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Document Info.aip
    LoadedModule[212]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\ArtboardPanel.aip
    LoadedModule[213]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Art Style.aip
    LoadedModule[214]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\AppBarControls.aip
    LoadedModule[215]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Alternate Glyphs.aip
    LoadedModule[216]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Align.aip
    LoadedModule[217]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\PDFFormat.aip
    LoadedModule[218]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\FilterPort.dll
    LoadedModule[219]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AdobePDFL.dll
    LoadedModule[220]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\JP2KLib.dll
    LoadedModule[221]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\pdfsettings.dll
    LoadedModule[222]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Text Filters\Change Case.aip
    LoadedModule[223]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Formats\MPSExport.aip
    LoadedModule[224]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Filters\TextWrapDlg.aip
    LoadedModule[225]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\CharParaStyles.aip
    LoadedModule[226]=C:\Windows\System32\msxml3.dll
    LoadedModule[227]=C:\Windows\system32\api-ms-win-downlevel-shlwapi-l2-1-0.dll
    LoadedModule[228]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Perspective.aip
    LoadedModule[229]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\adobe_caps.dll
    LoadedModule[230]=C:\Program Files (x86)\Common Files\Adobe\CS6ServiceManager\lib\ServiceManager-Launcher_x64.dll
    LoadedModule[231]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AdobePIP.dll
    LoadedModule[232]=C:\Windows\system32\wbem\wbemprox.dll
    LoadedModule[233]=C:\Windows\system32\wbemcomn.dll
    LoadedModule[234]=C:\Windows\system32\wbem\wbemsvc.dll
    LoadedModule[235]=C:\Windows\system32\wbem\fastprox.dll
    LoadedModule[236]=C:\Windows\system32\NTDSAPI.dll
    LoadedModule[237]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\updaternotifications.dll
    LoadedModule[238]=C:\Windows\system32\NETAPI32.dll
    LoadedModule[239]=C:\Windows\system32\netutils.dll
    LoadedModule[240]=C:\Windows\system32\wkscli.dll
    LoadedModule[241]=C:\Windows\system32\taskschd.dll
    LoadedModule[242]=C:\Windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll
    LoadedModule[243]=C:\Windows\system32\dhcpcsvc6.DLL
    LoadedModule[244]=C:\Windows\System32\netprofm.dll
    LoadedModule[245]=C:\Windows\System32\nlaapi.dll
    LoadedModule[246]=C:\Windows\system32\dhcpcsvc.DLL
    LoadedModule[247]=C:\Windows\system32\rasadhlp.dll
    LoadedModule[248]=C:\Windows\System32\npmproxy.dll
    LoadedModule[249]=C:\Windows\System32\fwpuclnt.dll
    LoadedModule[250]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Asset Mgmt.aip
    LoadedModule[251]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\FileInfo.dll
    LoadedModule[252]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\PDFSuite.aip
    LoadedModule[253]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\PDFPort.dll
    LoadedModule[254]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Photoshop Formats\PhotoshopImport.aip
    LoadedModule[255]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\AdobePSL.dll
    LoadedModule[256]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\tbb.dll
    LoadedModule[257]=C:\Windows\system32\NetworkExplorer.dll
    LoadedModule[258]=C:\Windows\System32\drprov.dll
    LoadedModule[259]=C:\Windows\System32\ntlanman.dll
    LoadedModule[260]=C:\Windows\System32\davclnt.dll
    LoadedModule[261]=C:\Windows\System32\DAVHLPR.dll
    LoadedModule[262]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Envelope and Warp.aip
    LoadedModule[263]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\Pencil Tool.aip
    LoadedModule[264]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\BeautifulStrokes.aip
    LoadedModule[265]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Required\Plug-ins\ArtConverters.aip
    LoadedModule[266]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\flare.aip
    LoadedModule[267]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\SVG Filter Effect.aip
    LoadedModule[268]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\PerspectiveUI.aip
    LoadedModule[269]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\FindReplaceUI.aip
    LoadedModule[270]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\DeformUI.aip
    LoadedModule[271]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Live Paint.aip
    LoadedModule[272]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\PlanetXUI.aip
    LoadedModule[273]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Filters\Find.aip
    LoadedModule[274]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Transform Each.aip
    LoadedModule[275]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Geometry.aip
    LoadedModule[276]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Vectorize.aip
    LoadedModule[277]=C:\Windows\system32\spool\DRIVERS\x64\3\CNLB0M_D1C8E.DLL
    LoadedModule[278]=C:\Windows\system32\SAMCLI.DLL
    LoadedModule[279]=C:\Windows\system32\spool\DRIVERS\x64\3\CNLB0MUI_D1C8E.DLL
    LoadedModule[280]=C:\Windows\system32\SAMLIB.dll
    LoadedModule[281]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\Advanced Select.aip
    LoadedModule[282]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\Calligraphic Brush Tool.aip
    LoadedModule[283]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\ArtOnPath.aip
    LoadedModule[284]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Filters\FuzzyEffect.aip
    LoadedModule[285]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Filters\DiffusionRaster.aip
    LoadedModule[286]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\BNPlugin.aip
    LoadedModule[287]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\KinsokuDlg.aip
    LoadedModule[288]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Formats\Mojikumi.aip
    LoadedModule[289]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\Liquify.aip
    LoadedModule[290]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Formats\JPEGFormat.aip
    LoadedModule[291]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\Shape Tools.aip
    LoadedModule[292]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\Nudge.aip
    LoadedModule[293]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Filters\Drop Shadow.aip
    LoadedModule[294]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\DropShadowUI.aip
    LoadedModule[295]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Photoshop Filters\PSLFilterAdapter.aip
    LoadedModule[296]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\SpellChckUI.aip
    LoadedModule[297]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator Filters\CropMarks.aip
    LoadedModule[298]=C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll
    LoadedModule[299]=C:\Windows\System32\cscobj.dll
    LoadedModule[300]=C:\Windows\System32\StructuredQuery.dll
    LoadedModule[301]=C:\Windows\system32\actxprxy.dll
    LoadedModule[302]=C:\Program Files\Internet Explorer\ieproxy.dll
    LoadedModule[303]=C:\Windows\system32\thumbcache.dll
    LoadedModule[304]=C:\Windows\system32\SearchFolder.dll
    LoadedModule[305]=C:\Windows\system32\SHDOCVW.dll
    LoadedModule[306]=C:\Windows\system32\ieframe.DLL
    LoadedModule[307]=C:\Windows\system32\api-ms-win-downlevel-shell32-l1-1-0.dll
    LoadedModule[308]=C:\Windows\system32\PortableDeviceApi.dll
    LoadedModule[309]=C:\Windows\system32\WINTRUST.dll
    LoadedModule[310]=C:\Windows\system32\EhStorAPI.dll
    LoadedModule[311]=C:\Windows\system32\IconCodecService.dll
    LoadedModule[312]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Extensions\ScriptsMenu.aip
    LoadedModule[313]=C:\Program Files\Common Files\Adobe\Shell\CS6\idicon.dll
    LoadedModule[314]=C:\Windows\system32\PhotoMetadataHandler.dll
    LoadedModule[315]=C:\Windows\system32\windowscodecsext.dll
    LoadedModule[316]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Illustrator UI\PSImportUI.aip
    LoadedModule[317]=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Plug-ins\Tools\Eye Bucket Tool.aip
    LoadedModule[318]=C:\Windows\system32\wpdshext.dll
    State[0].Key=Transport.DoneStage1
    State[0].Value=1
    FriendlyEventName=Fonctionnement arrêté
    ConsentKey=APPCRASH
    AppName=Adobe Illustrator CS6
    AppPath=C:\Program Files\Adobe\Adobe Illustrator CS6 (64 Bit)\Support Files\Contents\Windows\Illustrator.exe

    Bonjour Stokomani,
    Il faut savoir que la plupart du temps, lorsqu'un produit Adobe plante, cela peut venir soit du fichier en cours d'utilisation, soit des préférences du produit Adobe en cours d'utilisation, soit des préférences du compte Mac Utilisateur ou encore, cela peut également provenir d'un programme externe d'Adobe.
    Si le problème est toujours identique, je vous recommanderais dans l'ordre d'essayer l'une des solutions suivante si en utilisant un autre fichier ou projet dans Illustrator CS6 le probleme se présente :
    1) Supprimer le fichier des préférences :
    Ouvrez le Finder
    Ouvrez le dossier Adobe Illustrator CS6 Settings
    Users/[Nom d’utilisateur]/Library/Preferences/Adobe Illustrator CS6 Settings
    Supprimez le fichier Adobe Illustrator CS6 Prefs.psp
    Si vous ne trouvez pas le dossier en question, il faut savoir que la Bibliothèque de l'utilisateur a été cachée par Apple, si vous ne pouvez la trouver via le chemin ci-dessus, il faudra alors passer par " Allez " ensuite maintenir la touche ALT/OPTION pour faire apparaitre la Bibliothèque de l'utilisateur.
    2) Veuillez répéter la ou les manipulations sous Illustrator dans un autre compte Administrateur Mac en créant un nouveau compte Mac :
    http://support.apple.com/kb/PH14411?viewlocale=fr_FR
    J'insiste sur le type de compte en précisant qu'il est important de sélectionner le type " Administrateur " pour avoir un accès complet.
    3) Veuillez répéter la ou les manipulations sous Illustrator en effectuant un Safe Boot Mac :
    http://support.apple.com/kb/HT1564?viewlocale=fr_FR
    Surtout, n'hésitez pas a posez vos questions si nécessaires.
    Merci.
    Arnaud.

  • Nutzt Lightroom die Korrekturdaten für Vignettierung und Aberration der Canon EOS 5D Mark III?

    Hallo,
    in der Canon EOS 5D Mark III, und auch weiteren Kameras, kann man ja direkt die Objektivkorrektur für Vignettierung und Aberration aktivieren, so dass diese beim RAW-Bild hinterlegt sind.
    Wisst ihr zufällig ob Lightroom diese Daten auch verwendet und verarbeitet?
    Meinen Versuchen zufolge scheinen diese Daten nicht verwendet zu werden.
    Hintergrund ist dass die Korrekturdaten von Canon natürlich schneller zur Verfügung stehen als von Lightroom bzw. auch vollständiger, da u. a. keine Korrekturdaten von meinem Objektiv mit 2x III Extender zur Verfügung stehen, Canon diese jedoch schon hat.
    Vielen Dank!

    Ich habe sie seit einiger Zeit, bin mit dem Rauschverhalten sehr glücklich und man kann sogar die H-Einstellung 3200 gut verwenden, wenn man exakt belichtet und nachher noch einen Rauschfilter verwendet bzw RAW fotografiert. Allerdings kenne ich die 1d Mk II selbst in der Praxis nicht und habe keinen vergleich, die Kollegen sind eigentlich auch mit deren Rauschverhalten ganz zufrieden. Allerdings haben immer mehr 1D-Nutzer zusätzlich noch eine 5D. Nur ist die 5D im Vergleich seeeeehr gemäääääähhchchlichh... mit den 3B/s. Wenn dich das nicht stört... Auch den Autofokus finde ich im Vergleich zu 20D , die ich auch noch habe, noch zuverlässiger, insbesondere mit dem Sigma 2,8/120-300. Das machte bei der 20D gelegentlich Probleme, mit der 5D eigentlich gar nicht mehr.
    Andererseits hat ein Fotokollege, dem ich sein 2,8/300 von Canon abkaufen wollte, einen kleinen Test durchgeführt. Er wollte sehen, wie viel besser meine 5D gegen seine 1DmkII ist (er ist auch Agenturfotograf). Er hatte bei ISO 100/400 ein paar Vergleichsbilder gemacht. Letzlich kam er zum Ergebnis, dass eine 5D keinen richtigen Qualitätssprung darstellt - er hat sich jetzt eine 1Ds MkII mit 16 MP gekauft und ist super zufrieden. Wobei die 5D bei hohen ISO laut ColorFoto besser als die 1Ds sein soll. Einen echten vergleich konnte ich selbst zur 1Ds mit der 5D nicht machen.
    Andererseits war aus meiner 5D das Sigma 120-300 bei 300 mm nicht sichtbar schlechter als das Canon und "nur" wegen dem IS wollte ich das Geld auch nicht ausgeben und Zoomen ist manchemal saupraktisch... nur sind die 300 mm bei Sigma etwas weniger als bei Canon - liegt wohl an der Toleranz, ebenso, wie sie 2,8 da nicht wirklich 2,8 dondern eher 3,2 oder 3,5.
    Wie lautete nochmal die Frage??
    ;o)
    Gruß Jörg

  • Problem in java.awt.print

    Hi here is my code .
    I am generating page dynamically and passing to printer.
    Printing Functionalities working file. But I am taking some data from database (Access). And in this code for example i have 4 records in Database and i am generating 4 pages (each page for resord).
    I am getting only 2 records. And for other two records i am getting blank page.
    Reason is My ResultSet object is moving to next record twice.
    I mean if i have 6 records i get only 3 pages.
    If i have 10 records i get only 5 pages and If i have 1 record i dont get any page.
    How shall i solve this problem.
    Thanx in advance.
    import java.awt.*;
    import java.awt.print.*;
    import java.sql.*;
    public class SubbuBook extends Thread implements Printable {
    Connection con;
         Statement stmt;
         static ResultSet rsValue;
         public void run() {
              dataConnection();
              PrinterJob job = PrinterJob.getPrinterJob();
              Book bk = new Book();
              job.setPageable(bk);
              if (job.printDialog()) {
         try {
              bk.append(new SubbuBook(),job.defaultPage(), 4);
              job.print();
              }catch (Exception e) {
              System.out.println("Exception "+e);
         System.exit(0);
    public int print(Graphics g, PageFormat pf, int pageIndex) throws PrinterException {
         Font fntHeading = new Font("Helvetica",Font.BOLD,24);
    Font fntRow = new Font("Helvetica",Font.PLAIN,14);
         try{
         if(rsValue.next()) {
              g.setFont(fntHeading);
              g.setColor(Color.red);
              g.drawString("Main Report",200,100);
              g.setColor(Color.blue);
              g.drawLine(100,150,500,150);
              g.drawLine(100,150,100,500);
              g.drawLine(100,500,500,500);
              g.drawLine(500,100,500,500);
              g.drawLine(200,150,200,500);
              g.setFont(fntRow);
              g.setColor(Color.black);
              g.drawString("Program Id",120,200);
              g.drawString(rsValue.getString("prog_id"),250,200);
              g.drawString("Program Name",120,250);
              g.drawString(rsValue.getString("prog_name"),250,250);
              g.drawString("Artist Name",120,300);
              g.drawString(rsValue.getString("Artist"),250,300);
         }catch(Exception ae) {
         System.out.println("Exception inside Paint"+ae);
         return Printable.PAGE_EXISTS;
    private void dataConnection() {
         try{
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         con=DriverManager.getConnection("jdbc:odbc:artist");
         stmt=con.createStatement();
         rsValue=stmt.executeQuery("select * from artist order by Prog_name");
         System.out.println("Connection is Proper");
         }catch(Exception e){
              System.out.println("Exception at Connection"+e);

    I am not sure this..
    Instead of if pls give while and check:
    try{
    while(rsValue.next()) {
    g.setFont(fntHeading);
    g.setColor(Color.red);
    g.drawString("Main Report",200,100);

  • External monitor shifted to the right

    i just got an external monitor (acer v223W) which support max resolution of 1680x1050. but when i try and use xrandr like:
    xrandr --output LVDS1 --mode 1440x900 --output VGA1 --mode 1680x1050 --right-of LVDS1
    what i see is shifted by about 100px or so to the left. so on my right had side i have a black bar and when i move a window from my external monitor to my laptop i can tell that the window disappears for a bit before staring to show up on my laptop. before i had a different monitor with max resolution of 1600x900 and xrandr worked great.
    here is the info that i gathered:
    - my laptop is (almost) up to date on all software
    - it has two video cards: intel (which is the one i use) and nvidea (i disabled it in bios).
    - i have intel video drivers installed:
    : pacman -Qs intel
    local/intel-dri 7.10.2-2
    Mesa DRI drivers for Intel
    local/xf86-video-intel 2.15.0-1 (xorg-drivers xorg)
    X.org Intel i810/i830/i915/945G/G965+ video drivers
    - here is what xrandr says
    : xrandr -q
    Screen 0: minimum 320 x 200, current 3120 x 1050, maximum 8192 x 8192
    LVDS1 connected 1440x900+0+0 (normal left inverted right x axis y axis) 304mm x 190mm
    1440x900 60.3*+ 50.1
    1024x768 60.0
    800x600 60.3 56.2
    640x480 59.9
    VGA1 connected 1680x1050+1440+0 (normal left inverted right x axis y axis) 473mm x 296mm
    1680x1050 60.0*+
    1600x1200 60.0
    1280x1024 75.0 60.0
    1440x900 75.0 59.9
    1280x800 59.8
    1152x864 75.0
    1024x768 75.1 70.1 60.0
    832x624 74.6
    800x600 72.2 75.0 60.3 56.2
    640x480 72.8 75.0 66.7 60.0
    720x400 70.1
    DP1 disconnected (normal left inverted right x axis y axis)
    - here is the Xorg log
    : cat /var/log/Xorg.0.log
    [ 120.021]
    X.Org X Server 1.10.1
    Release Date: 2011-04-15
    [ 120.021] X Protocol Version 11, Revision 0
    [ 120.021] Build Operating System: Linux 2.6.38-ARCH x86_64
    [ 120.021] Current Operating System: Linux jss-lenovo-105 2.6.38-ARCH #1 SMP PREEMPT Fri Apr 22 20:29:33 CEST 2011 x86_64
    [ 120.021] Kernel command line: root=/dev/disk/by-uuid/ad7e26d2-8144-4d4c-9c60-df4f7fcceda7 ro
    [ 120.021] Build Date: 16 April 2011 12:02:01PM
    [ 120.021]
    [ 120.021] Current version of pixman: 0.20.2
    [ 120.021] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 120.021] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 120.022] (==) Log file: "/var/log/Xorg.0.log", Time: Mon May 16 11:44:46 2011
    [ 120.111] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 120.130] (==) No Layout section. Using the first Screen section.
    [ 120.130] (==) No screen section available. Using defaults.
    [ 120.130] (**) |-->Screen "Default Screen Section" (0)
    [ 120.130] (**) | |-->Monitor "<default monitor>"
    [ 120.130] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 120.130] (==) Automatically adding devices
    [ 120.130] (==) Automatically enabling devices
    [ 120.180] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 120.180] Entry deleted from font path.
    [ 120.213] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 120.213] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 120.213] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 120.213] (II) Loader magic: 0x7d6fa0
    [ 120.213] (II) Module ABI versions:
    [ 120.213] X.Org ANSI C Emulation: 0.4
    [ 120.213] X.Org Video Driver: 10.0
    [ 120.213] X.Org XInput driver : 12.2
    [ 120.213] X.Org Server Extension : 5.0
    [ 120.214] (--) PCI:*(0:0:2:0) 8086:2a42:17aa:2112 rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
    [ 120.214] (--) PCI: (0:0:2:1) 8086:2a43:17aa:2112 rev 7, Mem @ 0xf4200000/1048576
    [ 120.215] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 120.215] (II) LoadModule: "extmod"
    [ 120.229] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 120.235] (II) Module extmod: vendor="X.Org Foundation"
    [ 120.235] compiled for 1.10.1, module version = 1.0.0
    [ 120.235] Module class: X.Org Server Extension
    [ 120.235] ABI class: X.Org Server Extension, version 5.0
    [ 120.235] (II) Loading extension MIT-SCREEN-SAVER
    [ 120.235] (II) Loading extension XFree86-VidModeExtension
    [ 120.235] (II) Loading extension XFree86-DGA
    [ 120.235] (II) Loading extension DPMS
    [ 120.235] (II) Loading extension XVideo
    [ 120.235] (II) Loading extension XVideo-MotionCompensation
    [ 120.235] (II) Loading extension X-Resource
    [ 120.235] (II) LoadModule: "dbe"
    [ 120.236] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 120.236] (II) Module dbe: vendor="X.Org Foundation"
    [ 120.236] compiled for 1.10.1, module version = 1.0.0
    [ 120.236] Module class: X.Org Server Extension
    [ 120.236] ABI class: X.Org Server Extension, version 5.0
    [ 120.236] (II) Loading extension DOUBLE-BUFFER
    [ 120.236] (II) LoadModule: "glx"
    [ 120.236] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 120.247] (II) Module glx: vendor="X.Org Foundation"
    [ 120.247] compiled for 1.10.1, module version = 1.0.0
    [ 120.247] ABI class: X.Org Server Extension, version 5.0
    [ 120.247] (==) AIGLX enabled
    [ 120.247] (II) Loading extension GLX
    [ 120.250] (II) LoadModule: "record"
    [ 120.250] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 120.250] (II) Module record: vendor="X.Org Foundation"
    [ 120.250] compiled for 1.10.1, module version = 1.13.0
    [ 120.250] Module class: X.Org Server Extension
    [ 120.250] ABI class: X.Org Server Extension, version 5.0
    [ 120.251] (II) Loading extension RECORD
    [ 120.251] (II) LoadModule: "dri"
    [ 120.251] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 120.269] (II) Module dri: vendor="X.Org Foundation"
    [ 120.269] compiled for 1.10.1, module version = 1.0.0
    [ 120.269] ABI class: X.Org Server Extension, version 5.0
    [ 120.269] (II) Loading extension XFree86-DRI
    [ 120.269] (II) LoadModule: "dri2"
    [ 120.269] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 120.270] (II) Module dri2: vendor="X.Org Foundation"
    [ 120.270] compiled for 1.10.1, module version = 1.2.0
    [ 120.270] ABI class: X.Org Server Extension, version 5.0
    [ 120.270] (II) Loading extension DRI2
    [ 120.270] (==) Matched intel as autoconfigured driver 0
    [ 120.270] (==) Matched vesa as autoconfigured driver 1
    [ 120.270] (==) Matched fbdev as autoconfigured driver 2
    [ 120.270] (==) Assigned the driver to the xf86ConfigLayout
    [ 120.270] (II) LoadModule: "intel"
    [ 120.279] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 120.299] (II) Module intel: vendor="X.Org Foundation"
    [ 120.299] compiled for 1.10.0.902, module version = 2.15.0
    [ 120.299] Module class: X.Org Video Driver
    [ 120.299] ABI class: X.Org Video Driver, version 10.0
    [ 120.299] (II) LoadModule: "vesa"
    [ 120.299] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 120.300] (II) Module vesa: vendor="X.Org Foundation"
    [ 120.300] compiled for 1.10.0, module version = 2.3.0
    [ 120.300] Module class: X.Org Video Driver
    [ 120.300] ABI class: X.Org Video Driver, version 10.0
    [ 120.300] (II) LoadModule: "fbdev"
    [ 120.309] (WW) Warning, couldn't open module fbdev
    [ 120.309] (II) UnloadModule: "fbdev"
    [ 120.309] (II) Unloading fbdev
    [ 120.309] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 120.309] (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, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
    Sandybridge, Sandybridge
    [ 120.309] (II) VESA: driver for VESA chipsets: vesa
    [ 120.309] (--) using VT number 7
    [ 120.313] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 120.313] (WW) Falling back to old probe method for vesa
    [ 120.314] drmOpenDevice: node name is /dev/dri/card0
    [ 120.314] drmOpenDevice: open result is 8, (OK)
    [ 120.314] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    [ 120.314] drmOpenDevice: node name is /dev/dri/card0
    [ 120.314] drmOpenDevice: open result is 8, (OK)
    [ 120.314] drmOpenByBusid: drmOpenMinor returns 8
    [ 120.314] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    [ 120.314] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 120.314] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 120.314] (==) intel(0): RGB weight 888
    [ 120.314] (==) intel(0): Default visual is TrueColor
    [ 120.314] (II) intel(0): Integrated Graphics Chipset: Intel(R) GM45
    [ 120.314] (--) intel(0): Chipset: "GM45"
    [ 120.314] (**) intel(0): Relaxed fencing enabled
    [ 120.314] (**) intel(0): Framebuffer tiled
    [ 120.314] (**) intel(0): Pixmaps tiled
    [ 120.314] (**) intel(0): 3D buffers tiled
    [ 120.314] (**) intel(0): SwapBuffers wait enabled
    [ 120.314] (==) intel(0): video overlay key set to 0x101fe
    [ 120.327] (II) intel(0): Output LVDS1 has no monitor section
    [ 120.328] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    [ 120.346] (II) intel(0): Output VGA1 has no monitor section
    [ 120.347] (II) intel(0): Output DP1 has no monitor section
    [ 120.347] (II) intel(0): EDID for output LVDS1
    [ 120.347] (II) intel(0): Manufacturer: LEN Model: 4033 Serial#: 0
    [ 120.347] (II) intel(0): Year: 2007 Week: 0
    [ 120.347] (II) intel(0): EDID Version: 1.3
    [ 120.347] (II) intel(0): Digital Display Input
    [ 120.347] (II) intel(0): Max Image Size [cm]: horiz.: 30 vert.: 19
    [ 120.347] (II) intel(0): Gamma: 2.20
    [ 120.347] (II) intel(0): DPMS capabilities: StandBy Suspend Off
    [ 120.347] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 120.347] (II) intel(0): First detailed timing is preferred mode
    [ 120.348] (II) intel(0): redX: 0.590 redY: 0.330 greenX: 0.310 greenY: 0.570
    [ 120.348] (II) intel(0): blueX: 0.155 blueY: 0.135 whiteX: 0.313 whiteY: 0.329
    [ 120.348] (II) intel(0): Manufacturer's mask: 0
    [ 120.348] (II) intel(0): Supported detailed timing:
    [ 120.348] (II) intel(0): clock: 100.0 MHz Image Size: 304 x 190 mm
    [ 120.348] (II) intel(0): h_active: 1440 h_sync: 1488 h_sync_end 1520 h_blank_end 1800 h_border: 0
    [ 120.348] (II) intel(0): v_active: 900 v_sync: 903 v_sync_end 907 v_blanking: 922 v_border: 0
    [ 120.348] (II) intel(0): Supported detailed timing:
    [ 120.348] (II) intel(0): clock: 82.0 MHz Image Size: 304 x 190 mm
    [ 120.348] (II) intel(0): h_active: 1440 h_sync: 1488 h_sync_end 1520 h_blank_end 1768 h_border: 0
    [ 120.348] (II) intel(0): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 926 v_border: 0
    [ 120.348] (II) intel(0): Unknown vendor-specific block f
    [ 120.348] (II) intel(0): AUOB141PW03V0
    [ 120.348] (II) intel(0): EDID (in hex):
    [ 120.348] (II) intel(0): 00ffffffffffff0030ae334000000000
    [ 120.348] (II) intel(0): 00110103801e1378ea24e597544f9227
    [ 120.348] (II) intel(0): 22505400000001010101010101010101
    [ 120.348] (II) intel(0): 0101010101011027a068518416303020
    [ 120.348] (II) intel(0): 340030be100000180320a04851841a30
    [ 120.348] (II) intel(0): 3020360030be100000180000000f0095
    [ 120.348] (II) intel(0): 0a32950a2814010006af5125000000fe
    [ 120.348] (II) intel(0): 0041554f4231343150573033563000cf
    [ 120.348] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 120.348] (II) intel(0): Printing DDC gathered Modelines:
    [ 120.348] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 120.348] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 120.348] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 120.348] (II) intel(0): Printing probed modes for output LVDS1
    [ 120.348] (II) intel(0): Modeline "1440x900"x60.3 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 120.348] (II) intel(0): Modeline "1440x900"x50.1 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 120.348] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 120.348] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 120.348] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 120.348] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 120.366] (II) intel(0): EDID for output VGA1
    [ 120.367] (II) intel(0): EDID for output DP1
    [ 120.367] (II) intel(0): Output LVDS1 connected
    [ 120.367] (II) intel(0): Output VGA1 disconnected
    [ 120.367] (II) intel(0): Output DP1 disconnected
    [ 120.367] (II) intel(0): Using exact sizes for initial modes
    [ 120.367] (II) intel(0): Output LVDS1 using initial mode 1440x900
    [ 120.367] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 120.367] (II) intel(0): Kernel page flipping support detected, enabling
    [ 120.367] (**) intel(0): Display dimensions: (300, 190) mm
    [ 120.367] (**) intel(0): DPI set to (121, 120)
    [ 120.367] (II) Loading sub module "fb"
    [ 120.367] (II) LoadModule: "fb"
    [ 120.368] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 120.396] (II) Module fb: vendor="X.Org Foundation"
    [ 120.396] compiled for 1.10.1, module version = 1.0.0
    [ 120.396] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 120.396] (II) Loading sub module "dri2"
    [ 120.396] (II) LoadModule: "dri2"
    [ 120.396] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 120.396] (II) Module dri2: vendor="X.Org Foundation"
    [ 120.397] compiled for 1.10.1, module version = 1.2.0
    [ 120.397] ABI class: X.Org Server Extension, version 5.0
    [ 120.397] (II) UnloadModule: "vesa"
    [ 120.397] (II) Unloading vesa
    [ 120.397] (==) Depth 24 pixmap format is 32 bpp
    [ 120.397] (II) intel(0): [DRI2] Setup complete
    [ 120.397] (II) intel(0): [DRI2] DRI driver: i965
    [ 120.397] (II) intel(0): Allocated new frame buffer 1472x900 stride 6144, tiled
    [ 120.473] (II) UXA(0): Driver registered support for the following operations:
    [ 120.473] (II) solid
    [ 120.473] (II) copy
    [ 120.473] (II) composite (RENDER acceleration)
    [ 120.473] (II) put_image
    [ 120.473] (II) get_image
    [ 120.473] (==) intel(0): Backing store disabled
    [ 120.473] (==) intel(0): Silken mouse enabled
    [ 120.484] (II) intel(0): Initializing HW Cursor
    [ 120.540] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 120.542] (==) intel(0): DPMS enabled
    [ 120.542] (==) intel(0): Intel XvMC decoder enabled
    [ 120.542] (II) intel(0): Set up textured video
    [ 120.542] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 120.542] (II) intel(0): direct rendering: DRI2 Enabled
    [ 120.542] (==) intel(0): hotplug detection: "enabled"
    [ 120.542] (--) RandR disabled
    [ 120.542] (II) Initializing built-in extension Generic Event Extension
    [ 120.542] (II) Initializing built-in extension SHAPE
    [ 120.542] (II) Initializing built-in extension MIT-SHM
    [ 120.542] (II) Initializing built-in extension XInputExtension
    [ 120.542] (II) Initializing built-in extension XTEST
    [ 120.542] (II) Initializing built-in extension BIG-REQUESTS
    [ 120.542] (II) Initializing built-in extension SYNC
    [ 120.542] (II) Initializing built-in extension XKEYBOARD
    [ 120.542] (II) Initializing built-in extension XC-MISC
    [ 120.542] (II) Initializing built-in extension SECURITY
    [ 120.542] (II) Initializing built-in extension XINERAMA
    [ 120.542] (II) Initializing built-in extension XFIXES
    [ 120.542] (II) Initializing built-in extension RENDER
    [ 120.542] (II) Initializing built-in extension RANDR
    [ 120.542] (II) Initializing built-in extension COMPOSITE
    [ 120.542] (II) Initializing built-in extension DAMAGE
    [ 120.707] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 120.707] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 120.707] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 120.707] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 120.707] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 120.707] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
    [ 120.707] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 120.708] (II) intel(0): Setting screen physical size to 381 x 238
    [ 121.043] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 121.043] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 121.043] (II) LoadModule: "evdev"
    [ 121.043] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.049] (II) Module evdev: vendor="X.Org Foundation"
    [ 121.049] compiled for 1.10.0, module version = 2.6.0
    [ 121.049] Module class: X.Org XInput Driver
    [ 121.049] ABI class: X.Org XInput driver, version 12.2
    [ 121.049] (II) Using input driver 'evdev' for 'Power Button'
    [ 121.049] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.049] (**) Power Button: always reports core events
    [ 121.049] (**) Power Button: Device: "/dev/input/event4"
    [ 121.063] (--) Power Button: Found keys
    [ 121.063] (II) Power Button: Configuring as keyboard
    [ 121.063] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 121.063] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 121.063] (**) Option "xkb_rules" "evdev"
    [ 121.063] (**) Option "xkb_model" "evdev"
    [ 121.063] (**) Option "xkb_layout" "us"
    [ 121.086] (II) config/udev: Adding input device Video Bus (/dev/input/event16)
    [ 121.086] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 121.086] (II) Using input driver 'evdev' for 'Video Bus'
    [ 121.086] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.086] (**) Video Bus: always reports core events
    [ 121.086] (**) Video Bus: Device: "/dev/input/event16"
    [ 121.100] (--) Video Bus: Found keys
    [ 121.100] (II) Video Bus: Configuring as keyboard
    [ 121.100] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input16/event16"
    [ 121.100] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 121.100] (**) Option "xkb_rules" "evdev"
    [ 121.100] (**) Option "xkb_model" "evdev"
    [ 121.100] (**) Option "xkb_layout" "us"
    [ 121.106] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 121.106] (II) No input driver/identifier specified (ignoring)
    [ 121.106] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 121.106] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 121.106] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 121.106] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.106] (**) Sleep Button: always reports core events
    [ 121.106] (**) Sleep Button: Device: "/dev/input/event3"
    [ 121.116] (--) Sleep Button: Found keys
    [ 121.116] (II) Sleep Button: Configuring as keyboard
    [ 121.116] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event3"
    [ 121.116] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    [ 121.116] (**) Option "xkb_rules" "evdev"
    [ 121.116] (**) Option "xkb_model" "evdev"
    [ 121.116] (**) Option "xkb_layout" "us"
    [ 121.120] (II) config/udev: Adding input device Integrated Camera (/dev/input/event15)
    [ 121.120] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
    [ 121.120] (II) Using input driver 'evdev' for 'Integrated Camera'
    [ 121.120] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.120] (**) Integrated Camera: always reports core events
    [ 121.120] (**) Integrated Camera: Device: "/dev/input/event15"
    [ 121.146] (--) Integrated Camera: Found keys
    [ 121.146] (II) Integrated Camera: Configuring as keyboard
    [ 121.146] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input15/event15"
    [ 121.146] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD)
    [ 121.146] (**) Option "xkb_rules" "evdev"
    [ 121.146] (**) Option "xkb_model" "evdev"
    [ 121.146] (**) Option "xkb_layout" "us"
    [ 121.147] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 121.147] (II) No input driver/identifier specified (ignoring)
    [ 121.148] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
    [ 121.148] (II) No input driver/identifier specified (ignoring)
    [ 121.148] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
    [ 121.148] (II) No input driver/identifier specified (ignoring)
    [ 121.148] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event8)
    [ 121.148] (II) No input driver/identifier specified (ignoring)
    [ 121.148] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event9)
    [ 121.148] (II) No input driver/identifier specified (ignoring)
    [ 121.150] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/event12)
    [ 121.150] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Applying InputClass "evdev pointer catchall"
    [ 121.150] (II) Using input driver 'evdev' for 'Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)'
    [ 121.150] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.150] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): always reports core events
    [ 121.150] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Device: "/dev/input/event12"
    [ 121.173] (--) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found 3 mouse buttons
    [ 121.173] (--) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found scroll wheel(s)
    [ 121.173] (--) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found relative axes
    [ 121.173] (--) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found x and y relative axes
    [ 121.173] (II) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Configuring as mouse
    [ 121.173] (II) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Adding scrollwheel support
    [ 121.173] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): YAxisMapping: buttons 4 and 5
    [ 121.173] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 121.173] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1:1.0/input/input12/event12"
    [ 121.173] (II) XINPUT: Adding extended input device "Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)" (type: MOUSE)
    [ 121.173] (II) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): initialized for relative axes.
    [ 121.173] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) keeping acceleration scheme 1
    [ 121.173] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration profile 0
    [ 121.173] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration factor: 2.000
    [ 121.173] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration threshold: 4
    [ 121.174] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/mouse1)
    [ 121.174] (II) No input driver/identifier specified (ignoring)
    [ 121.174] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/event13)
    [ 121.174] (**) USB-compliant keyboard: Applying InputClass "evdev keyboard catchall"
    [ 121.174] (II) Using input driver 'evdev' for 'USB-compliant keyboard'
    [ 121.174] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.174] (**) USB-compliant keyboard: always reports core events
    [ 121.174] (**) USB-compliant keyboard: Device: "/dev/input/event13"
    [ 121.193] (--) USB-compliant keyboard: Found keys
    [ 121.193] (II) USB-compliant keyboard: Configuring as keyboard
    [ 121.193] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-2/6-2:1.0/input/input13/event13"
    [ 121.193] (II) XINPUT: Adding extended input device "USB-compliant keyboard" (type: KEYBOARD)
    [ 121.193] (**) Option "xkb_rules" "evdev"
    [ 121.193] (**) Option "xkb_model" "evdev"
    [ 121.193] (**) Option "xkb_layout" "us"
    [ 121.194] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/event14)
    [ 121.194] (**) USB-compliant keyboard: Applying InputClass "evdev keyboard catchall"
    [ 121.194] (II) Using input driver 'evdev' for 'USB-compliant keyboard'
    [ 121.194] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.194] (**) USB-compliant keyboard: always reports core events
    [ 121.194] (**) USB-compliant keyboard: Device: "/dev/input/event14"
    [ 121.220] (--) USB-compliant keyboard: Found 1 mouse buttons
    [ 121.220] (--) USB-compliant keyboard: Found scroll wheel(s)
    [ 121.220] (--) USB-compliant keyboard: Found relative axes
    [ 121.220] (--) USB-compliant keyboard: Found x and y relative axes
    [ 121.220] (--) USB-compliant keyboard: Found absolute axes
    [ 121.220] (--) USB-compliant keyboard: Found keys
    [ 121.220] (II) USB-compliant keyboard: Configuring as mouse
    [ 121.220] (II) USB-compliant keyboard: Configuring as keyboard
    [ 121.220] (II) USB-compliant keyboard: Adding scrollwheel support
    [ 121.220] (**) USB-compliant keyboard: YAxisMapping: buttons 4 and 5
    [ 121.220] (**) USB-compliant keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 121.220] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-2/6-2:1.1/input/input14/event14"
    [ 121.220] (II) XINPUT: Adding extended input device "USB-compliant keyboard" (type: KEYBOARD)
    [ 121.220] (**) Option "xkb_rules" "evdev"
    [ 121.220] (**) Option "xkb_model" "evdev"
    [ 121.220] (**) Option "xkb_layout" "us"
    [ 121.220] (II) USB-compliant keyboard: initialized for relative axes.
    [ 121.220] (WW) USB-compliant keyboard: ignoring absolute axes.
    [ 121.220] (**) USB-compliant keyboard: (accel) keeping acceleration scheme 1
    [ 121.220] (**) USB-compliant keyboard: (accel) acceleration profile 0
    [ 121.220] (**) USB-compliant keyboard: (accel) acceleration factor: 2.000
    [ 121.220] (**) USB-compliant keyboard: (accel) acceleration threshold: 4
    [ 121.220] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/mouse2)
    [ 121.220] (II) No input driver/identifier specified (ignoring)
    [ 121.224] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 121.224] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 121.224] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 121.224] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.224] (**) AT Translated Set 2 keyboard: always reports core events
    [ 121.224] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 121.246] (--) AT Translated Set 2 keyboard: Found keys
    [ 121.246] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 121.246] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 121.246] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 121.246] (**) Option "xkb_rules" "evdev"
    [ 121.246] (**) Option "xkb_model" "evdev"
    [ 121.246] (**) Option "xkb_layout" "us"
    [ 121.247] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
    [ 121.247] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 121.247] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 121.247] (II) LoadModule: "synaptics"
    [ 121.247] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 121.248] (II) Module synaptics: vendor="X.Org Foundation"
    [ 121.248] compiled for 1.10.0, module version = 1.4.0
    [ 121.248] Module class: X.Org XInput Driver
    [ 121.248] ABI class: X.Org XInput driver, version 12.2
    [ 121.248] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 121.248] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 121.248] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 121.248] (**) Option "Device" "/dev/input/event11"
    [ 121.373] (--) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5598
    [ 121.373] (--) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4670
    [ 121.373] (--) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 121.373] (--) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 121.373] (--) SynPS/2 Synaptics TouchPad: buttons: left right
    [ 121.373] (**) Option "TapButton1" "1"
    [ 121.373] (**) Option "TapButton2" "2"
    [ 121.373] (**) Option "TapButton3" "3"
    [ 121.480] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 121.480] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 121.533] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input11/event11"
    [ 121.533] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    [ 121.533] (**) SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 121.533] (**) SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
    [ 121.533] (**) SynPS/2 Synaptics TouchPad: AccelFactor is now 0.038
    [ 121.533] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 121.533] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 121.533] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 121.533] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 121.613] (--) SynPS/2 Synaptics TouchPad: touchpad found
    [ 121.613] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 121.613] (II) No input driver/identifier specified (ignoring)
    [ 121.614] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event17)
    [ 121.614] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
    [ 121.614] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
    [ 121.614] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.614] (**) TPPS/2 IBM TrackPoint: always reports core events
    [ 121.614] (**) TPPS/2 IBM TrackPoint: Device: "/dev/input/event17"
    [ 121.640] (--) TPPS/2 IBM TrackPoint: Found 3 mouse buttons
    [ 121.640] (--) TPPS/2 IBM TrackPoint: Found relative axes
    [ 121.640] (--) TPPS/2 IBM TrackPoint: Found x and y relative axes
    [ 121.640] (II) TPPS/2 IBM TrackPoint: Configuring as mouse
    [ 121.640] (**) TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
    [ 121.640] (**) TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 121.640] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input17/event17"
    [ 121.640] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE)
    [ 121.640] (II) TPPS/2 IBM TrackPoint: initialized for relative axes.
    [ 121.640] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
    [ 121.640] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
    [ 121.640] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
    [ 121.640] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
    [ 121.640] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse3)
    [ 121.640] (II) No input driver/identifier specified (ignoring)
    [ 121.640] (II) config/udev: Adding input device PC Speaker (/dev/input/event1)
    [ 121.640] (II) No input driver/identifier specified (ignoring)
    [ 121.641] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event5)
    [ 121.641] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
    [ 121.641] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
    [ 121.641] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 121.641] (**) ThinkPad Extra Buttons: always reports core events
    [ 121.641] (**) ThinkPad Extra Buttons: Device: "/dev/input/event5"
    [ 121.666] (--) ThinkPad Extra Buttons: Found keys
    [ 121.666] (II) ThinkPad Extra Buttons: Configuring as keyboard
    [ 121.666] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event5"
    [ 121.666] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD)
    [ 121.666] (**) Option "xkb_rules" "evdev"
    [ 121.666] (**) Option "xkb_model" "evdev"
    [ 121.666] (**) Option "xkb_layout" "us"
    [ 122.391] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 122.391] (II) intel(0): Printing DDC gathered Modelines:
    [ 122.391] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 122.391] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 122.411] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 122.411] (II) intel(0): Printing DDC gathered Modelines:
    [ 122.411] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 122.411] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 336.811] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 336.811] (II) intel(0): Printing DDC gathered Modelines:
    [ 336.811] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 336.811] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 336.835] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 336.835] (II) intel(0): Printing DDC gathered Modelines:
    [ 336.835] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 336.835] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 343.607] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 343.607] (II) intel(0): Printing DDC gathered Modelines:
    [ 343.607] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 343.607] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 343.672] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 343.673] (II) intel(0): Printing DDC gathered Modelines:
    [ 343.673] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 343.673] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 343.735] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 343.735] (II) intel(0): Printing DDC gathered Modelines:
    [ 343.736] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 343.736] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 344.801] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 344.801] (II) intel(0): Printing DDC gathered Modelines:
    [ 344.801] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 344.801] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 344.867] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 344.867] (II) intel(0): Printing DDC gathered Modelines:
    [ 344.867] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 344.867] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 362.559] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 362.559] (II) intel(0): Printing DDC gathered Modelines:
    [ 362.559] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 362.559] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 362.624] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 362.624] (II) intel(0): Printing DDC gathered Modelines:
    [ 362.624] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 362.624] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 362.692] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 362.692] (II) intel(0): Printing DDC gathered Modelines:
    [ 362.692] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 362.692] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 362.756] (II) intel(0): Allocated new frame buffer 1728x1050 stride 7168, tiled
    [ 362.774] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 362.774] (II) intel(0): Printing DDC gathered Modelines:
    [ 362.774] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 362.774] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 362.847] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 362.847] (II) intel(0): Printing DDC gathered Modelines:
    [ 362.847] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 362.847] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 525.745] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 525.745] (II) intel(0): Printing DDC gathered Modelines:
    [ 525.745] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 525.745] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 530.202] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 530.202] (II) intel(0): Printing DDC gathered Modelines:
    [ 530.202] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 530.202] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 536.835] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 536.835] (II) intel(0): Printing DDC gathered Modelines:
    [ 536.835] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 536.835] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 539.995] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 539.995] (II) intel(0): Printing DDC gathered Modelines:
    [ 539.995] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 539.995] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 540.067] (II) intel(0): Allocated new frame buffer 3136x1050 stride 12800, tiled
    [ 540.116] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 540.116] (II) intel(0): Printing DDC gathered Modelines:
    [ 540.116] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 540.116] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 540.199] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 540.199] (II) intel(0): Printing DDC gathered Modelines:
    [ 540.199] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 540.199] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 551.649] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 551.649] (II) intel(0): Printing DDC gathered Modelines:
    [ 551.649] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 551.649] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 551.717] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 551.717] (II) intel(0): Printing DDC gathered Modelines:
    [ 551.717] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 551.717] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 551.786] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 551.786] (II) intel(0): Printing DDC gathered Modelines:
    [ 551.786] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 551.786] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1499.858] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1499.858] (II) intel(0): Printing DDC gathered Modelines:
    [ 1499.858] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1499.859] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1506.345] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1506.345] (II) intel(0): Printing DDC gathered Modelines:
    [ 1506.345] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1506.345] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1506.411] (II) intel(0): Allocated new frame buffer 3200x1050 stride 12800, tiled
    [ 1506.470] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1506.470] (II) intel(0): Printing DDC gathered Modelines:
    [ 1506.470] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1506.470] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1506.547] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1506.547] (II) intel(0): Printing DDC gathered Modelines:
    [ 1506.547] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1506.547] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1506.608] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1506.608] (II) intel(0): Printing DDC gathered Modelines:
    [ 1506.608] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1506.608] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1506.672] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1506.672] (II) intel(0): Printing DDC gathered Modelines:
    [ 1506.672] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1506.672] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1512.035] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1512.036] (II) intel(0): Printing DDC gathered Modelines:
    [ 1512.036] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1512.036] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1512.107] (II) intel(0): Allocated new frame buffer 3392x1050 stride 13824, tiled
    [ 1512.187] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1512.187] (II) intel(0): Printing DDC gathered Modelines:
    [ 1512.187] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1512.187] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1512.266] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1512.266] (II) intel(0): Printing DDC gathered Modelines:
    [ 1512.266] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1512.266] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1512.323] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1512.323] (II) intel(0): Printing DDC gathered Modelines:
    [ 1512.323] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1512.323] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    [ 1512.391] (II) intel(0): EDID vendor "LEN", prod id 16435
    [ 1512.391] (II) intel(0): Printing DDC gathered Modelines:
    [ 1512.391] (II) intel(0): Modeline "1440x900"x0.0 100.00 1440 1488 1520 1800 900 903 907 922 -hsync -vsync (55.6 kHz)
    [ 1512.391] (II) intel(0): Modeline "1440x900"x0.0 81.95 1440 1488 1520 1768 900 903 909 926 -hsync -vsync (46.4 kHz)
    - i don't use 10-monitor.conf
    - tried used disper
    disper -e -r 1440x900,1680x1050 -t top
    but that didn't work either
    any suggestions are welcomed...

    thanks for responses
    @BurntSushi
    here is what scrot gave me: http://dl.dropbox.com/u/292474/arch/output.jpg
    but what i see is more like: http://dl.dropbox.com/u/292474/arch/output_view.jpg
    @ewaller
    interface is VGA. i have tried changing the H. Position on the monitor to "slide it back" but even when it's completely at 100% on one side i gain back half of the black area. i don't know what else i can change on the monitor that would help me out.

  • My Mac is running very Slow

    Hello Everyone,
    for the past couple of months my mac has been preforming slower to the point where it takes me ten minutes to type in my password to log in what puzzles me is that I use less than 1/5 of my hard-rive and I only use 2-3 application at a time.
    Thank you,
    Tom
    P.S  I was told to include this report
    Problem description:
    computer running slow
    EtreCheck version: 2.1.8 (121)
    Report generated March 15, 2015 at 12:41:10 PM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Mid 2010) (Technical Specifications)
        MacBook Pro - model: MacBookPro7,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 321
    Video Information: ℹ️
        NVIDIA GeForce 320M - VRAM: 256 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Time since boot: 2 days 13:20:9
    Disk Information: ℹ️
        TOSHIBA MK5065GSXF disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (421.99 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
        Apple Internal Memory Card Reader
        Apple Inc. Built-in iSight
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple Inc. Apple Internal Keyboard / Trackpad
    Configuration files: ℹ️
        /etc/hosts - Count: 20
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Library/Extensions
        [loaded]    com.sophos.kext.sav (9.2.50 - SDK 10.8) [Click for support]
        [loaded]    com.sophos.nke.swi (9.2.50 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.driver.JRDMassStorageDriver32 (1.0.1) [Click for support]
        [not loaded]    com.driver.JRDMassStorageDriver64 (1.0.1) [Click for support]
        [not loaded]    com.driver.JRDUSBModemData32 (1.0.1) [Click for support]
        [not loaded]    com.driver.JRDUSBModemData64 (4.0.8) [Click for support]
        [loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.97) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.97) [Click for support]
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cmfsyncagent.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        9 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.installd.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.softwareupdated.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    com.apple.xpc.smd.plist
        12 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.rim.BBAlbumArtCacher.plist [Click for support]
        [running]    com.rim.BBLaunchAgent.plist [Click for support]
        [running]    com.sophos.uiserver.plist [Click for support]
        [running]    org.chromium.chromoting.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.ea.origin.ESHelper.plist [Click for support]
        [loaded]    com.github.GitHub.GHInstallCLI.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [running]    com.iobit.AMCDaemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [running]    com.rim.BBDaemon.plist [Click for support]
        [running]    com.sophos.common.servicemanager.plist [Click for support]
    User Launch Agents: ℹ️
        [running]    com.iobit.MacBoosterMini.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Google Chrome    UNKNOWN Hidden (missing value)
        Dropbox    Application  (/Applications/Dropbox.app)
        Google Drive    Application  (/Applications/Google Drive.app)
    Internet Plug-ins: ℹ️
        AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        Default Browser: Version: 600 - SDK 10.10
        o1dbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 [Click for support]
        googletalkbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        Silverlight: Version: 5.1.30317.0 - SDK 10.6 [Click for support]
    User internet Plug-ins: ℹ️
        Google Earth Web Plug-in: Version: Unknown
    3rd Party Preference Panes: ℹ️
        None
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
            26%    WindowServer
             7%    Safari
             5%    coreaudiod
             3%    hidd
             0%    AppleSpell
    Top Processes by Memory: ℹ️
        275 MB    com.apple.WebKit.WebContent
        86 MB    Finder
        73 MB    SophosScanD
        73 MB    Safari
        73 MB    SophosAntiVirus
    Virtual Memory Information: ℹ️
        70 MB    Free RAM
        1.53 GB    Active RAM
        1.44 GB    Inactive RAM
        673 MB    Wired RAM
        32.15 GB    Page-ins
        1.58 GB    Page-outs
    Diagnostics Information: ℹ️
        Mar 15, 2015, 11:56:33 AM    /Library/Logs/DiagnosticReports/OmniDiskSweeper_2015-03-15-115633_[redacted].cp u_resource.diag [Click for details]
        Mar 15, 2015, 11:38:06 AM    /Library/Logs/DiagnosticReports/Image Capture_2015-03-15-113806_[redacted].hang
        Mar 14, 2015, 04:51:48 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65148_[redacted].crash
        Mar 14, 2015, 04:51:33 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65133_[redacted].crash
        Mar 14, 2015, 04:51:22 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65122_[redacted].crash
        Mar 14, 2015, 04:51:10 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65110_[redacted].crash
        Mar 14, 2015, 04:51:02 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65102_[redacted].crash
        Mar 14, 2015, 04:50:49 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65049_[redacted].crash
        Mar 14, 2015, 04:50:37 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65037_[redacted].crash
        Mar 14, 2015, 04:50:30 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65030_[redacted].crash
        Mar 14, 2015, 04:50:17 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65017_[redacted].crash
        Mar 14, 2015, 04:50:09 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 65009_[redacted].crash
        Mar 14, 2015, 04:49:57 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 64957_[redacted].crash
        Mar 14, 2015, 04:49:54 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 64954_[redacted].crash
        Mar 14, 2015, 03:30:59 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 53059_[redacted].crash
        Mar 14, 2015, 03:30:48 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 53048_[redacted].crash
        Mar 14, 2015, 03:30:38 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 53038_[redacted].crash
        Mar 14, 2015, 03:30:28 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 53028_[redacted].crash
        Mar 14, 2015, 03:30:17 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 53017_[redacted].crash
        Mar 14, 2015, 03:30:13 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 53013_[redacted].crash
        Mar 14, 2015, 01:42:02 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 34202_[redacted].crash
        Mar 14, 2015, 01:41:51 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-1 34151_[redacted].crash
        Mar 14, 2015, 12:37:35 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03735_[redacted].crash
        Mar 14, 2015, 12:37:25 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03725_[redacted].crash
        Mar 14, 2015, 12:37:14 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03714_[redacted].crash
        Mar 14, 2015, 12:37:04 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03704_[redacted].crash
        Mar 14, 2015, 12:36:53 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03653_[redacted].crash
        Mar 14, 2015, 12:36:43 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03643_[redacted].crash
        Mar 14, 2015, 12:36:32 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03632_[redacted].crash
        Mar 14, 2015, 12:36:24 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03624_[redacted].crash
        Mar 14, 2015, 12:36:11 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03611_[redacted].crash
        Mar 14, 2015, 12:36:01 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03601_[redacted].crash
        Mar 14, 2015, 12:35:56 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03556_[redacted].crash
        Mar 14, 2015, 12:35:41 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03541_[redacted].crash
        Mar 14, 2015, 12:35:29 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03529_[redacted].crash
        Mar 14, 2015, 12:35:18 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03518_[redacted].crash
        Mar 14, 2015, 12:35:08 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03508_[redacted].crash
        Mar 14, 2015, 12:34:57 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03457_[redacted].crash
        Mar 14, 2015, 12:34:47 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03447_[redacted].crash
        Mar 14, 2015, 12:34:37 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03437_[redacted].crash
        Mar 14, 2015, 12:34:26 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-14-0 03426_[redacted].crash
        Mar 13, 2015, 05:09:21 PM    /Library/Logs/DiagnosticReports/iTunes_2015-03-13-170921_[redacted].cpu_resourc e.diag [Click for details]
        Mar 13, 2015, 01:01:00 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 30100_[redacted].crash
        Mar 13, 2015, 01:00:51 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 30051_[redacted].crash
        Mar 13, 2015, 01:00:39 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 30039_[redacted].crash
        Mar 13, 2015, 01:00:29 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 30029_[redacted].crash
        Mar 13, 2015, 01:00:19 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 30019_[redacted].crash
        Mar 13, 2015, 01:00:09 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 30009_[redacted].crash
        Mar 13, 2015, 12:59:57 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25957_[redacted].crash
        Mar 13, 2015, 12:59:46 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25946_[redacted].crash
        Mar 13, 2015, 12:59:35 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25935_[redacted].crash
        Mar 13, 2015, 12:59:24 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25924_[redacted].crash
        Mar 13, 2015, 12:59:13 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25913_[redacted].crash
        Mar 13, 2015, 12:59:03 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25903_[redacted].crash
        Mar 13, 2015, 12:58:52 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25852_[redacted].crash
        Mar 13, 2015, 12:58:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25842_[redacted].crash
        Mar 13, 2015, 12:58:31 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25831_[redacted].crash
        Mar 13, 2015, 12:58:21 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25821_[redacted].crash
        Mar 13, 2015, 12:58:10 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25810_[redacted].crash
        Mar 13, 2015, 12:57:59 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25759_[redacted].crash
        Mar 13, 2015, 12:57:48 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/RimAlbumArtDaemon_2015-03-13-1 25748_[redacted].crash
        Mar 12, 2015, 11:17:36 PM    Self test - passed

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    The test works on OS X 10.7 ("Lion") and later. I don't recommend running it on older versions of OS X. It will do no harm, but it won't do much good either.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of it have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message. See, for example, this discussion.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. Try to test under conditions that reproduce the problem, as far as possible. For example, if the computer is sometimes, but not always, slow, run the test during a slowdown.
    You may have started up in "safe" mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(1290 ' 0.5 0.25 50 1000 15 5120 1000 25000 6 6 5 1 0 100 ' 51 25600 4 10 25 5120 102400 1000 25 1 400 40 500 300 85 25 20480 262144 20 2000 524288 604800 5 1024 25 );k=({Soft,Hard}ware Memory Diagnostics Power FireWire Thunderbolt USB Bluetooth SerialATA Extensions Applications Frameworks PrefPane Fonts Displays PCI UniversalAccess InstallHistory ConfigurationProfile AirPort 'com\.apple\.' -\\t N\\/A 'AES|atr|udit|msa|dnse|ax|ensh|fami|FileS|fing|ft[pw]|gedC|kdu|etS|is\.|alk|ODSA|otp|htt|pace|pcas|ps-lp|rexe|rlo|rsh|smb|snm|teln|upd-[aw]|uuc|vix|webf' OSBundle{Require,AllowUserLoa}d 'Mb/s:Mb/s:ms/s:KiB/s:%:total:MB:total:lifetime:sampled:per sec' 'Net in:Net out:I/O wait time:I/O requests:CPU usage:Open files:Memory:Mach ports:Energy:Energy:File opens:Forks:Failed forks:System errors' 'tsA|[ST]M[HL]' PlistBuddy{,' 2>&1'}' -c Print' 'Info\.plist' CFBundleIdentifier );f=('\n%s'{': ','\n\n'}'%s\n' '\nRAM details\n%s\n' %s{' ','\n'{"${k[22]}",}}'%s\n' '%.1f GiB: %s\n' '\n    ...and %s more line(s)\n' '\nContents of %s\n    '"${k[22]}"'mod date: %s\n    '"${k[22]}"'checksum: %s\n%s\n' );c=(879294308 4071182229 461455494 216630318 3627668074 1083382502 1274181950 1855907737 2758863019 1848501757 464843899 2636415542 3694147963 1233118628 2456546649 2806998573 2778718105 842973933 1383871077 1591517921 676087606 1445213025 2051385900 3301885676 891055588 998894468 695903914 1443423563 4136085286 3374894509 1051159591 892310726 1707497389 523110921 2883943871 3873345487 );s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/faceb/s/(at\.)[^.]+/\1NAME/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[4]} ' s/:$//;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: (E[^m]|[^EO])|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[9]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of|yc/!{ s/^.+is |\.//g;p;q;} ' ' BEGIN { FS="\f";if(system("A1 42 83 114")) d="^'"${k[21]}"'launch(d\.peruser\.[0-9]+|ctl\.(Aqua|Background|System))$";} { if($2~/[1-9]/) { $2="status: "$2;printf("'"${f[4]}"'",$1,$2);} else if(!d||$1!~d) print $1;} ' ' $1>1{$NF=$NF" x"$1} /\*/{if(!f)f="\n\t* Code injection"} {$1=""} 1;END{print f} ' ' NR==2&&$4<='${p[7]}'{print $4} ' ' BEGIN{FS=":"} ($1~"wir"&&$2>'${p[22]}') {printf("wired %.1f\n",$2/2^18)} ($1~/P.+ts/&&$2>'${p[19]}') {printf("paged %.1f\n",$2/2^18)} ' '/YLD/s/=/ /p' ' { q=$1;$1="";u=$NF;$NF="";gsub(/ +$/,"");print q"\f"$0"\f"u;} ' ' /^ {6}[^ ]/d;s/:$//;/([^ey]|[^n]e):/d;/e: Y/d;s/: Y.+//g;H;${ g;s/ \n (\n)/\1/g;s/\n +(M[^ ]+)[ -~]+/ (\1)/;s/\n$//;/( {8}[^ ].*){2,}/p;} ' 's:^:/:p;' ' !/, .+:/ { print;n++;} END{if(n<'{${p[12]},${p[13]}}')printf("^'"${k[21]}"'.+")} ' '|uniq' ' 1;END { print "/L.+/Scr.+/Templ.+\.app$";print "/L.+/Pri.+\.plugin$";if(NR<'{${p[14]},${p[21]}}') print "^/[Sp].+|'${k[21]}'";} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:.+//p;' '&&echo On' '/\.(bundle|component|framework|kext|mdimporter|plugin|qlgenerator|saver|wdgt)$/p' '/\.dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".","");print $0"$";} END { split("'"${c[*]}"'",c);for(i in c) print "\t"c[i]"$";} ' ' /^\/(Ap|Dev|Inc|Prev)/d;/((iTu|ok).+dle|\.(component|mailbundle|mdimporter|plugin|qlgenerator|saver|wdgt))$/p;' ' BEGIN{ FS="= "} $2 { gsub(/[()"]/,"",$2);print $2;} !/:/&&!$2{print "'${k[23]}'"} ' ' /^\//!d;s/^.{5}//;s/ [^/]+\//: \//p;' '>&-||echo No' '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[2]}'{$2=$2-1;print}' ' BEGIN { M1='${p[16]}';M2='${p[18]}';M3='${p[8]}';M4='${p[3]}';} !/^A/{next};/%/ { getline;if($5<M1) o["CPU"]="CPU: user "$2"%, system "$4"%";next;} $2~/^disk/&&$4>M2 { o[$2]=$2": "$3" ops/s, "$4" blocks/s";next;} $2~/^(en[0-9]|bridg)/ { if(o[$2]) { e=$3+$4+$5+$6;if(e) o[$2]=o[$2]"; errors "e"/s";next;};if($4>M3||$6>M4) o[$2]=$2": in "int($4/1024)", out "int($6/1024)" (KiB/s)";} END { for(i in o) print o[i];} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/)||(/v6:/&&$2!~/A/) ' ' BEGIN{FS=": "} /^ {10}O/ {exit} /^ {0,12}[^ ]/ {next} $1~"Ne"&&$2!~/^In/{print} $1~"Si" { split($2,a," ");if(a[1]-a[4]<'${p[5]}') print;};$1~"T"&&$2<'${p[20]}'{print};$1~"Se"&&$2!~"2"{print};' ' BEGIN { FS="\f";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1;} ' ' BEGIN { split("'"${p[1]}"'",m);FS="\f";} $2<=m[$1]{next} $1==9||$1==10 { "ps -c -ouid -p"$4"|sed 1d"|getline $4;} $1<11 { o[$1]=o[$1]"\n    "$3" (UID "int($4)"): "$2;} $1==11&&$5!~"^/dev" { o[$1]=o[$1]"\n    "$3" (UID "$4") => "$5" (status "$6"): "$2;} $1==12&&$5 { "ps -c -ocomm -p"$5"|sed 1d"|getline n;if(n) $5=n;o[$1]=o[$1]"\n    "$5" => "$3" (UID "$4"): "$2;} $1~/1[34]/ { o[$1]=o[$1]"\n    "$3" (UID "$4", error "$5"): "$2;} END { n=split("'"${k[27]}"'",u,":");for(i=n+1;i<n+4;i++)u[i]=u[n];split("'"${k[28]}"'",l,":");for(i=1;i<15;i++) if(o[i])print "\n"l[i]" ("u[i]")\n"o[i];} ' ' /^ {8}[^ ]/{print} ' ' BEGIN { L='${p[17]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n    "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n    [N/A]";"cksum "F|getline C;split(C, A);C=A[1];"stat -f%Sm "F|getline D;"file -b "F|getline T;if(T~/^Apple b/) { f="";l=0;while("'"${k[30]}"' "F|getline g) { l++;if(l<=L) f=f"\n    "g;};};if(T!~/^(AS.+ (En.+ )?text(, with v.+)?$|(Bo|PO).+ sh.+ text ex|XM)/) F=F"\n    '"${k[22]}"'"T;printf("'"${f[8]}"'",F,D,C,f);if(l>L) printf("'"${f[7]}"'",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' 's/^.{52}(.+) <.+/\1/p' ' /id: N|te: Y/{i++} END{print i} ' ' /kext:/ { split($0,a,":");p=a[1];k[S]='${k[25]}';k[U]='${k[26]}';v[S]="Safe";v[U]="true";for(i in k) { s=system("'"${k[30]}"'\\ :"k[i]" \""p"\"/*/I*|grep -qw "v[i]);if(!s) a[1]=a[1]" "i;};if(!a[2]) a[2]="'"${k[23]}"'";printf("'"${f[4]}"'",a[1],a[2]);next;} !/^ *$/ { p="'"${k[31]}"'\\ :'"${k[33]}"' \""$0"\"/*/'${k[32]}'";p|getline b;close(p);if(b~/, .+:/||b=="") b="'"${k[23]}"'";printf("'"${f[4]}"'",$0,b);} ' '/ en/!s/\.//p' ' NR>=13 { gsub(/[^0-9]/,"",$1);print;} ' ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9|"sort|uniq";} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?'${k[32]}'$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ / [VY]/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' '/^find: /!p;' ' /^p/{ s/.//g;x;s/\nu/'$'\f''/;s/(\n)c/\1'$'\f''/;s/\n\n//;p;};H;' ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */    /;p;' ' s/^.+ |\(.+\)$//g;p;' '1;END{if(NR<'${p[15]}')printf("^/(S|usr/(X|li))")}' ' /2/{print "WARN"};/4/{print "CRITICAL"};' ' /EVHF|MACR|^s/d;s/^.+: //p;' ' $3~/^[1-9][0-9]{0,2}(\.[1-9][0-9]{0,2}){2}$/ { i++;n=n"\n"$1"\t"$3;} END{ if(i>1)print n} ' s/{'\.|jnl: ','P.+:'}'//;s/ +([0-9]+)(.+)/\2'$'\t\t''\1/p' ' /^ +iP.+:$/{ s/://;b0'$'\n'' };/es: ./{ /iOS/d;s/^.+://;b0'$'\n'' };/^ +C.+ted: +[NY]/H;/:$/b0'$'\n'' d;:0'$'\n'' x;/: +N/d;s/\n.+//p;' ' 1d;/:$/b0'$'\n'' $b0'$'\n'' /(D|^ *Loc.+): /{ s/^.+: //;H;};/(B2|[my]): /H;d;:0'$'\n'' x;/[my]: [AM]|m: I.+p$|^\/Vo/d;s/(^|\n) [ -~]+//g;s/(.+)\n(.+)/\2:\1/;s/\n//g;/[ -~]/p;' 's/$/'$'\f''(0|-(4[34])?)$/p' '|sort'{'|uniq'{,\ -c},\ -nr} ' s/^/'{5,6,7,8,9,10}$'\f''/;s/ *'$'\f'' */'$'\f''/g;p;' 's/:.+$//p' '|wc -l' /{\\.{kext,xpc,'(appex|pluginkit)'}'\/(Contents\/)?'Info,'Launch[AD].+'}'\.plist$/p' 's/([-+.?])/\\\1/g;p' 's/, /\'$'\n/g;p' ' BEGIN{FS="\f"} { printf("'"${f[6]}"'",$1/2^30,$2);} ' ' /= D/&&$1!~/'{${k[24]},${k[29]}}'/ { getline d;if(d~"t") print $1;} ' ' BEGIN{FS="\t"} NR>1&&$NF!~/0x|\.([0-9]{3,}|[-0-9A-F]{36})$/ { print $NF"\f"a[split($(NF-1),a," ")];} ' '|tail -n'{${p[6]},${p[10]}} ' s/.+bus /Bus: /;s/,.+[(]/ /;s/,.+//p;' ' { $NF=$NF" Errors: "$1;$1="";} 1 ' ' 1s/^/\'$'\n''/;/^ +(([MNPRSV]|De|Li|Tu).+|Bus): .|d: Y/d;s/:$//;$d;p;' ' BEGIN { RS=",";FS=":";} $1~"name" { gsub("\"","",$2);print $2;} ' '|grep -q e:/' '/[^ .]/p' '{ print $1}' ' /^ +N.+: [1-9]/ { i++;} END { if(i) print "system: "i;} ' ' NF { print "'{admin,user}' "$NF;exit;} ' ' /se.+ =/,/[\}]/!d;/[=\}]/!p ' ' 3,4d;/^ +D|Of|Fu| [0B]/d;s/^  |:$//g;$!H;${ x;/:/p;} ' ' BEGIN { FS=": ";} NR==1 { sub(":","");h="\n"$1"\n";} /:$/ { l=$1;next;} $1~"S"&&$2!~3 { getline;next;} /^ {6}I/ { i++;L[i]=l" "$2;if(i=='${p[24]}') exit;} END { if(i) print h;for(j=0;j<i;j++) print L[i-j];} ' ' /./H;${ x;s/\n//;s/\n/, /g;/,/p;} ' ' {if(int($6)>'${p[25]}')printf("swap used %.1f\n",$6/1024)} ' ' BEGIN{FS="\""} $3~/ t/&&$2!~/'{${k[24]},${k[29]}}'/{print $2} ' ' int($1)>13 ' p ' BEGIN{FS="DB="} { sub(/\.db.*/,".db",$2);print $2;} ' {,1d\;}'/r%/,/^$/p' ' NR==1{next} NR>11||!$0{exit} {print $NF"\f"substr($0,1,32)"\f"$(NF-7)} ' '/e:/{print $2}' ' /^[(]/{ s/....//;s/$/:/;N;/: [)]$/d;s/\n.+ ([^ ]+).$/\1/;H;};${ g;p;} ' '1;END { exit "find /var/db/r*/'${k[21]}'*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom -mtime -'${p[23]}'s"|getline;} ' ' NR<='${p[26]}' { o=o"\n"$0;next;} { o="";exit;} END{print o} ' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps crontab kextfind top pkgutil "${k[30]}\\" echo cksum kextstat launchctl smcDiagnose sysctl\ -n defaults\ read stat lsbom 'mdfind -onlyin' env pluginkit scutil 'dtrace -q -x aggsortrev -n' security sed\ -En awk 'dscl . -read' networksetup mdutil lsof test osascript\ -e netstat mdls route cat uname powermetrics );c2=(${k[21]}loginwindow\ LoginHook ' /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'" 'L*/Ca*/'${k[21]}'Saf*/E* -d 2 -name '${k[32]} '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' -i '-nl -print' '-F \$Sender -k Level Nle 3 -k Facility Req "'${k[21]}'('{'bird|.*i?clou','lsu|sha'}')"' "-f'%N: %l' Desktop {/,}L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message CRne '0xdc008012|(allow|call)ing|Goog|(mplet|nabl)ed|ry HD|safe b|xpm' -k Message CReq 'bad |Can.t l|corru|dead|fail|GPU |hfs: Ru|inval|Limiti|v_c|NVDA[(]|pagin|Purg(ed|in)|error|Refus|TCON|tim(ed? ?|ing )o|trig|WARN' " '-du -n DEV -n EDEV 1 10' 'acrx -o%cpu,comm,ruid' "' syscall::recvfrom:return {@a[execname,uid]=sum(arg0)} syscall::sendto:return {@b[execname,uid]=sum(arg0)} syscall::open*:entry {@c[execname,uid,copyinstr(arg0),errno]=count()} syscall::execve:return, syscall::posix_spawn:return {@d[execname,uid,ppid]=count()} syscall::fork:return, syscall::vfork:return, syscall::posix_spawn:return /arg0<0/ {@e[execname,uid,arg0]=count()} syscall:::return /errno!=0/ {@f[execname,uid,errno]=count()} io:::wait-start {self->t=timestamp} io:::wait-done /self->t/ { this->T=timestamp - self->t;@g[execname,uid]=sum(this->T);self->t=0;} io:::start {@h[execname,uid]=sum(args[0]->b_bcount)} tick-10sec { normalize(@a,2560000);normalize(@b,2560000);normalize(@c,10);normalize(@d,10);normalize(@e,10);normalize(@f,10);normalize(@g,10000000);normalize(@h,10240);printa(\"1\f%@d\f%s\f%d\n\",@a);printa(\"2\f%@d\f%s\f%d\n\",@b);printa(\"11\f%@d\f%s\f%d\f%s\f%d\n\",@c);printa(\"12\f%@d\f%s\f%d\f%d\n\",@d);printa(\"13\f%@d\f%s\f%d\f%d\n\",@e);printa(\"14\f%@d\f%s\f%d\f%d\n\",@f);printa(\"3\f%@d\f%s\f%d\n\",@g);printa(\"4\f%@d\f%s\f%d\n\",@h);exit(0);} '" '-f -pfc /var/db/r*/'${k[21]}'*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f'$'\f''%Sc'$'\f''%N -t%F {} \;' '/S*/*/Ca*/*xpc*' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' /\ kMDItemContentTypeTree=${k[21]}{bundle,mach-o-dylib} :Label "/p*/e*/{auto*,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {/p*,/usr/local}/e*/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list '-F "" -k Sender hidd -k Level Nle 3' /Library/Preferences/${k[21]}alf\ globalstate --proxy '-n get default' vm.swapusage --dns -get{dnsservers,info} dump-trust-settings\ {-s,-d,} -n1 '-R -ce -l1 -n5 -o'{'prt -stats prt','mem -stats mem'}',command,uid' -kl -l -s\ / '--regexp --files '${k[21]}'pkg.*' '+c0 -i4TCP:0-1023' ${k[21]}dashboard\ layer-gadgets '-d /L*/Mana*/$USER' '-app Safari WebKitDNSPrefetchingEnabled' '-Fcu +c0 -l' -m 'L*/{Con*/*/Data/L*/,}Pref* -type f -size 0c -name *.plist.???????' kern.memorystatus_vm_pressure_level '3>&1 >&- 2>&3' '-F \$Message -k Sender kernel -k Message CReq "'{'n Cause: -','(a und|I/O |jnl_io.+)err|disk.+abo','USBF:.+bus'}'"' -name\ kMDItem${k[33]} -T\ hfs '-n get default' -listnetworkserviceorder :${k[33]} :CFBundleDisplayName $EUID {'$TMPDIR../C ','/{S*/,}'}'L*/{,Co*/*/*/L*/}{Cache,Log}s -type f -size +'${p[11]}'G -exec stat -f%z'$'\f''%N {} \;' \ /v*/d*/*/*l*d{,.*.$UID}/* '-app Safari UserStyleSheetEnabled' 'L*/A*/Fi*/P*/*/a*.json' users/$USER\ HomeDirectory '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' ' -F "\$Time \$(Sender): \$Message" -k Sender Rne "launchd|nsurls" -k Level Nle 3 -k Facility R'{'ne "user|','eq "'}'console" -k Message CRne "[{}<>]|asser|commit - no t|deprec|done |fmfd|Goog|ksho|ndum|obso|realp|rned f|/root|sandbox ex|sudo:" ' getenv '/ "kMDItemDateAdded>=\$time.now(-'${p[23]}')&&kMDItem'${k[33]}'=*"' -m\ / '' ' -F "\$Time \$(RefProc): \$Message" -k Sender Req launchd -k Level Nle 3 -k Message Rne "asse|bug|File ex|hij|Ig|Jet|key is|lid t|Plea|ship" ' print{,-disabled}\ {system,{gui,user}/$UID} '-n1 --show-initial-usage --show-process-energy' -r ' -F "\$Message" -k Sender nsurlstoraged -k Time ge -1h -k Level Nle 4 -k Message Req "^(ER|IN)" ' '~ "kMDItemKind=Package"' );N1=${#c2[@]};for j in {0..20};do c2[N1+j]=SP${k[j]}DataType;done;l=({Restricted\ ,Lock,Pro}files POST Battery {Safari,App,{Bad,Loaded}\ kernel,Firefox}\ extensions System\ load boot\ args FileVault\ {2,1} {Kernel,System,Console,launchd}\ log SMC Login\ hook 'I/O per process' 'High file counts' UID {System,Login,Agent,User}' services '{load,disabl}ed {Admin,Root}\ access Font\ issues Firewall Proxies DNS TCP/IP Wi-Fi 'Elapsed time (sec)' {Root,User}\ crontab {Global,User}' login items' Spotlight Memory\ pressure Listeners Widgets Parental\ Controls Prefetching Nets Volumes {Continuity,I/O,iCloud,HID,HCI}\ errors {User,System}\ caches/logs XPC\ cache Startup\ items Shutdown\ codes Heat Diagnostic\ reports Bad\ {plist,cache}s 'VM (GiB)' Bundles{,' (new)'} Trust\ settings Activity Free\ space Stylesheet Library\ paths{,' ('{shell,launchd}\)} Data\ packages );N3=${#l[@]};for i in {0..8};do l[N3+i]=${k[5+i]};done;F() { local x="${s[$1]}";[[ "$x" =~ ^([\&\|\<\>]|$) ]]&&{ printf "$x";return;};:|${c1[30]} "$x" 2>&-;printf "%s \'%s\'" "|${c1[30+$?]}" "$x";};A0() { Q=6;v[2]=1;id -G|grep -qw 80;v[1]=$?;((v[1]))||{ Q=7;sudo -v;v[2]=$?;((v[2]))||Q=8;};v[3]=`date +%s`;date '+Start time: %T %D%n';printf '\n[Process started]\n\n'>&4;printf 'Revision: %s\n\n' ${p[0]};};A1() { local c="${c1[$1]} ${c2[$2]}";shift 2;c="$c ` while [[ "$1" ]];do F $1;shift;done`";((P2))&&{ c="sudo $c";P2=;};v=`eval "$c"`;[[ "$v" ]];};A2() { local c="${c1[$1]}";[[ "$c" =~ ^(awk|sed ) ]]&&c="$c '${s[$2]}'"||c="$c ${c2[$2]}";shift 2;local d=` while [[ "$1" ]];do F $1;shift;done`;((P2))&&{ c="sudo $c";P2=;};local a;v=` while read a;do eval "$c '$a' $d";done<<<"$v";`;[[ "$v" ]];};A3(){ v=$((`date +%s`-v[3]));};export -f A1 A2 F;B1() { v=No;! ((v[1]))&&{ v=;P1=1;};};eval "`type -a B1|sed '1d;s/1/2/'`";B3(){ v[$1]="$v";};B4() { local i=$1;local j=$2;shift 2;local c="cat` while [[ "$1" ]];do F $1;shift;done`";v[j]=`eval "{ $c;}"<<<"${v[i]}"`;};B5(){ v="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d$'\e' <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F$'\e' ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`egrep -v "${v[$1]}"<<<"$v"|sort`;};eval "`type -a B7|sed '1d;s/7/8/;s/-v //'`";C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { B4 0 0 63&&C1 1 $1;};C4() { echo $'\t'"Part $((++P)) of $Q done at $((`date +%s`-v[3])) sec">&4;};C5() { sudo -k;pbcopy<<<"$o";printf '\n\tThe test results are on the Clipboard.\n\n\tPlease close this window.\n';exit 2>&-;};for i in 1 2;do eval D$((i-1))'() { A'$i' $@;C0;};';for j in 2 3;do eval D$((i+2*j-3))'() { local x=$1;shift;A'$i' $@;C'$j' $x;};';done;done;trap C5 2;o=$({ A0;D0 0 N1+1 2;D0 0 $N1 1;B1;C2 31;B1&&! B2&&C2 32;D2 22 15 63;D0 0 N1+2 3;D0 0 N1+15 17;D4 3 0 N1+3 4;D4 4 0 N1+4 5;D4 N3+4 0 N1+9 59;D0 0 N1+16 99;for i in 0 1 2;do D4 N3+i 0 N1+5+i 6;done;D4 N3+3 0 N1+8 71;D4 62 1 10 7;D4 10 1 11 8;B2&&D4 18 19 53 67;D2 11 2 12 9;D2 12 3 13 10;D2 13 32 70 101 25;D2 71 6 76 13;D2 45 20 52 66;A1 7 77 14;B3 28;A1 20 31 111;B6 0 28 5;B4 0 0 110;C2 66;D4 70 8 15 38;D0 9 16 16 77 45;C4;B2&&D0 35 49 61 75 76 78 45;B2&&{ D0 28 17 45;C4;};B2&&{ A1 43 85 117;B3 29;B4 0 0 119 76 81 45;C0;B4 29 0 118 119 76 82 45;C0;    };D0 12 40 54 16 79 45;D0 12 39 54 16 80 45;D4 74 25 77 15&&{ B4 0 8 103;B4 8 0;A2 18 74;B6 8 0 3;C3 75;};B2&&D4 19 21 0;B2&&D4 40 10 42;D2 2 0 N1+19 46 84;D2 44 34 43 53;D2 59 22 20 32;D2 33 0 N1+14 51;for i in {0..2};do A1 29 35+i 104+i;B3 25+i;done;B6 25 27 5;B6 0 26 5;B4 0 0 110;C2 69;D2 34 21 28 35;D4 35 27 29 36;A1 40 59 120;B3 18;A1 33 60 121;B8 18;B4 0 19 83;A1 27 32 39&&{ B3 20;B4 19 0;A2 33 33 40;B3 21;B6 20 21 3;};C2 36;D4 50 38 5 68;B4 19 0;D5 37 33 34 42;B2&&D4 46 35 45 55;D4 38 0 N1+20 43;B2&&D4 58 4 65 76 91;D4 63 4 19 44 75 95 12;B1&&{ D4 53 5 55 75 69&&D4 51 6 58 31;D4 56 5 56 97 75 98&&D0 0 N1+7 99;D2 55 5 27 84;D4 61 5 54 75 70;D4 14 5 14 96;D4 15 5 72 96;D4 17 5 78 96;C4;};D4 16 5 73 96;A1 13 44 74 18;C4;B3 4;B4 4 0 85;A2 14 61 89;B4 0 5 19 102;A1 17 41 50;B7 5;C3 8;B4 4 0 88;A2 14 24 89;C4;B4 0 6 19 102;B4 4 0 86;A2 14 61 89;B4 0 7 19 102;B5 6 7;B4 0 11 73 102;A1 42 86 114;j=$?;for i in 0 1 2;do ((i==2&&j==1))&&break;((! j))||((i))||B2&&A1 18 $((79+i-(i+53)*j)) 107+8*j 94 74||continue;B7 11;B4 0 0 11;C3 $((23+i*(1+i+2*j)));D4 $((24+i*(1+i+2*j))) 18-4*j 82+i-16*j $((112+((3-i)*i-40*j)/2));done;D4 60 4 21 24;D4 42 14 1 62;D4 43 37 2 90 48;D4 41 10 42;D2 48 36 47 25;A1 4 3 60&&{ B3 9;A2 14 61;B4 0 10 21;B4 9 0;A2 14 62;B4 0 0 21;B6 0 10 4;C3 5;};D4 9 41 69 100;D2 72 21 68 35;D2 49 21 48 49;B4 4 22 57 102;A1 21 46 56 74;B7 22;B4 0 0 58;C3 47;D4 54 5 7 75 76 69;D4 52 5 8 75 76 69;D4 57 4 64 76 91;D2 0 4 4 84;D2 1 4 51 84;D4 21 22 9 37;D0 0 N1+17 108;D4 76 24 88;A1 23 18 28 89;B4 0 16 22 102;A1 16 25 33;B7 16;B4 0 0 34;D1 31 47;D4 64 4 71 41;D4 65 5 87 116 74;C4;B4 4 12 26 89 23 102;for i in {0..3};do A1 0 N1+10+i 72 74;B7 12;B4 0 0 52;C3 N3+5+i;((i))||C4;done;A1 24 22 29;B7 12;B3 14;A2 39 57 30;B3 15;B6 14 15 4;C3 67;A1 24 75 74;B4 1 1 122||B7 12;B4 0 0 123;B3 23;A2 39 57 30;B3 24;B6 23 24 4;C3 68;B4 4 13 27 89 65;A1 24 23;B7 13;C3 73;B4 4 0 87;A2 14 61 89 20;B4 0 17;A1 26 50 64;B7 17;C3 6;D0 0 N1+18 109;D4 7 11 6;A3;C2 39;C4;} 4>&2 2>/dev/null;);C5
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. If you don't know the password, or if you prefer not to enter it, just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, a series of lines will appear in the Terminal window like this:
    [Process started]
            Part 1 of 8 done at … sec
            Part 8 of 8 done at … sec
            The test results are on the Clipboard.
            Please close this window.
    [Process completed]
    The intervals between parts won't be exactly equal, but they give a rough indication of progress. The total number of parts may be different from what's shown here.
    Wait for the final message "Process completed" to appear. If you don't see it within about ten minutes, the test probably won't complete in a reasonable time. In that case, press the key combination control-C or command-period to stop it and go to the next step. You'll have incomplete results, but still something.
    12. When the test is complete, or if you stopped it because it was taking too long, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak for themselves, not for me. The test itself is harmless, but whatever else you're told to do may not be. For others who choose to run it, I don't recommend that you post the test results on this website unless I asked you to.
    Copyright © 2014, 2015 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • [SOLVED] - xset at startup doesn't work

    I use the following command to set my screensaver options
    xset dpms 30 60 300
    After reading the Arch wiki, I found out that this can be made permanent by adding this to the xorg.conf or putting it in ~/.xprofile
    Contents of xorg.conf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder75) Tue Dec 8 21:04:28 PST 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "StandbyTime" "2"
    Option "SuspendTime" "3"
    Option "OffTime" "5"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Dell Inspiron 1520 WXGA+ LCD"
    VendorName "Dell"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoLogo" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/input/mouse0"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "100"
    Option "MinSpeed" "0.06"
    Option "MaxSpeed" "0.12"
    Option "AccelFactor" "0.0010"
    Option "SHMConfig" "on"
    Option "CircularScrolling" "1"
    Option "CircScrollTrigger" "0"
    EndSection
    Section "ServerFlags"
    Option "DontZap" "false"
    Option "BlankTime" "0.1"
    Option "StandbyTime" "0.5"
    Option "SuspendTime" "1"
    Option "OffTime" "5"
    EndSection
    Contents of ~/.xprofile
    xset dpms 30 60 300
    I even added this to crontab
    0 * * * * ~/Wallpapers/change-background-folder.py
    0 * * * * /usr/bin/xset s 30
    0 * * * * /usr/bin/xset dpms 60 120 300
    @reboot ID=screensaver AFTER=2m /usr/bin/xset s 30
    @reboot ID=monitor AFTER=2m /usr/bin/xset dpms 60 120 300
    @reboot ID=vu AFTER=1m vuze
    Still after doing all this, when I give xset q after a reboot, I get
    [theta@boolean-pc ~]$ xset q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000000
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: off 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 30
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 3/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 600 cycle: 600
    Colors:
    default colormap: 0x20 BlackPixel: 0 WhitePixel: 16777215
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi/,/usr/share/fonts/75dpi/,built-ins
    DPMS (Energy Star):
    Standby: 0 Suspend: 0 Off: 0
    DPMS is Enabled
    Monitor is On
    Font cache:
    Server does not have the FontCache Extension
    The parameters are still all 0.
    Please suggest a solution.
    Apoorv
    Last edited by theta (2011-08-02 15:56:06)

    jasonwryan wrote:
    If you have set up your .xinitrc the way karol suggests and it still doesn't work, you could delay it kicking in until X has finished loading
    (sleep 15s && xset dpms 30 60 300) &
    exec yourwm
    That may get around the problem bernarcher describes...
    Thank you! This works very well for me.
    It's the only way I can get it to work.
    For the records, so the smart people can find the problem, here is my xorg.conf:
    Section "ServerLayout"
    Identifier "ServerLayout0"
    Screen 0 "BenQ" 0 0
    #Option "BlankTime" "0"
    Option "StandbyTime" "10"
    Option "SuspendTime" "20"
    Option "OffTime" "30"
    EndSection
    Section "Screen"
    Identifier "BenQ"
    Device "Intel4000"
    Monitor "HDMI2"
    DefaultDepth 24
    SubSection "Display"
    #Depth "24"
    EndSubSection
    EndSection
    Section "Monitor"
    Identifier "HDMI2"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Intel4000"
    Driver "intel"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "sna"
    Option "TearFree" "true"
    EndSection
    # Read and parsed by systemd-localed. It's probably wise not to edit this manually too freely.
    Section "InputClass"
    Identifier "system-keyboard"
    MatchIsKeyboard "on"
    Option "XkbLayout" "se"
    EndSection
    # Catch-all evdev loader for udev-based systems
    # We don't simply match on any device since that also adds accelerometers
    # and other devices that we don't really want to use. The list below
    # matches everything but joysticks.
    Section "InputClass"
    Identifier "evdev pointer catchall"
    MatchIsPointer "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev tablet catchall"
    MatchIsTablet "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchscreen catchall"
    MatchIsTouchscreen "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Xorg seems to not care about my settings in xorg.conf and sets DPMS values to "0":
    $ xset -q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000002
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: on 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 33
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 2/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 0 cycle: 0
    Colors:
    default colormap: 0x22 BlackPixel: 0x0 WhitePixel: 0xffffff
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,built-ins
    DPMS (Energy Star):
    Standby: 0 Suspend: 0 Off: 0
    DPMS is Enabled
    Monitor is On
    And the xorg log:
    [ 17738.153]
    X.Org X Server 1.15.1
    Release Date: 2014-04-13
    [ 17738.194] X Protocol Version 11, Revision 0
    [ 17738.208] Build Operating System: Linux 3.14.0-4-ARCH x86_64
    [ 17738.223] Current Operating System: Linux arch6 3.14.1-1-ARCH #1 SMP PREEMPT Mon Apr 14 20:40:47 CEST 2014 x86_64
    [ 17738.223] Kernel command line: console=tty0 xen-pciback.hide=(01:00.0)(01:00.1)(03:00.0)(02:00.0)(00:14.0)(00:1d.0) root=/dev/VG/Aroot rw
    [ 17738.254] Build Date: 14 April 2014 08:39:09AM
    [ 17738.269]
    [ 17738.285] Current version of pixman: 0.32.4
    [ 17738.314] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 17738.314] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 17738.375] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 29 22:10:19 2014
    [ 17738.390] (==) Using config file: "/etc/X11/xorg.conf"
    [ 17738.406] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 17738.406] (==) ServerLayout "ServerLayout0"
    [ 17738.406] (**) |-->Screen "BenQ" (0)
    [ 17738.406] (**) | |-->Monitor "HDMI2"
    [ 17738.406] (**) | |-->Device "Intel4000"
    [ 17738.406] (**) Option "StandbyTime" "10"
    [ 17738.406] (**) Option "SuspendTime" "20"
    [ 17738.406] (**) Option "OffTime" "30"
    [ 17738.406] (==) Automatically adding devices
    [ 17738.406] (==) Automatically enabling devices
    [ 17738.406] (==) Automatically adding GPU devices
    [ 17738.406] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 17738.406] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 17738.406] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 17738.406] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 17738.406] (II) Loader magic: 0x804c80
    [ 17738.406] (II) Module ABI versions:
    [ 17738.406] X.Org ANSI C Emulation: 0.4
    [ 17738.406] X.Org Video Driver: 15.0
    [ 17738.406] X.Org XInput driver : 20.0
    [ 17738.406] X.Org Server Extension : 8.0
    [ 17738.406] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 17738.408] (--) PCI:*(0:0:2:0) 8086:0162:1458:d000 rev 9, Mem @ 0xf4400000/4194304, 0xc0000000/268435456, I/O @ 0x0000f000/64
    [ 17738.408] (--) PCI: (0:1:0:0) 1002:67b1:1002:0b00 rev 0, Mem @ 0xd0000000/268435456, 0xe0000000/8388608, 0xf4b00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 17738.408] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 17738.424] Initializing built-in extension Generic Event Extension
    [ 17738.439] Initializing built-in extension SHAPE
    [ 17738.454] Initializing built-in extension MIT-SHM
    [ 17738.468] Initializing built-in extension XInputExtension
    [ 17738.482] Initializing built-in extension XTEST
    [ 17738.495] Initializing built-in extension BIG-REQUESTS
    [ 17738.509] Initializing built-in extension SYNC
    [ 17738.523] Initializing built-in extension XKEYBOARD
    [ 17738.536] Initializing built-in extension XC-MISC
    [ 17738.548] Initializing built-in extension SECURITY
    [ 17738.561] Initializing built-in extension XINERAMA
    [ 17738.573] Initializing built-in extension XFIXES
    [ 17738.585] Initializing built-in extension RENDER
    [ 17738.597] Initializing built-in extension RANDR
    [ 17738.608] Initializing built-in extension COMPOSITE
    [ 17738.620] Initializing built-in extension DAMAGE
    [ 17738.631] Initializing built-in extension MIT-SCREEN-SAVER
    [ 17738.643] Initializing built-in extension DOUBLE-BUFFER
    [ 17738.654] Initializing built-in extension RECORD
    [ 17738.665] Initializing built-in extension DPMS
    [ 17738.677] Initializing built-in extension Present
    [ 17738.688] Initializing built-in extension DRI3
    [ 17738.700] Initializing built-in extension X-Resource
    [ 17738.711] Initializing built-in extension XVideo
    [ 17738.722] Initializing built-in extension XVideo-MotionCompensation
    [ 17738.734] Initializing built-in extension XFree86-VidModeExtension
    [ 17738.746] Initializing built-in extension XFree86-DGA
    [ 17738.757] Initializing built-in extension XFree86-DRI
    [ 17738.769] Initializing built-in extension DRI2
    [ 17738.769] (II) "glx" will be loaded by default.
    [ 17738.769] (II) LoadModule: "dri2"
    [ 17738.769] (II) Module "dri2" already built-in
    [ 17738.769] (II) LoadModule: "glamoregl"
    [ 17738.769] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 17738.770] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 17738.770] compiled for 1.15.0, module version = 0.6.0
    [ 17738.770] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 17738.770] (II) LoadModule: "glx"
    [ 17738.770] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 17738.770] (II) Module glx: vendor="X.Org Foundation"
    [ 17738.770] compiled for 1.15.1, module version = 1.0.0
    [ 17738.771] ABI class: X.Org Server Extension, version 8.0
    [ 17738.771] (==) AIGLX enabled
    [ 17738.782] Loading extension GLX
    [ 17738.782] (II) LoadModule: "intel"
    [ 17738.782] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 17738.782] (II) Module intel: vendor="X.Org Foundation"
    [ 17738.783] compiled for 1.15.0, module version = 2.99.911
    [ 17738.783] Module class: X.Org Video Driver
    [ 17738.783] ABI class: X.Org Video Driver, version 15.0
    [ 17738.783] (II) intel: Driver for Intel(R) 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
    [ 17738.783] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 17738.783] (++) using VT number 1
    [ 17738.783] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 17738.783] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    [ 17738.783] (**) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 17738.783] (==) intel(0): RGB weight 888
    [ 17738.783] (==) intel(0): Default visual is TrueColor
    [ 17738.783] (**) intel(0): Option "AccelMethod" "sna"
    [ 17738.783] (**) intel(0): Option "TearFree" "true"
    [ 17738.783] (**) intel(0): Framebuffer tiled
    [ 17738.784] (**) intel(0): Pixmaps tiled
    [ 17738.784] (**) intel(0): "Tear free" enabled
    [ 17738.784] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 17738.784] (II) intel(0): Output VGA1 using monitor section HDMI2
    [ 17738.784] (II) intel(0): Output HDMI1 has no monitor section
    [ 17738.784] (II) intel(0): Output DP1 has no monitor section
    [ 17738.784] (II) intel(0): Output HDMI2 using monitor section HDMI2
    [ 17738.784] (II) intel(0): Output DP2 has no monitor section
    [ 17738.784] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 17738.784] (--) intel(0): Output HDMI2 using initial mode 1920x1080 on pipe 0
    [ 17738.784] (==) intel(0): DPI set to (96, 96)
    [ 17738.784] (II) Loading sub module "dri2"
    [ 17738.784] (II) LoadModule: "dri2"
    [ 17738.784] (II) Module "dri2" already built-in
    [ 17738.784] (==) Depth 24 pixmap format is 32 bpp
    [ 17738.784] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
    [ 17738.784] (==) intel(0): Backing store enabled
    [ 17738.784] (==) intel(0): Silken mouse enabled
    [ 17738.784] (II) intel(0): HW Cursor enabled
    [ 17738.784] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 17738.784] (**) intel(0): DPMS enabled
    [ 17738.784] (II) intel(0): [DRI2] Setup complete
    [ 17738.784] (II) intel(0): [DRI2] DRI driver: i965
    [ 17738.784] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 17738.784] (II) intel(0): direct rendering: DRI2 Enabled
    [ 17738.784] (==) intel(0): hotplug detection: "enabled"
    [ 17738.784] (--) RandR disabled
    [ 17738.789] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 17738.789] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 17738.789] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 17738.789] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 17738.789] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 17738.789] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 17738.789] (II) AIGLX: Loaded and initialized i965
    [ 17738.789] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 17738.791] (II) intel(0): switch to mode [email protected] on HDMI2 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 17738.801] (II) intel(0): Setting screen physical size to 508 x 285
    [ 17738.839] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 17738.839] (**) Power Button: Applying InputClass "system-keyboard"
    [ 17738.839] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 17738.839] (II) LoadModule: "evdev"
    [ 17738.839] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 17738.840] (II) Module evdev: vendor="X.Org Foundation"
    [ 17738.840] compiled for 1.15.0, module version = 2.8.2
    [ 17738.840] Module class: X.Org XInput Driver
    [ 17738.840] ABI class: X.Org XInput driver, version 20.0
    [ 17738.840] (II) Using input driver 'evdev' for 'Power Button'
    [ 17738.840] (**) Power Button: always reports core events
    [ 17738.840] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 17738.840] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 17738.840] (--) evdev: Power Button: Found keys
    [ 17738.840] (II) evdev: Power Button: Configuring as keyboard
    [ 17738.840] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 17738.840] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 17738.840] (**) Option "xkb_rules" "evdev"
    [ 17738.840] (**) Option "xkb_model" "pc104"
    [ 17738.840] (**) Option "xkb_layout" "se"
    [ 17738.870] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 17738.870] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 17738.870] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 17738.870] (II) Using input driver 'evdev' for 'Video Bus'
    [ 17738.870] (**) Video Bus: always reports core events
    [ 17738.870] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 17738.871] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 17738.871] (--) evdev: Video Bus: Found keys
    [ 17738.871] (II) evdev: Video Bus: Configuring as keyboard
    [ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input2/event2"
    [ 17738.871] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 17738.871] (**) Option "xkb_rules" "evdev"
    [ 17738.871] (**) Option "xkb_model" "pc104"
    [ 17738.871] (**) Option "xkb_layout" "se"
    [ 17738.871] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 17738.871] (**) Power Button: Applying InputClass "system-keyboard"
    [ 17738.871] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 17738.871] (II) Using input driver 'evdev' for 'Power Button'
    [ 17738.871] (**) Power Button: always reports core events
    [ 17738.871] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 17738.871] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 17738.871] (--) evdev: Power Button: Found keys
    [ 17738.871] (II) evdev: Power Button: Configuring as keyboard
    [ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 17738.871] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 17738.871] (**) Option "xkb_rules" "evdev"
    [ 17738.871] (**) Option "xkb_model" "pc104"
    [ 17738.871] (**) Option "xkb_layout" "se"
    [ 17738.871] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event3)
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
    [ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
    [ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event3"
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
    [ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/0003:045E:0750.0001/input/input5/event3"
    [ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 9)
    [ 17738.872] (**) Option "xkb_rules" "evdev"
    [ 17738.872] (**) Option "xkb_model" "pc104"
    [ 17738.872] (**) Option "xkb_layout" "se"
    [ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event4)
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
    [ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
    [ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event4"
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Using mtdev for this device
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found 1 mouse buttons
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found scroll wheel(s)
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found relative axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute multitouch axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found x and y absolute axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Forcing relative x/y axes to exist.
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as mouse
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Adding scrollwheel support
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: YAxisMapping: buttons 4 and 5
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.1/0003:045E:0750.0002/input/input6/event4"
    [ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 10)
    [ 17738.872] (**) Option "xkb_rules" "evdev"
    [ 17738.872] (**) Option "xkb_model" "pc104"
    [ 17738.872] (**) Option "xkb_layout" "se"
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: initialized for relative axes.
    [ 17738.873] (WW) evdev: Microsoft Wired Keyboard 600: ignoring absolute axes.
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) keeping acceleration scheme 1
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration profile 0
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration factor: 2.000
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration threshold: 4
    [ 17738.873] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/js0)
    [ 17738.873] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.873] (II) No input driver specified, ignoring this device.
    [ 17738.873] (II) This device may have been added with another device file.
    [ 17738.873] (II) config/udev: Adding input device A..... G3 (/dev/input/event5)
    [ 17738.873] (**) A..... G3: Applying InputClass "evdev pointer catchall"
    [ 17738.873] (II) Using input driver 'evdev' for 'A..... G3'
    [ 17738.873] (**) A..... G3: always reports core events
    [ 17738.873] (**) evdev: A..... G3: Device: "/dev/input/event5"
    [ 17738.873] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
    [ 17738.873] (--) evdev: A..... G3: Found 12 mouse buttons
    [ 17738.873] (--) evdev: A..... G3: Found scroll wheel(s)
    [ 17738.873] (--) evdev: A..... G3: Found relative axes
    [ 17738.873] (--) evdev: A..... G3: Found x and y relative axes
    [ 17738.873] (II) evdev: A..... G3: Configuring as mouse
    [ 17738.873] (II) evdev: A..... G3: Adding scrollwheel support
    [ 17738.873] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
    [ 17738.873] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.873] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/0003:E0FF:0002.0003/input/input7/event5"
    [ 17738.873] (II) XINPUT: Adding extended input device "A..... G3" (type: MOUSE, id 11)
    [ 17738.873] (II) evdev: A..... G3: initialized for relative axes.
    [ 17738.873] (**) A..... G3: (accel) keeping acceleration scheme 1
    [ 17738.873] (**) A..... G3: (accel) acceleration profile 0
    [ 17738.873] (**) A..... G3: (accel) acceleration factor: 2.000
    [ 17738.873] (**) A..... G3: (accel) acceleration threshold: 4
    [ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/mouse0)
    [ 17738.874] (II) No input driver specified, ignoring this device.
    [ 17738.874] (II) This device may have been added with another device file.
    [ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/event6)
    [ 17738.874] (**) A..... G3: Applying InputClass "system-keyboard"
    [ 17738.874] (**) A..... G3: Applying InputClass "evdev keyboard catchall"
    [ 17738.874] (II) Using input driver 'evdev' for 'A..... G3'
    [ 17738.874] (**) A..... G3: always reports core events
    [ 17738.874] (**) evdev: A..... G3: Device: "/dev/input/event6"
    [ 17738.874] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
    [ 17738.874] (--) evdev: A..... G3: Found 1 mouse buttons
    [ 17738.874] (--) evdev: A..... G3: Found scroll wheel(s)
    [ 17738.874] (--) evdev: A..... G3: Found relative axes
    [ 17738.874] (II) evdev: A..... G3: Forcing relative x/y axes to exist.
    [ 17738.874] (--) evdev: A..... G3: Found absolute axes
    [ 17738.874] (II) evdev: A..... G3: Forcing absolute x/y axes to exist.
    [ 17738.874] (--) evdev: A..... G3: Found keys
    [ 17738.874] (II) evdev: A..... G3: Configuring as mouse
    [ 17738.874] (II) evdev: A..... G3: Configuring as keyboard
    [ 17738.874] (II) evdev: A..... G3: Adding scrollwheel support
    [ 17738.874] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
    [ 17738.874] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.874] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1/0003:E0FF:0002.0004/input/input8/event6"
    [ 17738.874] (II) XINPUT: Adding extended input device "A..... G3" (type: KEYBOARD, id 12)
    [ 17738.874] (**) Option "xkb_rules" "evdev"
    [ 17738.874] (**) Option "xkb_model" "pc104"
    [ 17738.874] (**) Option "xkb_layout" "se"
    [ 17738.874] (II) evdev: A..... G3: initialized for relative axes.
    [ 17738.874] (WW) evdev: A..... G3: ignoring absolute axes.
    [ 17738.874] (**) A..... G3: (accel) keeping acceleration scheme 1
    [ 17738.874] (**) A..... G3: (accel) acceleration profile 0
    [ 17738.874] (**) A..... G3: (accel) acceleration factor: 2.000
    [ 17738.874] (**) A..... G3: (accel) acceleration threshold: 4
    [ 17738.874] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event13)
    [ 17738.874] (II) No input driver specified, ignoring this device.
    [ 17738.874] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event12)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event11)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event10)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event9)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event8)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event7)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17738.876] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event14)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17738.876] (II) config/udev: Adding input device PC Speaker (/dev/input/event15)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17739.315] (II) intel(0): EDID vendor "BNQ", prod id 32517
    [ 17739.315] (II) intel(0): Using EDID range info for horizontal sync
    [ 17739.315] (II) intel(0): Using EDID range info for vertical refresh
    [ 17739.315] (II) intel(0): Printing DDC gathered Modelines:
    [ 17739.315] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 17739.315] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 17739.315] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 17739.315] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 17739.316] (II) intel(0): Modeline "640x480"x100.0 43.16 640 680 744 848 480 481 484 509 -hsync +vsync (50.9 kHz e)
    [ 17739.316] (II) intel(0): Modeline "640x480"x120.0 52.41 640 680 744 848 480 481 484 515 -hsync +vsync (61.8 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x100.0 68.18 800 848 936 1072 600 601 604 636 -hsync +vsync (63.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x0.0 73.25 800 848 880 960 600 603 607 636 +hsync -vsync (76.3 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1024x768"x100.0 113.31 1024 1096 1208 1392 768 769 772 814 -hsync +vsync (81.4 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1024x768"x0.0 115.50 1024 1072 1104 1184 768 771 775 813 +hsync -vsync (97.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x900"x0.0 182.75 1440 1488 1520 1600 900 903 909 953 +hsync -vsync (114.2 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x60.0 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync (67.1 kHz e)
    [ 17739.316] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x240"x0.0 27.00 1440 1478 1602 1716 240 244 247 262 -hsync -vsync (15.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x288"x0.0 27.00 1440 1464 1590 1728 288 290 293 312 -hsync -vsync (15.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
    It would be nice to find out why the settings was being set to "0".
    Last edited by Sne (2014-04-29 20:40:50)

Maybe you are looking for

  • I cannot continue to windows 7 64 bit setup after i make partition in boot camp

    i get black screen after i make partition through bootcamp and pc restarts. i tried keeping ALT option to boot from DVD but still the same. i booted from OSX and i can see BOOTCAMP drive but i dont see it in my STARTUP drives. ?

  • How to Reset Password of User while not connected to Domain using Local Admin Account

    How to Reset Password of User while not connected to the Domain using Local Admin Account (I have the use of a local admin account), and I want to help a user reset their password who has logged in the PC and had their credentials cached, but forgot

  • Sawtooth KP on video files

    I have this old mac setup for my folks to view some video. Lately this mac has been giving me Kernel Panic whenever I try to view any view with Quictime/VLC. The apps will either quit itself or KP the system. Here's my log: Mon Dec 3 21:14:04 2007 Un

  • Inforecord in mandatory in scheduling agreement

    Coul some tel me how to make the inforecord mandatory in scheduling agreement . though i have controlled or made the inforecor fiels as required in field selection it is not asking for inforecord while creating scheduling agreemnt could some one tel

  • Series in chart Gantt

    Hi there I require to make a gantt chart but when you attach the data type DateTime series, do not take into account the graph. What format should wear?