Can not find data in virtual cube

Experts,
I can not find data in virtual cube with services function module (copying Z_RS_BCT_FIGL_DATA_GET_VC10 from RS_BCT_FIGL_DATA_GET_VC10).The standard cube is maintained with data.
Can anybody tell me what could be the reasons the data is coming through Virtua cube.
Thanks,
AK

Hi,
i_basic_infoprov is the name of the provider where the data is selected from. This must be a basic provider that contains data. What I meant was, create a copy of fm RS_BCT_FIGL_DATA_GET_VC,1 maybe as Z_BCT_FIGL_DATA_GET_VC1, and enter the name of this fm in the properties of your virtual cube. For that fm it might also be a good idea to enter a default value for i_infoprov. And this should be the name of your virtual cube.
regards
Siggi

Similar Messages

  • Data loaded successfully in RSA3, but can not find data in BW PSA

    Dear all:
    We have custom datasource enhanced through BADI. For one column, in the source system RSA3, I can see this field populated with data, but in BW, when I load the data in PSA and check, this field is blank...
    I tried seeral ways like re-replicate datasource, delete the datasource in BW and re-replicate, but not work.
    Did anybody meet the same situation before? How to handle this issue?
    Any post would be appreciated and thank you all in advance!
    Tim

    Hi Pavan:
    Thanks for your reply.
    I don't have any selection field for this datasource, and the number between ECC and BW matches. Actually the problem is only for one field, on ECC side RSA3, this field are populated with values, while in BW PSA, this column is there, but all the content are blank.
    I do call one function module called to populate that field:
    CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
          EXPORTING
          CLASS                      = ''
            CLASSTEXT                  = 'X'
            CLASSTYPE                  = '023'
          CLINT                      = 0
            FEATURES                   = 'X'
            LANGUAGE                   = SY-LANGU
            OBJECT                     = W_OBJECT
            OBJECTTABLE                = 'MCH1'
            KEY_DATE                   = SY-DATUM
            INITIAL_CHARACT            = 'X'
          NO_VALUE_DESCRIPT          =
            CHANGE_SERVICE_CLF         = 'X'
          INHERITED_CHAR             = ' '
          CHANGE_NUMBER              = ' '
          TABLES
            T_CLASS                    = ITAB_CLASS
            T_OBJECTDATA               = ITAB_OBJECTDATA
          I_SEL_CHARACTERISTIC       =
          T_NO_AUTH_CHARACT          =
          EXCEPTIONS
            NO_CLASSIFICATION          = 1
            NO_CLASSTYPES              = 2
            INVALID_CLASS_TYPE         = 3
            OTHERS                     = 4
        IF ITAB_OBJECTDATA IS NOT INITIAL.
           READ TABLE ITAB_OBJECTDATA INTO wa_OBJECTDATA WITH KEY atnam = 'ZLOBM_PLNTMFG'.
           <LS_ESMI_BW_MD_ZBATC0001>-ZORIGPLNT = wa_OBJECTDATA-AUSP1.
        ENDIF.
    The code is very simple, it just call the standard FM and fetch the value from the return table, is there any thing wrong with my code?
    Thanks!
    Tim

  • RMAN duplicate target using set until telling me it can not find data files

    I have RMAN scripts that I use freqently to clone a database from DB (production) to another (non-prod). These work just fine. I use the set until so that I can tell it at what point I want the new DB to be created from the backups of the source.
    I had a request to go back a few weeks and the backup files (I do compressed backups to disk) were on tape. I had my backup person restore my backup directory for the source DB as it looked on a certain day (May 28). I have an 8 day retention policy and so the backup files that were restored showed files all the way back to 5/20 ( includes the point I want to use in my set until clause).
    However, whenever I try to execute the rman clone, it tells me for each datafile:
    RMAN-06023: no backup or copy of datafile 1 found to restore
    Like I said, I am able to do this for a current backup that is on disk. I moved the backup files to the source db server and it works fine. However, from these files restored from tape it errors.
    Here is the RMAN script:
    spool log to c:\temp\clone_CSPROD_CSPRSUM1.log;
    #connect to catalog <catalog info>
    # target is the source and auxiliary is destination
    #connect target <put in source info here>
    #connect auxiliary /
    run {
    allocate auxiliary channel d1 type disk format 'F:\backups\CSPROD\d1\CSPROD_DATA_%s';
    allocate auxiliary channel d2 type disk format 'F:\backups\CSPROD\d2\CSPROD_DATA_%s';
    allocate auxiliary channel d3 type disk format 'F:\backups\CSPROD\d3\CSPROD_DATA_%s';
    allocate auxiliary channel d4 type disk format 'F:\backups\CSPROD\d4\CSPROD_DATA_%s';
    allocate auxiliary channel a1 type disk format 'F:\backups\CSPROD\a1\CSPROD_arch_%s';
    ##Archivelog number get from sql archive log list command
    #set until sequence 831;
    set until time "to_date('2011-05-25 08:00:00', 'YYYY-MM-DD HH24:MI:SS')";
    duplicate target database to CSPRSUM1 nofilenamecheck
    logfile
    group 1('+DATA/CSPRSUM1/onlinelog/redo1a.log', '+FRA/CSPRSUM1/onlinelog/redo1b.log') size 50m,
    group 2('+DATA/CSPRSUM1/onlinelog/redo2a.log', '+FRA/CSPRSUM1/onlinelog/redo2b.log') size 50m,
    group 3('+DATA/CSPRSUM1/onlinelog/redo3a.log', '+FRA/CSPRSUM1/onlinelog/redo3b.log') size 50m;
    Exit
    Here is the output:
    Spooling started in log file: c:\temp\clone_CSPROD_CSPRSUM1.log
    Recovery Manager11.1.0.7.0
    RMAN> #connect catalog <redacted info>>
    2> # target is the source and auxiliary is destination
    3> #connect target <redacted info>
    4> #connect auxiliary /
    5>
    6> run {
    7> allocate auxiliary channel d1 type disk format 'F:\backups\CSPROD\d1\CSPROD_DATA_%s';
    8> allocate auxiliary channel d2 type disk format 'F:\backups\CSPROD\d2\CSPROD_DATA_%s';
    9> allocate auxiliary channel d3 type disk format 'F:\backups\CSPROD\d3\CSPROD_DATA_%s';
    10> allocate auxiliary channel d4 type disk format 'F:\backups\CSPROD\d4\CSPROD_DATA_%s';
    11> allocate auxiliary channel a1 type disk format 'F:\backups\CSPROD\a1\CSPROD_arch_%s';
    12> ##Archivelog number get from sql archive log list command
    13> #set until sequence 831;
    14> set until time "to_date('2011-05-25 08:00:00', 'YYYY-MM-DD HH24:MI:SS')";
    15> duplicate target database to CSPRSUM1 nofilenamecheck
    16> logfile
    17> group 1('+DATA/CSPRSUM1/onlinelog/redo1a.log', '+FRA/CSPRSUM1/onlinelog/redo1b.log') size 50m,
    18> group 2('+DATA/CSPRSUM1/onlinelog/redo2a.log', '+FRA/CSPRSUM1/onlinelog/redo2b.log') size 50m,
    19> group 3('+DATA/CSPRSUM1/onlinelog/redo3a.log', '+FRA/CSPRSUM1/onlinelog/redo3b.log') size 50m;
    20> }
    starting full resync of recovery catalog
    full resync complete
    allocated channel: d1
    channel d1: SID=534 device type=DISK
    allocated channel: d2
    channel d2: SID=533 device type=DISK
    allocated channel: d3
    channel d3: SID=532 device type=DISK
    allocated channel: d4
    channel d4: SID=531 device type=DISK
    allocated channel: a1
    channel a1: SID=530 device type=DISK
    executing command: SET until clause
    Starting Duplicate Db at 15-JUN-11
    RMAN-05529: WARNING: DB_FILE_NAME_CONVERT resulted in invalid ASM names; names changed to disk group only.
    contents of Memory Script:
    set until scn 260398799;
    set newname for datafile 1 to
    "+data";
    set newname for datafile 2 to
    "+data";
    set newname for datafile 3 to
    "+data";
    set newname for datafile 4 to
    "+data";
    set newname for datafile 5 to
    "+data";
    set newname for datafile 6 to
    "+data";
    set newname for datafile 7 to
    "+data";
    set newname for datafile 8 to
    "+data";
    set newname for datafile 9 to
    "+data";
    set newname for datafile 10 to
    "+data";
    set newname for datafile 11 to
    "+data";
    set newname for datafile 12 to
    "+data";
    set newname for datafile 13 to
    "+data";
    set newname for datafile 14 to
    "+data";
    set newname for datafile 15 to
    "+data";
    set newname for datafile 16 to
    "+data";
    set newname for datafile 17 to
    "+data";
    set newname for datafile 18 to
    "+data";
    set newname for datafile 19 to
    "+data";
    set newname for datafile 20 to
    "+data";
    set newname for datafile 21 to
    "+data";
    set newname for datafile 22 to
    "+data";
    set newname for datafile 23 to
    "+data";
    set newname for datafile 24 to
    "+data";
    set newname for datafile 25 to
    "+data";
    set newname for datafile 26 to
    "+data";
    set newname for datafile 27 to
    "+data";
    set newname for datafile 28 to
    "+data";
    set newname for datafile 29 to
    "+data";
    set newname for datafile 30 to
    "+data";
    set newname for datafile 31 to
    "+data";
    set newname for datafile 32 to
    "+data";
    set newname for datafile 33 to
    "+data";
    set newname for datafile 34 to
    "+data";
    set newname for datafile 35 to
    "+data";
    set newname for datafile 36 to
    "+data";
    set newname for datafile 37 to
    "+data";
    set newname for datafile 38 to
    "+data";
    set newname for datafile 39 to
    "+data";
    set newname for datafile 40 to
    "+data";
    set newname for datafile 41 to
    "+data";
    set newname for datafile 42 to
    "+data";
    set newname for datafile 43 to
    "+data";
    set newname for datafile 44 to
    "+data";
    set newname for datafile 45 to
    "+data";
    set newname for datafile 46 to
    "+data";
    set newname for datafile 47 to
    "+data";
    set newname for datafile 48 to
    "+data";
    set newname for datafile 49 to
    "+data";
    set newname for datafile 50 to
    "+data";
    set newname for datafile 51 to
    "+data";
    set newname for datafile 52 to
    "+data";
    set newname for datafile 53 to
    "+data";
    set newname for datafile 54 to
    "+data";
    set newname for datafile 55 to
    "+data";
    set newname for datafile 56 to
    "+data";
    set newname for datafile 57 to
    "+data";
    set newname for datafile 58 to
    "+data";
    set newname for datafile 59 to
    "+data";
    set newname for datafile 60 to
    "+data";
    set newname for datafile 61 to
    "+data";
    set newname for datafile 62 to
    "+data";
    set newname for datafile 63 to
    "+data";
    set newname for datafile 64 to
    "+data";
    set newname for datafile 65 to
    "+data";
    set newname for datafile 66 to
    "+data";
    set newname for datafile 67 to
    "+data";
    set newname for datafile 68 to
    "+data";
    set newname for datafile 69 to
    "+data";
    set newname for datafile 70 to
    "+data";
    set newname for datafile 71 to
    "+data";
    set newname for datafile 72 to
    "+data";
    set newname for datafile 73 to
    "+data";
    set newname for datafile 74 to
    "+data";
    set newname for datafile 75 to
    "+data";
    set newname for datafile 76 to
    "+data";
    set newname for datafile 77 to
    "+data";
    set newname for datafile 78 to
    "+data";
    set newname for datafile 79 to
    "+data";
    set newname for datafile 80 to
    "+data";
    set newname for datafile 81 to
    "+data";
    set newname for datafile 82 to
    "+data";
    set newname for datafile 83 to
    "+data";
    set newname for datafile 84 to
    "+data";
    set newname for datafile 85 to
    "+data";
    set newname for datafile 86 to
    "+data";
    set newname for datafile 87 to
    "+data";
    set newname for datafile 88 to
    "+data";
    set newname for datafile 89 to
    "+data";
    set newname for datafile 90 to
    "+data";
    set newname for datafile 91 to
    "+data";
    set newname for datafile 92 to
    "+data";
    set newname for datafile 93 to
    "+data";
    set newname for datafile 94 to
    "+data";
    set newname for datafile 95 to
    "+data";
    set newname for datafile 96 to
    "+data";
    set newname for datafile 97 to
    "+data";
    set newname for datafile 98 to
    "+data";
    set newname for datafile 99 to
    "+data";
    set newname for datafile 100 to
    "+data";
    set newname for datafile 101 to
    "+data";
    set newname for datafile 102 to
    "+data";
    set newname for datafile 103 to
    "+data";
    set newname for datafile 104 to
    "+data";
    set newname for datafile 105 to
    "+data";
    set newname for datafile 106 to
    "+data";
    set newname for datafile 107 to
    "+data";
    set newname for datafile 108 to
    "+data";
    set newname for datafile 109 to
    "+data";
    set newname for datafile 110 to
    "+data";
    set newname for datafile 111 to
    "+data";
    set newname for datafile 112 to
    "+data";
    set newname for datafile 113 to
    "+data";
    set newname for datafile 114 to
    "+data";
    set newname for datafile 115 to
    "+data";
    set newname for datafile 116 to
    "+data";
    set newname for datafile 117 to
    "+data";
    set newname for datafile 118 to
    "+data";
    set newname for datafile 119 to
    "+data";
    set newname for datafile 120 to
    "+data";
    set newname for datafile 121 to
    "+data";
    set newname for datafile 122 to
    "+data";
    restore
    clone database
    executing Memory Script
    executing command: SET until clause
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting restore at 15-JUN-11
    released channel: d1
    released channel: d2
    released channel: d3
    released channel: d4
    released channel: a1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/15/2011 11:21:42
    RMAN-01005: not all datafiles have backups that can be recovered to scn 260398799
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 122 found to restore
    RMAN-06023: no backup or copy of datafile 121 found to restore
    RMAN-06023: no backup or copy of datafile 120 found to restore
    RMAN-06023: no backup or copy of datafile 119 found to restore
    RMAN-06023: no backup or copy of datafile 118 found to restore
    RMAN-06023: no backup or copy of datafile 117 found to restore
    RMAN-06023: no backup or copy of datafile 116 found to restore
    RMAN-06023: no backup or copy of datafile 115 found to restore
    RMAN-06023: no backup or copy of datafile 114 found to restore
    RMAN-06023: no backup or copy of datafile 113 found to restore
    RMAN-06023: no backup or copy of datafile 112 found to restore
    RMAN-06023: no backup or copy of datafile 111 found to restore
    RMAN-06023: no backup or copy of datafile 110 found to restore
    RMAN-06023: no backup or copy of datafile 109 found to restore
    RMAN-06023: no backup or copy of datafile 108 found to restore
    RMAN-06023: no backup or copy of datafile 107 found to restore
    RMAN-06023: no backup or copy of datafile 106 found to restore
    RMAN-06023: no backup or copy of datafile 105 found to restore
    RMAN-06023: no backup or copy of datafile 104 found to restore
    RMAN-06023: no backup or copy of datafile 103 found to restore
    RMAN-06023: no backup or copy of datafile 102 found to restore
    RMAN-06023: no backup or copy of datafile 101 found to restore
    RMAN-06023: no backup or copy of datafile 100 found to restore
    RMAN-06023: no backup or copy of datafile 99 found to restore
    RMAN-06023: no backup or copy of datafile 98 found to restore
    RMAN-06023: no backup or copy of datafile 97 found to restore
    RMAN-06023: no backup or copy of datafile 96 found to restore
    RMAN-06023: no backup or copy of datafile 95 found to restore
    RMAN-06023: no backup or copy of datafile 94 found to restore
    RMAN-06023: no backup or copy of datafile 93 found to restore
    RMAN-06023: no backup or copy of datafile 92 found to restore
    RMAN-06023: no backup or copy of datafile 91 found to restore
    RMAN-06023: no backup or copy of datafile 90 found to restore
    RMAN-06023: no backup or copy of datafile 89 found to restore
    RMAN-06023: no backup or copy of datafile 88 found to restore
    RMAN-06023: no backup or copy of datafile 87 found to restore
    RMAN-06023: no backup or copy of datafile 86 found to restore
    RMAN-06023: no backup or copy of datafile 85 found to restore
    RMAN-06023: no backup or copy of datafile 84 found to restore
    RMAN-06023: no backup or copy of datafile 83 found to restore
    RMAN-06023: no backup or copy of datafile 82 found to restore
    RMAN-06023: no backup or copy of datafile 81 found to restore
    RMAN-06023: no backup or copy of datafile 80 found to restore
    RMAN-06023: no backup or copy of datafile 79 found to restore
    RMAN-06023: no backup or copy of datafile 78 found to restore
    RMAN-06023: no backup or copy of datafile 77 found to restore
    RMAN-06023: no backup or copy of datafile 76 found to restore
    RMAN-06023: no backup or copy of datafile 75 found to restore
    RMAN-06023: no backup or copy of datafile 74 found to restore
    RMAN-06023: no backup or copy of datafile 73 found to restore
    RMAN-06023: no backup or copy of datafile 72 found to restore
    RMAN-06023: no backup or copy of datafile 71 found to restore
    RMAN-06023: no backup or copy of datafile 70 found to restore
    RMAN-06023: no backup or copy of datafile 69 found to restore
    RMAN-06023: no backup or copy of datafile 68 found to restore
    RMAN-06023: no backup or copy of datafile 67 found to restore
    RMAN-06023: no backup or copy of datafile 66 found to restore
    RMAN-06023: no backup or copy of datafile 65 found to restore
    RMAN-06023: no backup or copy of datafile 64 found to restore
    RMAN-06023: no backup or copy of datafile 63 found to restore
    RMAN-06023: no backup or copy of datafile 62 found to restore
    RMAN-06023: no backup or copy of datafile 61 found to restore
    RMAN-06023: no backup or copy of datafile 60 found to restore
    RMAN-06023: no backup or copy of datafile 59 found to restore
    RMAN-06023: no backup or copy of datafile 58 found to restore
    RMAN-06023: no backup or copy of datafile 57 found to restore
    RMAN-06023: no backup or copy of datafile 56 found to restore
    RMAN-06023: no backup or copy of datafile 55 found to restore
    RMAN-06023: no backup or copy of datafile 54 found to restore
    RMAN-06023: no backup or copy of datafile 53 found to restore
    RMAN-06023: no backup or copy of datafile 52 found to restore
    RMAN-06023: no backup or copy of datafile 51 found to restore
    RMAN-06023: no backup or copy of datafile 50 found to restore
    RMAN-06023: no backup or copy of datafile 49 found to restore
    RMAN-06023: no backup or copy of datafile 48 found to restore
    RMAN-06023: no backup or copy of datafile 47 found to restore
    RMAN-06023: no backup or copy of datafile 46 found to restore
    RMAN-06023: no backup or copy of datafile 45 found to restore
    RMAN-06023: no backup or copy of datafile 44 found to restore
    RMAN-06023: no backup or copy of datafile 43 found to restore
    RMAN-06023: no backup or copy of datafile 42 found to restore
    RMAN-06023: no backup or copy of datafile 41 found to restore
    RMAN-06023: no backup or copy of datafile 40 found to restore
    RMAN-06023: no backup or copy of datafile 39 found to restore
    RMAN-06023: no backup or copy of datafile 38 found to restore
    RMAN-06023: no backup or copy of datafile 37 found to restore
    RMAN-06023: no backup or copy of datafile 36 found to restore
    RMAN-06023: no backup or copy of datafile 35 found to restore
    RMAN-06023: no backup or copy of datafile 34 found to restore
    RMAN-06023: no backup or copy of datafile 33 found to restore
    RMAN-06023: no backup or copy of datafile 32 found to restore
    RMAN-06023: no backup or copy of datafile 31 found to restore
    RMAN-06023: no backup or copy of datafile 30 found to restore
    RMAN-06023: no backup or copy of datafile 29 found to restore
    RMAN-06023: no backup or copy of datafile 28 found to restore
    RMAN-06023: no backup or copy of datafile 27 found to restore
    RMAN-06023: no backup or copy of datafile 26 found to restore
    RMAN-06023: no backup or copy of datafile 25 found to restore
    RMAN-06023: no backup or copy of datafile 24 found to restore
    RMAN-06023: no backup or copy of datafile 23 found to restore
    RMAN-06023: no backup or copy of datafile 22 found to restore
    RMAN-06023: no backup or copy of datafile 21 found to restore
    RMAN-06023: no backup or copy of datafile 20 found to restore
    RMAN-06023: no backup or copy of datafile 19 found to restore
    RMAN-06023: no backup or copy of datafile 18 found to restore
    RMAN-06023: no backup or copy of datafile 17 found to restore
    RMAN-06023: no backup or copy of datafile 16 found to restore
    RMAN-06023: no backup or copy of datafile 15 found to restore
    RMAN-06023: no backup or copy of datafile 14 found to restore
    RMAN-06023: no backup or copy of datafile 13 found to restore
    RMAN-06023: no backup or copy of datafile 12 found to restore
    RMAN-06023: no backup or copy of datafile 11 found to restore
    RMAN-06023: no backup or copy of datafile 10 found to restore
    RMAN-06023: no backup or copy of datafile 9 found to restore
    RMAN-06023: no backup or copy of datafile 8 found to restore
    RMAN-06023: no backup or copy of datafile 7 found to restore
    RMAN-06023: no backup or copy of datafile 6 found to restore
    RMAN-06023: no backup or copy of datafile 5 found to restore
    RMAN-06023: no backup or copy of datafile 4 found to restore
    RMAN-06023: no backup or copy of datafile 3 found to restore
    RMAN-06023: no backup or copy of datafile 2 found to restore
    RMAN-06023: no backup or copy of datafile 1 found to restore
    RMAN> Exit
    Recovery Manager complete.
    Edited by: kerrygm on Jun 15, 2011 11:36 AM

    Maybe making progress.
    I got into RMAN and did a List backup command. In looking at the output, I see that it does have the 5/20 backup showing. Here is part of the output:
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    965689 Full 19.86M DISK 00:00:01 16-JUN-11
    BP Key: 967942 Status: AVAILABLE Compressed: NO Tag: TAG20110616T231223
    Piece Name: F:\BACKUPS\CSPROD\C-368871413-20110616-01
    SPFILE Included: Modification time: 16-JUN-11
    SPFILE db_unique_name: CSPROD
    Control File Included: Ckp SCN: 369596068 Ckp time: 16-JUN-11
    BS Key Size Device Type Elapsed Time Completion Time
    966218 403.84M DISK 00:00:00 20-MAY-11
    BP Key: 967842 Status: AVAILABLE Compressed: YES Tag: TAG20110520T231012
    Piece Name: F:\BACKUPS\CSPROD\A1\CSPROD_ARCH_5844
    List of Archived Logs in backup set 966218
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 2112 237027300 20-MAY-11 237046947 20-MAY-11
    1 2113 *237046947* 20-MAY-11 237059284 20-MAY-11
    1 2114 237059284 20-MAY-11 237216514 20-MAY-11
    1 2115 237216514 20-MAY-11 237709545 20-MAY-11
    1 2116 237709545 20-MAY-11 237722825 20-MAY-11
    1 2117 237722825 20-MAY-11 237730431 20-MAY-11
    1 2118 237730431 20-MAY-11 237860199 20-MAY-11
    I then changed my rman script to use the *237046947* SCN number that says it is from 5/20. I them kicked off my rman script and got the following result.
    Spooling started in log file: c:\temp\clone_CSPROD_CSPRSUM1.log
    Recovery Manager11.1.0.7.0
    RMAN> #connect catalog 'rmancat/rmancat@rmancat';
    2> # target is the source and auxiliary is destination
    3> #connect target sys/<pwd>@csprod
    4> #connect auxiliary /
    5>
    6> run {
    7> allocate auxiliary channel d1 type disk format 'F:\backups\CSPROD\d1\CSPROD_DATA_%s';
    8> allocate auxiliary channel d2 type disk format 'F:\backups\CSPROD\d2\CSPROD_DATA_%s';
    9> allocate auxiliary channel d3 type disk format 'F:\backups\CSPROD\d3\CSPROD_DATA_%s';
    10> allocate auxiliary channel d4 type disk format 'F:\backups\CSPROD\d4\CSPROD_DATA_%s';
    11> allocate auxiliary channel a1 type disk format 'F:\backups\CSPROD\a1\CSPROD_arch_%s';
    12> ##Archivelog number get from sql archive log list command
    13> set until sequence 237046947;
    14> ##set until time "to_date('2011-05-20 08:00:00', 'YYYY-MM-DD HH24:MI:SS')";
    15> duplicate target database to CSPRSUM1 nofilenamecheck
    16> logfile
    17> group 1('+DATA/CSPRSUM1/onlinelog/redo1a.log', '+FRA/CSPRSUM1/onlinelog/redo1b.log') size 50m,
    18> group 2('+DATA/CSPRSUM1/onlinelog/redo2a.log', '+FRA/CSPRSUM1/onlinelog/redo2b.log') size 50m,
    19> group 3('+DATA/CSPRSUM1/onlinelog/redo3a.log', '+FRA/CSPRSUM1/onlinelog/redo3b.log') size 50m;
    20> }
    allocated channel: d1
    channel d1: SID=532 device type=DISK
    allocated channel: d2
    channel d2: SID=533 device type=DISK
    allocated channel: d3
    channel d3: SID=531 device type=DISK
    allocated channel: d4
    channel d4: SID=555 device type=DISK
    allocated channel: a1
    channel a1: SID=534 device type=DISK
    executing command: SET until clause
    Starting Duplicate Db at 17-JUN-11
    RMAN-05529: WARNING: DB_FILE_NAME_CONVERT resulted in invalid ASM names; names changed to disk group only.
    contents of Memory Script:
    set until scn 373021170;
    set newname for datafile 1 to
    "+data";
    set newname for datafile 2 to
    Starting restore at 17-JUN-11
    channel d1: starting datafile backup set restore
    channel d1: specifying datafile(s) to restore from backup set
    channel d1: restoring datafile 00003 to +DATA
    channel d2: restoring datafile 00122 to +DATA
    channel d2: reading from backup piece F:\BACKUPS\CSPROD\D4\CSPROD_DATA_6149
    channel d3: starting datafile backup set restore
    channel d3: specifying datafile(s) to restore from backup set
    channel d3: restoring datafile 00002 to +DATA
    channel d3: restoring datafile 00020 to +DATA
    channel d4: restoring datafile 00120 to +DATA
    channel d4: reading from backup piece F:\BACKUPS\CSPROD\D2\CSPROD_DATA_6147
    channel d1: piece handle=F:\BACKUPS\CSPROD\D3\CSPROD_DATA_6148 tag=TAG20110616T230013
    channel d1: restored backup piece 1
    channel d1: restore complete, elapsed time: 00:01:15
    channel d4: piece handle=F:\BACKUPS\CSPROD\D2\CSPROD_DATA_6147 tag=TAG20110616T230013
    channel d4: restored backup piece 1
    channel d4: restore complete, elapsed time: 00:03:15
    channel d2: piece handle=F:\BACKUPS\CSPROD\D4\CSPROD_DATA_6149 tag=TAG20110616T230013
    channel d2: restored backup piece 1
    channel d2: restore complete, elapsed time: 00:03:35
    channel d3: piece handle=F:\BACKUPS\CSPROD\D1\CSPROD_DATA_6146 tag=TAG20110616T230013
    channel d3: restored backup piece 1
    channel d3: restore complete, elapsed time: 00:04:55
    Finished restore at 17-JUN-11
    sql statement: CREATE CONTROLFILE REUSE SET DATABASE "CSPRSUM1" RESETLOGS ARCHIVELOG
    MAXLOGFILES 23
    MAXLOGMEMBERS 3
    MAXDATAFILES 1021
    MAXINSTANCES 8
    MAXLOGHISTORY 584
    LOGFILE
    GROUP 1 ( '+DATA/CSPRSUM1/onlinelog/redo1a.log', '+FRA/CSPRSUM1/onlinelog/redo1b.log' ) SIZE 50 M ,
    GROUP 2 ( '+DATA/CSPRSUM1/onlinelog/redo2a.log', '+FRA/CSPRSUM1/onlinelog/redo2b.log' ) SIZE 50 M ,
    GROUP 3 ( '+DATA/CSPRSUM1/onlinelog/redo3a.log', '+FRA/CSPRSUM1/onlinelog/redo3b.log' ) SIZE 50 M
    DATAFILE
    '+DATA/csprsum1/datafile/system.1535.754067379'
    CHARACTER SET WE8MSWIN1252
    contents of Memory Script:
    switch clone datafile all;
    executing Memory Script
    datafile 2 switched to datafile copy
    input datafile copy RECID=1 STAMP=754067676 file name=+DATA/csprsum1/datafile/sysaux.1536.754067379
    datafile 121 switched to datafile copy
    input datafile copy RECID=120 STAMP=754067677 file name=+DATA/csprsum1/datafile/waapp.1653.754067403
    datafile 122 switched to datafile copy
    input datafile copy RECID=121 STAMP=754067677 file name=+DATA/csprsum1/datafile/cu_custom.1549.754067381
    contents of Memory Script:
    set until scn 373021170;
    recover
    clone database
    delete archivelog
    executing Memory Script
    executing command: SET until clause
    Starting recover at 17-JUN-11
    starting media recovery
    Oracle Error:
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '+DATA/csprsum1/datafile/system.1535.754067379'
    released channel: d1
    released channel: d2
    released channel: d3
    released channel: d4
    released channel: a1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/17/2011 15:14:54
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06053: unable to perform media recovery because of missing log
    RMAN-06025: no backup of archived log for thread 1 with sequence 3818 and starting SCN of 372868482 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3817 and starting SCN of 372685133 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3816 and starting SCN of 372593528 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3815 and starting SCN of 372374385 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3814 and starting SCN of 372325053 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3813 and starting SCN of 372316138 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3812 and starting SCN of 372249619 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3811 and starting SCN of 371775981 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3810 and starting SCN of 371643855 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3809 and starting SCN of 371614442 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3808 and starting SCN of 371432892 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3807 and starting SCN of 371121955 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3806 and starting SCN of 371047786 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3805 and starting SCN of 371029095 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3804 and starting SCN of 371018252 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3803 and starting SCN of 370947755 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3802 and starting SCN of 370857440 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3801 and starting SCN of 370814417 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3800 and starting SCN of 370797061 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3799 and starting SCN of 370756569 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3798 and starting SCN of 370746833 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3797 and starting SCN of 370746693 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3796 and starting SCN of 370746568 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3795 and starting SCN of 370746068 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3794 and starting SCN of 370745451 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3793 and starting SCN of 370733767 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3792 and starting SCN of 370674629 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3791 and starting SCN of 370501026 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3790 and starting SCN of 370498513 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3789 and starting SCN of 370497977 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3788 and starting SCN of 370497635 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3787 and starting SCN of 370497319 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3786 and starting SCN of 370496938 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3785 and starting SCN of 370495428 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3784 and starting SCN of 370491173 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3783 and starting SCN of 370390074 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3782 and starting SCN of 370385574 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3781 and starting SCN of 370385310 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3780 and starting SCN of 370385044 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3779 and starting SCN of 370368486 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3778 and starting SCN of 370333960 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3777 and starting SCN of 370330980 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3776 and starting SCN of 370327876 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3775 and starting SCN of 370174433 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3774 and starting SCN of 370148373 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3773 and starting SCN of 370147821 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3772 and starting SCN of 370147623 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3771 and starting SCN of 370141528 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3770 and starting SCN of 369711271 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3769 and starting SCN of 369621694 found to restore
    RMAN-06025: no backup of archived log for thread 1 with sequence 3768 and starting SCN of 369595614 found to restore
    RMAN> Exit
    Recovery Manager complete.
    What I am not sure is if the SCN I used in my set until sequence command was from 5/20, when I look at the backup pieces that it is reading to restore from, they appear to be from backup files taken from June.
    (e.g channel d1: reading from backup piece F:\BACKUPS\CSPROD\D3\CSPROD_DATA_6148 -- this is a 6/16 backup file).
    Also, as you can see it was not able to do a media recovery.
    Thanks in advance for your help.

  • HT204266 My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

    My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

    My iPad (version 1, IOS 5.1) has quit connecting with the store. I am unable to update or buy any app. I did a reboot and a reset with deleting the data. I can not find anything in support for this problem. Any help will be appreciated.

  • In new iPad 4g, when sim card is not inserted, I can not find the enable 4g tap in the setting-cellular data tap, can some one please tell me if this is normal and if so, then when it appears, thanks

    In new iPad 4g, when sim card is not inserted, I can not find the enable 4g tap in the setting-cellular data tap, can some one please tell me if this is normal and if so, then when it appears, thanks

    If the SIM is out of your phone, find my phone needs a data connection, so could use wifi - IF in range of a wifi and one that it can join (ie. a known network or one that is wholly open so no login required).  Your phone could also simple be turned off, so not findable, or it may have been restored (plugged into iTunes and restored as new) again, making it permanently unfindable.  Honestly, for someone stealing an iPhone, this is likely the first thing they do - restore as new and it is theirs forever.
    Find my iPhone is tied to the users iCloud account - the find function is part of the iCloud account's services and it communicates with the iCloud servers over a data connection - either wifi or 3G.
    Have you set up your iCloud account on your replacement phone, and is it working properly on that phone?

  • There is more data storage on the hard drive and I can not find it (should be deleted)

    Hi I need some help, i recently bought a Macbook Pro, so good with that but when storing my files I realized I had sent more files, I deleted my files and it took me hours! and when checking the status of storage I realized I had more 20GB hard drive and I can not find that data stored anywhere! and i made the securely empty.
    P.S. I had a small problem when cleaned the trash, I stopped for lack of time but when i stop it, I realized I had nothing inside then... (should leave something at least, because it was an incomplete process.)
    (here says that i have 40.54 GB from other stuff, and i'm just using like 13Gb of my data) its in spanish by the way... sorry for that.
    Thanks for your patience!

    Other (Otros) is everything but Applications according to your chart. That includes operating system and files.

  • MapBuilder Error:Can not find a GeoRaster object with specified rdt and rid

    Hello,
    I can't GeoRaster data in the preview of the MapBuilder and MapViewer. The GeoRasterViewer shows the Raster images without problems.
    MapBuilders error message:
    19.11.2008 13:07:11 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    19.11.2008 13:07:11 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    19.11.2008 13:07:11 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    The errror message of MapViewer is nearly the same with some more informations about the spatial query and the coordintes of the query window. If I run that spatial query in the sqldeveloper it returns a result!
    I did following stebs:
    - saved a tiff-Image in a GeoRaster table with pyramid an tiled images.
    - checked the sdo_geom_metadata --> they are correct
    - checked the sdo_georaster object for the rdt table name and rasterid --> they are correct
    - checked the rdt table --> objects with that rid are saved
    - checked the mdsys.sdo_geor_sysdata table --> entry is correct
    - validate the geraster with the sdo_geor.validategeoraster function --> object is valid
    - updated the spatial extend of the image and try again the preview functio--> the same error
    The databse server is a virtual Linux server with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit.
    The web server is a Window 2003 R2 Server with a weblogic server and mapviewer patch 5 (Ver1033p5_B081010).
    For a test I did the same (the same table script, the same raster data, the same import method) on a developer pc (WinXP Pro SP2) with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 (32bit) the same mapbuilder version but with the MapViewer QuickStartKid and it works fine!!!
    Has anyone an idea?
    Greeting,
    Cord
    Edited by: Corti on Nov 19, 2008 2:14 PM

    Hi Joao,
    Thanks so far.
    I'm previewing a GeoRaster theme. I created it with the MapBuilder GeoRaster wizard. The theme difinition is (out of the export file):
    RAS_DGK|
    null|
    RAS_DGK|
    GEORASTER|
    <?xml version="1.0" standalone="yes"?>
    <styling_rules theme_type="georaster">
    </styling_rules>|
    (GeoRaster table name is "RAS_DGK", theme name is also "RAS_DGK")
    I get following log information:
    preview without a coordinate or scale:
    MapBuilder Error (as pop up): MAPVIEWER 01005: no spatial data to render
    log file:
    20.11.2008 10:17:27 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-43
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: -Infinity,-Infinity,NaN,NaN
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER, grt.GEORASTER.metadata.getClobVal() from RAS_DGK grt
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:17:27 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:17:27 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:17:27 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    preview with a center coordinate of the image and a scale:
    20.11.2008 10:18:43 oracle.sdovis.SRS getOptimalQueryWindow
    AM FEINSTEN: *** isGeodetic=false, unit=METER
    20.11.2008 10:18:43 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-45
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: 2550045.7746478873,5608500.0,2551954.2253521127,5609500.0
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER, grt.GEORASTER.metadata.getClobVal() from RAS_DGK grt WHERE MDSYS.SDO_FILTER(grt.GEORASTER.spatialextent, MDSYS.SDO_GEOMETRY(2003, 31466, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3), MDSYS.SDO_ORDINATE_ARRAY(?,?,?,?)), 'querytype=WINDOW') = 'TRUE'
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:18:43 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:18:43 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:18:43 oracle.sdovis.DBMapMaker renderEm
    INFO: **** time spent on loading features: 234ms.
    20.11.2008 10:18:43 oracle.sdovis.RenderingEngine prepareForRendering
    AM FEINSTEN: xfm: 0.284 0.0 0.0 -0.284 -724212.9999999999 1593097.9999999998
    20.11.2008 10:18:43 oracle.sdovis.ImageRenderer renderGeoRasterTheme
    WARNUNG: GeoRaster theme RAS_DGK has no rendered images.
    20.11.2008 10:18:43 oracle.sdovis.VectorRenderer render
    FEINER: time to render theme RAS_DGK with 0 styled features: 0ms
    20.11.2008 10:18:43 oracle.sdovis.DBMapMaker renderEm
    INFO: **** time spent on rendering: 16ms
    If I run the sql statement in the log file, it returns a result.
    select grt.georid, grt.GEORASTER, grt.GEORASTER.metadata.getClobVal()
    from ras_dgk grt
    WHERE MDSYS.SDO_FILTER(grt.GEORASTER.spatialextent,
    MDSYS.SDO_GEOMETRY(2003, 31466, NULL,
    MDSYS.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
    MDSYS.SDO_ORDINATE_ARRAY(2550045.7746478873,5608500.0,2551954.2253521127,5609500.0)), 'querytype=WINDOW') = 'TRUE';
    GEORID
    2
    GEORASTER
    MDSYS.SDO_GEORASTER(20001,MDSYS.SDO_GEOMETRY(2003,31466,null,MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),MDSYS.SDO_ORDINATE_ARRAY(2550000,5608000,2552000,5610000)),RDT_RAS_DGK,522,oracle.xdb.XMLType@194a7ec)
    GEORASTER.metadata.getClobVal()
    <georasterMetadata xmlns="http://xmlns.oracle.com/spatial/georaster">
    <objectInfo>
    <rasterType>20001</rasterType>
    <isBlank>false</isBlank>
    <defaultRed>1</defaultRed>
    <defaultGreen>1</defaultGreen>
    <defaultBlue>1</defaultBlue>
    </objectInfo>
    <rasterInfo>
    <cellRepresentation>UNDEFINED</cellRepresentation>
    <cellDepth>8BIT_U</cellDepth>
    <totalDimensions>2</totalDimensions>
    <dimensionSize type="ROW">
    <size>6299</size>
    </dimensionSize>
    <dimensionSize type="COLUMN">
    <size>6299</size>
    </dimensionSize>
    <ULTCoordinate>
    <row>0</row>
    <column>0</column>
    </ULTCoordinate>
    <blocking>
    <type>REGULAR</type>
    <totalRowBlocks>4</totalRowBlocks>
    <totalColumnBlocks>4</totalColumnBlocks>
    <rowBlockSize>2048</rowBlockSize>
    <columnBlockSize>2048</columnBlockSize>
    </blocking>
    <interleaving>BSQ</interleaving>
    <pyramid>
    <type>DECREASE</type>
    <resampling>NN</resampling>
    <maxLevel>6</maxLevel>
    </pyramid>
    <compression>
    <type>NONE</type>
    </compression>
    </rasterInfo>
    <spatialReferenceInfo>
    <isReferenced>true</isReferenced>
    <SRID>31466</SRID>
    <modelCoordinateLocation>UPPERLEFT</modelCoordinateLocation>
    <modelType>FunctionalFitting</modelType>
    <polynomialModel rowOff="0" columnOff="0" xOff="0" yOff="0" zOff="0" rowScale="1" columnScale="1" xScale="1" yScale="1" zScale="1">
    <pPolynomial pType="1" nVars="2" order="1" nCoefficients="3">
    <polynomialCoefficients>17668678.695368 0 -3.14949718277477</polynomialCoefficients>
    </pPolynomial>
    <qPolynomial pType="1" nVars="0" order="0" nCoefficients="1">
    <polynomialCoefficients>1</polynomialCoefficients>
    </qPolynomial>
    <rPolynomial pType="1" nVars="2" order="1" nCoefficients="3">
    <polynomialCoefficients>-8031218.31607409 3.14949718277477 0</polynomialCoefficients>
    </rPolynomial>
    <sPolynomial pType="1" nVars="0" order="0" nCoefficients="1">
    <polynomialCoefficients>1</polynomialCoefficients>
    </sPolynomial>
    </polynomialModel>
    </spatialReferenceInfo>
    <layerInfo>
    <layerDimension>BAND</layerDimension>
    <subLayer>
    <layerNumber>1</layerNumber>
    <layerDimensionOrdinate>0</layerDimensionOrdinate>
    <layerID>1</layerID>
    <colorMap>
    <colors>
    <cell value="0" blue="255" red="255" green="255" alpha="255"/>
    <cell value="1" blue="0" red="0" green="0" alpha="255"/>
    </colors>
    </colorMap>
    </subLayer>
    </layerInfo>
    </georasterMetadata>
    I checked also the content of rdt table and it contains entries with that raster id (= 522).
    Finally the log file when I use the preview directly on the GeoRaster table without a theme:
    20.11.2008 10:23:46 oracle.sdovis.LoadThemeData run
    FEINER: LoadThemeData running thread: Thread-55
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Original query window: -Infinity,-Infinity,NaN,NaN
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: [Query] select grt.GEORASTER from RAS_DGK grt where grt.GEORASTER.rasterid = ? and grt.GEORASTER.rasterdatatable = ?
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    FEINER: Fetch size: 100
    20.11.2008 10:23:46 oracle.sdovis.theme.GeoRasterThemeProducer prepareData
    SCHWERWIEGEND: GeoRaster load Exception:
    oracle.spatial.georaster.GeoRasterException: Can not find a GeoRaster object with specified rdt and rid.
         at oracle.spatial.georaster.JGeoRaster.validateConn(JGeoRaster.java:608)
         at oracle.sdovis.theme.GeoRasterThemeProducer$JGeoRasterGTP.<init>(GeoRasterThemeProducer.java:2037)
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:694)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:23:46 oracle.sdovis.LoadThemeData run
    SCHWERWIEGEND: Exception fetching data for theme RAS_DGK.
    Message:GeoRaster load Exception: Can not find a GeoRaster object with specified rdt and rid.
    Description:
         at oracle.sdovis.theme.GeoRasterThemeProducer.prepareData(GeoRasterThemeProducer.java:1109)
         at oracle.sdovis.GeoRasterTheme.prepareData(GeoRasterTheme.java:95)
         at oracle.sdovis.LoadThemeData.run(LoadThemeData.java:75)
    20.11.2008 10:23:46 oracle.sdovis.MapMaker buildDataMBR
    WARNUNG: null MBR resulted from buildDataMBR.
    If you need more information - please ask for it.
    Cord

  • HT1338 kindly advise how do i install Bonjour to my MacBook Pro. i have quite a fewApps that won't work and have troubleshot them and can not find this application anywhere.

    kindly advise how do i install Bonjour to my MacBook Pro. i have quite a fewApps that won't work and have troubleshot them and can not find this application anywhere.

    this is the error page i get when trying to open Docs to Go on my MacBook
    Process:         Documents To Go Desktop [2042]
    Path:            /Applications/Documents To Go Desktop.app/Contents/MacOS/Documents To Go Desktop
    Identifier:      com.dataviz.Documents_To_Go_Desktop
    Version:         4.0001.9
    Code Type:       X86 (Native)
    Parent Process:  launchd [187]
    User ID:         501
    Date/Time:       2013-01-28 17:24:34.373 +0200
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Sleep/Wake UUID: 7B3C101D-5145-46E9-87BC-8CC4F7A0AAB9
    Interval Since Last Report:          80267 sec
    Crashes Since Last Report:           1456
    Per-App Crashes Since Last Report:   19
    Anonymous UUID:                      824A531E-DA88-A4D2-F85C-B0E0B6351CDF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Documents To Go Desktop.app/Contents/MacOS/Documents To Go Desktop
        __TEXT                 0000000000001000-0000000000061000 [  384K] r-x/rwx SM=COW  /Applications/Documents To Go Desktop.app/Contents/MacOS/Documents To Go Desktop
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x93030780 strncpy + 112
    1   com.dataviz.Documents_To_Go_Desktop          0x000130dc 0x1000 + 73948
    2   com.apple.Foundation                    0x912acfcf __NSFireDelayedPerform + 413
    3   com.apple.CoreFoundation                0x99f209b6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    4   com.apple.CoreFoundation                0x99f20355 __CFRunLoopDoTimer + 709
    5   com.apple.CoreFoundation                0x99f05162 __CFRunLoopRun + 1730
    6   com.apple.CoreFoundation                0x99f0463a CFRunLoopRunSpecific + 378
    7   com.apple.CoreFoundation                0x99f044ab CFRunLoopRunInMode + 123
    8   com.apple.HIToolbox                     0x94e5b15a RunCurrentEventLoopInMode + 242
    9   com.apple.HIToolbox                     0x94e5aec9 ReceiveNextEventCommon + 374
    10  com.apple.HIToolbox                     0x94e5ad44 BlockUntilNextEventMatchingListInMode + 88
    11  com.apple.AppKit                        0x97b77a3a _DPSNextEvent + 724
    12  com.apple.AppKit                        0x97b7726c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    13  com.apple.AppKit                        0x97b6d6cc -[NSApplication run] + 855
    14  com.apple.AppKit                        0x97b106f6 NSApplicationMain + 1053
    15  com.dataviz.Documents_To_Go_Desktop          0x00002d59 0x1000 + 7513
    16  com.dataviz.Documents_To_Go_Desktop          0x00002c88 0x1000 + 7304
    Thread 1:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x909539ae kevent + 10
    1   libdispatch.dylib                       0x94df4c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x94df47a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x909530ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9304704c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93046e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9302ecca start_wqthread + 30
    Thread 10:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x90952be6 __select + 10
    1   com.apple.CoreFoundation                0x99f48c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x93044557 _pthread_start + 344
    3   libsystem_c.dylib                       0x9302ecee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x00000100  edx: 0x00000010
      edi: 0x009200c0  esi: 0x00000000  ebp: 0xbfffe4d8  esp: 0xbfffe494
       ss: 0x00000023  efl: 0x00010202  eip: 0x93030780   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x60ff7 +com.dataviz.Documents_To_Go_Desktop (4.0001.9) <F358E67C-827D-3CDD-8336-2E6D541F8363> /Applications/Documents To Go Desktop.app/Contents/MacOS/Documents To Go Desktop
       0xdf000 -    0xecff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
      0x7e8000 -   0x7f0ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
      0x7f7000 -   0x7f9fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x3ff2000 -  0x3ff2ffb +cl_kernels (???) <53FCF3CC-E043-4F29-818E-4FD5879EC129> cl_kernels
    0x3ffc000 -  0x3ffcff7 +cl_kernels (???) <ABBCDE1B-10FB-409E-A3CA-AB362AF8DB9A> cl_kernels
    0x8483000 -  0x8512ff7  unorm8_rgba.dylib (2.1.19) <EAF23AD7-DEC1-3346-A7AA-21B308CA2A85> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
    0x8524000 -  0x85b6ff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x8fed1000 - 0x8ff03e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90023ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90024000 - 0x900c4ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x900c5000 - 0x900c5fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x900c6000 - 0x9011fff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x90120000 - 0x9014aff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9014b000 - 0x90256ff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x90257000 - 0x903afffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x903b0000 - 0x903d4fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x903d5000 - 0x903f2fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x9040d000 - 0x906b0ffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x906b1000 - 0x906d6ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x906e3000 - 0x9070cfff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x9070d000 - 0x9071dff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x9071e000 - 0x90735fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x90736000 - 0x90736fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x90737000 - 0x9073affd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9073b000 - 0x9076eff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9076f000 - 0x90782ff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90783000 - 0x9078fffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90790000 - 0x90888ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x90889000 - 0x9088cffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x9088d000 - 0x90925fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90926000 - 0x9093dff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9093e000 - 0x90958ffc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x90959000 - 0x9099aff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x9099b000 - 0x909a3fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x909a4000 - 0x909e6fff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x909e7000 - 0x90de3feb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90de4000 - 0x90e30fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x90e31000 - 0x91089ff1  com.apple.JavaScriptCore (8536 - 8536.26.7) <75629E05-65FE-3699-8CDC-80C95015CF42> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9108a000 - 0x910ffff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91100000 - 0x9116fffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91170000 - 0x91171fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x91181000 - 0x9118dff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9118e000 - 0x911b3ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x911b4000 - 0x911cdfff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91234000 - 0x91551ff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91555000 - 0x915acff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x915ad000 - 0x915efffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x91969000 - 0x9196bfff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9196c000 - 0x91975ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x91976000 - 0x91d09ffb  com.apple.MediaToolbox (1.0 - 926.62) <7290B07B-4D03-3B46-809C-64C8FB97B40C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x91d15000 - 0x91d22fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91ddb000 - 0x91ddcfff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x91ddd000 - 0x91dddfff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91dde000 - 0x91de8fff  libCSync.A.dylib (324.6) <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91de9000 - 0x91e42fff  com.apple.QuickLookFramework (4.0 - 555.4) <96911441-FDD4-3B68-9E0C-51BA11A97C2E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91e43000 - 0x91e43ffd  libOpenScriptingUtil.dylib (148.2) <907E25B1-4F50-3461-B8D5-733C687EB534> /usr/lib/libOpenScriptingUtil.dylib
    0x91e44000 - 0x924d0feb  com.apple.CoreAUC (6.16.00 - 6.16.00) <654A0AB8-F24F-3489-8F70-F0A22414FE08> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x924d4000 - 0x9255cfff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9255d000 - 0x92631fff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92632000 - 0x9274aff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x927b4000 - 0x927b4fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x927b5000 - 0x92819ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9281a000 - 0x92893ff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x92894000 - 0x92898fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x92899000 - 0x9289cff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x928dd000 - 0x929ceffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x929cf000 - 0x929ecff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x929ed000 - 0x92ae9ff3  com.apple.DiskImagesFramework (10.8 - 344) <98C16F91-9D3E-3FD0-A30B-BD49EE4ED9A4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x92d84000 - 0x92e78ff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x92e79000 - 0x92ef5ff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92f4d000 - 0x92fa7fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92fa8000 - 0x92fc7ff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x92fc8000 - 0x92fd2fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92fd3000 - 0x92fd9fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x92fda000 - 0x92fe1ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x9302e000 - 0x930ebfeb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x930ec000 - 0x93166ff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93167000 - 0x931a6ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x931a7000 - 0x931a9fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x931aa000 - 0x931b8ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x931b9000 - 0x931bcfff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x931bd000 - 0x931c6ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x931c7000 - 0x93302ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93303000 - 0x9336bfe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9340a000 - 0x9342efff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93460000 - 0x934b7ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x934b8000 - 0x937bdff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x937be000 - 0x937befff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x937bf000 - 0x937c0ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x937c1000 - 0x9381afff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93828000 - 0x9382cffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x94566000 - 0x945fdff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x945fe000 - 0x94645ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94646000 - 0x94646fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94647000 - 0x946a2ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x946a3000 - 0x9482cff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9482d000 - 0x949a5ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x949b4000 - 0x949f4fff  com.apple.MediaKit (13 - 659) <37B8C1E3-B67D-3FE6-8A14-7FFD9F31C556> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x949f5000 - 0x94a1eff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94a2b000 - 0x94a33fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94a7d000 - 0x94aaaffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x94aab000 - 0x94d6bfff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94d6c000 - 0x94d6dfff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x94d6e000 - 0x94d72ffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94df0000 - 0x94e02ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x94e03000 - 0x951e6ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x951e7000 - 0x951e7fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x95214000 - 0x9527cff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9527d000 - 0x9529dffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x95592000 - 0x95668fff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95669000 - 0x95695ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x95696000 - 0x956a2ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x956a3000 - 0x9592fffb  com.apple.RawCamera.bundle (4.03 - 676) <53F1CD12-96E9-3E41-BEA9-46B75FC707D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95930000 - 0x95d4dfff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x95d4e000 - 0x95f0affd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
    0x95f0b000 - 0x95f11ffc  libCGXCoreImage.A.dylib (324.6) <D75B1309-D224-344F-A28F-2B552859DDFC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x95f12000 - 0x95facfff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x96076000 - 0x960fbff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x960fc000 - 0x9610afff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9610b000 - 0x96218057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96219000 - 0x962abffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x962ac000 - 0x962b8ffe  libkxld.dylib (2050.18.24) <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
    0x962b9000 - 0x96308ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96309000 - 0x9634dfff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9634e000 - 0x9639eff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9639f000 - 0x963bdff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x963be000 - 0x9647cff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9647d000 - 0x9647dfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9647e000 - 0x964c0ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x964c1000 - 0x964d6fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x964dd000 - 0x9653ffff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x96544000 - 0x96986fff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96987000 - 0x96a68fff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
    0x96a69000 - 0x96a69fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96a6a000 - 0x96a6bfff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x9742d000 - 0x9742effd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9742f000 - 0x9752dff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9752e000 - 0x97573ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x97574000 - 0x977a4fff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x977a5000 - 0x977f3ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x977f4000 - 0x97901ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97902000 - 0x9790cfff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x9790d000 - 0x97910ff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x97911000 - 0x97913fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x97919000 - 0x97946ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x97947000 - 0x97959fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9795a000 - 0x9795eff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x9795f000 - 0x97a13fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x97a14000 - 0x985d0ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x985d1000 - 0x985dffff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x985e0000 - 0x986c9ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x986ca000 - 0x98700ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x98701000 - 0x98711ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x98712000 - 0x98712ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98713000 - 0x9871afff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x9871d000 - 0x98721fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98722000 - 0x98767ff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x98768000 - 0x989d5fff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x989d6000 - 0x98a85ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x98a86000 - 0x98bd3ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x98bd4000 - 0x98bf6fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x98c2d000 - 0x98c52ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98c53000 - 0x98d71ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x98d72000 - 0x9912affa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9912b000 - 0x99174ff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x99175000 - 0x9917cff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99184000 - 0x99199fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9919a000 - 0x991d5fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x991d6000 - 0x99452ff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99453000 - 0x994a1ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x994a2000 - 0x994b0ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x994b1000 - 0x99517fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x99518000 - 0x9951cfff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9951d000 - 0x99533fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x99534000 - 0x99537ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x99538000 - 0x9956fffa  com.apple.LDAPFramework (2.4.28 - 194.5) <8368FAE7-2B89-3A7D-B6EE-7184B522CB66> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x99570000 - 0x99571fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x99572000 - 0x99575ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x99576000 - 0x99620fff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x99621000 - 0x99662ff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x99663000 - 0x9966cffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9966f000 - 0x9967cff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9967d000 - 0x996aefff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x996af000 - 0x996b0fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x996b1000 - 0x996bcfff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x996bd000 - 0x99721fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x99748000 - 0x99748fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x99749000 - 0x997a6fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x99eaf000 - 0x99eccfff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x99ecd000 - 0x9a0b5ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9a0f9000 - 0x9a101fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x9a102000 - 0x9a102fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9a103000 - 0x9a31afff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9a373000 - 0x9a3a6ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x9a3a7000 - 0x9a3a9ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x9a3aa000 - 0x9a405fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9a406000 - 0x9a522ff7  com.apple.desktopservices (1.7.2 - 1.7.2) <8E74D101-8398-34F1-A463-B4950680A597> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9a523000 - 0x9a529fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9a52a000 - 0x9a534ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9a535000 - 0x9a53cfff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x9a540000 - 0x9a69dffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 1914
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=154.1M resident=96.1M(62%) swapped_out_or_unallocated=58.1M(38%)
    Writable regions: Total=114.3M written=2316K(2%) resident=21.9M(19%) swapped_out=0K(0%) unallocated=92.4M(81%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  2128K
    CG image                              4K
    CG raster data                       16K
    CG shared images                   1216K
    CoreImage                            96K
    CoreServices                       2656K
    MALLOC                             82.0M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=35                      4408K
    OpenCL                               16K
    Stack                              68.6M
    VM_ALLOCATE                        16.1M
    __DATA                             7392K
    __DATA/__OBJC                       252K
    __IMAGE                             528K
    __LINKEDIT                         31.2M
    __OBJC                             2332K
    __OBJC/__DATA                        60K
    __PAGEZERO                            4K
    __TEXT                            122.9M
    __UNICODE                           544K
    mapped file                        87.5M
    shared memory                       308K
    ===========                      =======
    TOTAL                             429.9M
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2 GHz, 8 GB, SMC 1.69f3
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6490M, AMD Radeon HD 6490M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393955353432382D3034302E4130314C4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x0198, 0x393955353432382D3034302E4130314C4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.81.22)
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 2 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9A302, 500,11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: hub_device, 0x058f  (Alcor Micro, Corp.), 0x6254, 0xfd120000 / 4
    USB Device: hub_device, 0x058f  (Alcor Micro, Corp.), 0x6254, 0xfd124000 / 6
    USB Device: CanoScan, 0x04a9  (Canon Inc.), 0x1905, 0xfd124400 / 7
    USB Device: Aficio MP 161, 0x05ca  (Ricoh Company Ltd.), 0x0403, 0xfd121000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0246, 0xfa120000 / 4

  • Wireless card can not find any network.

    I have 2 wireless card:
    TP-Link PCI card:TL-WN851N
    D-Link USB card:DWA-127
    both card work fine under windows.
    but TP-Link can not find any wireless network,even if I moved my wirelss router to same room with TP-Link wireless card.
    Anybody have an idea ?
    I comfirmed the kernel driver is properly loaded:
    [root@XSign ~]# lspci -k
    04:00.0 Network controller: Qualcomm Atheros AR9227 Wireless Network Adapter (rev 01)
    Subsystem: Qualcomm Atheros Device 0300
    Kernel driver in use: ath9k
    Kernel modules: ath9k
    [root@XSign ~]# ifconfig -a
    //this is D-Link card
    wlp0s20u11: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
    inet 192.168.2.101 netmask 255.255.255.0 broadcast 255.255.255.255
    inet6 fe80::bef6:85ff:fe67:57c prefixlen 64 scopeid 0x20<link>
    ether bc:f6:85:67:05:7c txqueuelen 1000 (Ethernet)
    RX packets 171436 bytes 230296030 (219.6 MiB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 107153 bytes 12458452 (11.8 MiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    //this is TP-Link card
    wlp4s0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
    ether 08:57:00:34:4f:c5 txqueuelen 1000 (Ethernet)
    RX packets 0 bytes 0 (0.0 B)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 0 bytes 0 (0.0 B)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    [root@XSign ~]# ifconfig wlp4s0 up
    [root@XSign ~]# iwlist wlp4s0 scan
    wlp4s0 No scan results
    and I can find many wireless network with same command through card wlp0s20u11
    AR9227 is supported : http://wireless.kernel.org/en/users/Drivers/ath9k/

    Thanks for reply.
    one more thing, I noticed the power LED didn't "light up" when I execute the "power up" command.
    [root@XSign hacksign]# ip link show wlp4s0
    3: wlp4s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
    link/ether 08:57:00:34:4f:c5 brd ff:ff:ff:ff:ff:ff
    [root@XSign hacksign]# ip link set wlp4s0 up
    [root@XSign hacksign]# ip link show wlp4s0
    3: wlp4s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DEFAULT group default qlen 1000
    link/ether 08:57:00:34:4f:c5 brd ff:ff:ff:ff:ff:ff
    [root@XSign hacksign]# dmesg | grep firmware
    [root@XSign hacksign]#
    any suggesstions ?
    below is my complete demsg output:
    [root@XSign hacksign]# dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.15.1-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.0 20140604 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Jun 17 09:32:20 CEST 2014
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=08871484-d630-41f6-a743-4086ad9f8628 rw noisy init=/usr/lib/systemd/systemd nomodeset
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bb231fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bb232000-0x00000000bb238fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bb239000-0x00000000bc247fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bc248000-0x00000000bc74dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bc74e000-0x00000000ce799fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ce79a000-0x00000000ce9adfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ce9ae000-0x00000000cea93fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000cea94000-0x00000000cf7fefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cf7ff000-0x00000000cf7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022dffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. G1.Sniper B5/G1.Sniper B5-CF, BIOS F6 01/17/2014
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x22e000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7E00000000 write-back
    [ 0.000000] 1 base 0200000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 0220000000 mask 7FF8000000 write-back
    [ 0.000000] 3 base 0228000000 mask 7FFC000000 write-back
    [ 0.000000] 4 base 022C000000 mask 7FFE000000 write-back
    [ 0.000000] 5 base 00E0000000 mask 7FE0000000 uncachable
    [ 0.000000] 6 base 00D0000000 mask 7FF0000000 uncachable
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xcf800 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fd710-0x000fd71f] mapped at [ffff8800000fd710]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b3e000, 0x01b3efff] PGTABLE
    [ 0.000000] BRK [0x01b3f000, 0x01b3ffff] PGTABLE
    [ 0.000000] BRK [0x01b40000, 0x01b40fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22de00000-0x22dffffff]
    [ 0.000000] [mem 0x22de00000-0x22dffffff] page 2M
    [ 0.000000] BRK [0x01b41000, 0x01b41fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x22c000000-0x22ddfffff]
    [ 0.000000] [mem 0x22c000000-0x22ddfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x22bffffff]
    [ 0.000000] [mem 0x200000000-0x22bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbb231fff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0xbb1fffff] page 2M
    [ 0.000000] [mem 0xbb200000-0xbb231fff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xbb239000-0xbc247fff]
    [ 0.000000] [mem 0xbb239000-0xbb3fffff] page 4k
    [ 0.000000] [mem 0xbb400000-0xbc1fffff] page 2M
    [ 0.000000] [mem 0xbc200000-0xbc247fff] page 4k
    [ 0.000000] BRK [0x01b42000, 0x01b42fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbc74e000-0xce799fff]
    [ 0.000000] [mem 0xbc74e000-0xbc7fffff] page 4k
    [ 0.000000] [mem 0xbc800000-0xce5fffff] page 2M
    [ 0.000000] [mem 0xce600000-0xce799fff] page 4k
    [ 0.000000] BRK [0x01b43000, 0x01b43fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xcf7ff000-0xcf7fffff]
    [ 0.000000] [mem 0xcf7ff000-0xcf7fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x379c0000-0x37cd7fff]
    [ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 0x00000000CEA6C078 000074 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 0x00000000CEA77460 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 0x00000000CEA6C188 00B2D7 (v02 ALASKA A M I 000000F6 INTL 20091112)
    [ 0.000000] ACPI: FACS 0x00000000CEA92080 000040
    [ 0.000000] ACPI: APIC 0x00000000CEA77570 000072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 0x00000000CEA775E8 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 0x00000000CEA77630 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 0x00000000CEA77B70 000AD8 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: MCFG 0x00000000CEA78648 00003C (v01 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 0x00000000CEA78688 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 0x00000000CEA786C0 00036D (v01 SataRe SataTabl 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 0x00000000CEA78A30 003299 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    [ 0.000000] ACPI: DMAR 0x00000000CEA7BCD0 000080 (v01 INTEL HSW 00000001 INTL 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000022dffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x22dffffff]
    [ 0.000000] NODE_DATA [mem 0x22dff6000-0x22dffafff]
    [ 0.000000] [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880225600000-ffff88022d5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x22dffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0xbb231fff]
    [ 0.000000] node 0: [mem 0xbb239000-0xbc247fff]
    [ 0.000000] node 0: [mem 0xbc74e000-0xce799fff]
    [ 0.000000] node 0: [mem 0xcf7ff000-0xcf7fffff]
    [ 0.000000] node 0: [mem 0x100000000-0x22dffffff]
    [ 0.000000] On node 0 totalpages: 2081322
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13131 pages used for memmap
    [ 0.000000] DMA32 zone: 840334 pages, LIFO batch:31
    [ 0.000000] Normal zone: 19328 pages used for memmap
    [ 0.000000] Normal zone: 1236992 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbb232000-0xbb238fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbc248000-0xbc74dfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xce79a000-0xce9adfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xce9ae000-0xcea93fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcea94000-0xcf7fefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcf800000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xcf800000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88022dc00000 s87168 r8192 d23424 u524288
    [ 0.000000] pcpu-alloc: s87168 r8192 d23424 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2048778
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=08871484-d630-41f6-a743-4086ad9f8628 rw noisy init=/usr/lib/systemd/systemd nomodeset
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 8112620K/8325288K available (5222K kernel code, 885K rwdata, 1644K rodata, 1116K init, 1284K bss, 212668K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [ 0.000000] NR_IRQS:8448 nr_irqs:712 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 3192.796 MHz processor
    [ 0.000021] Calibrating delay loop (skipped), value calculated using timer frequency.. 6388.65 BogoMIPS (lpj=10642653)
    [ 0.000023] pid_max: default: 32768 minimum: 301
    [ 0.000027] ACPI: Core revision 20140214
    [ 0.007164] ACPI: All ACPI Tables successfully acquired
    [ 0.008322] Security Framework initialized
    [ 0.008326] Yama: becoming mindful.
    [ 0.008691] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.010281] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.010989] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.010996] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.011160] Initializing cgroup subsys memory
    [ 0.011162] Initializing cgroup subsys devices
    [ 0.011164] Initializing cgroup subsys freezer
    [ 0.011165] Initializing cgroup subsys net_cls
    [ 0.011166] Initializing cgroup subsys blkio
    [ 0.011180] CPU: Physical Processor ID: 0
    [ 0.011181] CPU: Processor Core ID: 0
    [ 0.011958] mce: CPU supports 9 MCE banks
    [ 0.011969] CPU0: Thermal monitoring enabled (TM1)
    [ 0.011978] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    tlb_flushall_shift: 6
    [ 0.012042] Freeing SMP alternatives memory: 20K (ffffffff819f6000 - ffffffff819fb000)
    [ 0.012591] ftrace: allocating 20223 entries in 79 pages
    [ 0.018707] dmar: Host address width 39
    [ 0.018709] dmar: DRHD base: 0x000000fed90000 flags: 0x1
    [ 0.018715] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap d2008c20660462 ecap f010da
    [ 0.018716] dmar: RMRR base: 0x000000ce92c000 end: 0x000000ce938fff
    [ 0.018781] IOAPIC id 2 under DRHD base 0xfed90000 IOMMU 0
    [ 0.018781] HPET id 0 under DRHD base 0xfed90000
    [ 0.018782] Queued invalidation will be enabled to support x2apic and Intr-remapping.
    [ 0.018855] Enabled IRQ remapping in x2apic mode
    [ 0.018856] Enabling x2apic
    [ 0.018856] Enabled x2apic
    [ 0.018860] Switched APIC routing to cluster x2apic.
    [ 0.019222] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.052254] smpboot: CPU0: Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz (fam: 06, model: 3c, stepping: 03)
    [ 0.052259] TSC deadline timer enabled
    [ 0.052264] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.052268] ... version: 3
    [ 0.052269] ... bit width: 48
    [ 0.052270] ... generic registers: 8
    [ 0.052270] ... value mask: 0000ffffffffffff
    [ 0.052271] ... max period: 0000ffffffffffff
    [ 0.052271] ... fixed-purpose events: 3
    [ 0.052272] ... event mask: 00000007000000ff
    [ 0.079047] x86: Booting SMP configuration:
    [ 0.079048] .... node #0, CPUs: #1
    [ 0.093027] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.099712] #2 #3
    [ 0.134308] x86: Booted up 1 node, 4 CPUs
    [ 0.134310] smpboot: Total of 4 processors activated (25552.63 BogoMIPS)
    [ 0.136937] devtmpfs: initialized
    [ 0.138913] PM: Registering ACPI NVS region [mem 0xbb232000-0xbb238fff] (28672 bytes)
    [ 0.138915] PM: Registering ACPI NVS region [mem 0xce9ae000-0xcea93fff] (942080 bytes)
    [ 0.139415] pinctrl core: initialized pinctrl subsystem
    [ 0.139443] RTC time: 11:10:27, date: 06/26/14
    [ 0.139466] NET: Registered protocol family 16
    [ 0.139522] cpuidle: using governor ladder
    [ 0.139522] cpuidle: using governor menu
    [ 0.139531] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.139532] ACPI: bus type PCI registered
    [ 0.139533] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.139569] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.139570] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.143859] PCI: Using configuration type 1 for base access
    [ 0.144410] ACPI: Added _OSI(Module Device)
    [ 0.144411] ACPI: Added _OSI(Processor Device)
    [ 0.144412] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.144413] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.147021] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.148606] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.161070] ACPI: SSDT 0x00000000CE9A3C18 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.161369] ACPI: Dynamic OEM Table Load:
    [ 0.161370] ACPI: SSDT 0x0000000000000000 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.174502] ACPI: SSDT 0x00000000CE9A3618 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.174917] ACPI: Dynamic OEM Table Load:
    [ 0.174918] ACPI: SSDT 0x0000000000000000 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.184454] ACPI: SSDT 0x00000000CE9A2D98 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.184763] ACPI: Dynamic OEM Table Load:
    [ 0.184765] ACPI: SSDT 0x0000000000000000 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.194062] ACPI: Interpreter enabled
    [ 0.194068] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140214/hwxface-580)
    [ 0.194072] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140214/hwxface-580)
    [ 0.194082] ACPI: (supports S0 S3 S4 S5)
    [ 0.194083] ACPI: Using IOAPIC for interrupt routing
    [ 0.194102] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.199374] ACPI: Power Resource [FN00] (off)
    [ 0.199419] ACPI: Power Resource [FN01] (off)
    [ 0.199463] ACPI: Power Resource [FN02] (off)
    [ 0.199506] ACPI: Power Resource [FN03] (off)
    [ 0.199551] ACPI: Power Resource [FN04] (off)
    [ 0.199896] ACPI: \_PR_.CPU4: failed to get CPU APIC ID.
    [ 0.199899] ACPI: \_PR_.CPU5: failed to get CPU APIC ID.
    [ 0.199901] ACPI: \_PR_.CPU6: failed to get CPU APIC ID.
    [ 0.199903] ACPI: \_PR_.CPU7: failed to get CPU APIC ID.
    [ 0.200027] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.200030] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.200156] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    [ 0.200234] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    [ 0.200577] PCI host bridge to bus 0000:00
    [ 0.200579] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.200581] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.200582] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.200583] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.200584] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.200585] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.200586] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.200587] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.200587] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.200588] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.200589] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfeafffff]
    [ 0.200595] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
    [ 0.200653] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    [ 0.200679] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.200711] pci 0000:00:01.0: System wakeup disabled by ACPI
    [ 0.200755] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    [ 0.200771] pci 0000:00:14.0: reg 0x10: [mem 0xf3220000-0xf322ffff 64bit]
    [ 0.200822] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.200847] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.200874] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    [ 0.200890] pci 0000:00:16.0: reg 0x10: [mem 0xf323c000-0xf323c00f 64bit]
    [ 0.200945] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.200993] pci 0000:00:16.3: [8086:8c3d] type 00 class 0x070002
    [ 0.201006] pci 0000:00:16.3: reg 0x10: [io 0xf0a0-0xf0a7]
    [ 0.201013] pci 0000:00:16.3: reg 0x14: [mem 0xf323a000-0xf323afff]
    [ 0.201114] pci 0000:00:19.0: [8086:153b] type 00 class 0x020000
    [ 0.201128] pci 0000:00:19.0: reg 0x10: [mem 0xf3200000-0xf321ffff]
    [ 0.201135] pci 0000:00:19.0: reg 0x14: [mem 0xf3239000-0xf3239fff]
    [ 0.201141] pci 0000:00:19.0: reg 0x18: [io 0xf040-0xf05f]
    [ 0.201192] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.201219] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.201246] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    [ 0.201264] pci 0000:00:1a.0: reg 0x10: [mem 0xf3238000-0xf32383ff]
    [ 0.201342] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.201378] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.201405] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    [ 0.201416] pci 0000:00:1b.0: reg 0x10: [mem 0xf3230000-0xf3233fff 64bit]
    [ 0.201476] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.201503] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.201526] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    [ 0.201583] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.201611] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.201635] pci 0000:00:1c.3: [8086:244e] type 01 class 0x060401
    [ 0.201692] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.201720] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.201750] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    [ 0.201768] pci 0000:00:1d.0: reg 0x10: [mem 0xf3237000-0xf32373ff]
    [ 0.201847] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.201883] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.201910] pci 0000:00:1f.0: [8086:8c50] type 00 class 0x060100
    [ 0.202046] pci 0000:00:1f.2: [8086:8c02] type 00 class 0x010601
    [ 0.202058] pci 0000:00:1f.2: reg 0x10: [io 0xf090-0xf097]
    [ 0.202064] pci 0000:00:1f.2: reg 0x14: [io 0xf080-0xf083]
    [ 0.202070] pci 0000:00:1f.2: reg 0x18: [io 0xf070-0xf077]
    [ 0.202076] pci 0000:00:1f.2: reg 0x1c: [io 0xf060-0xf063]
    [ 0.202081] pci 0000:00:1f.2: reg 0x20: [io 0xf020-0xf03f]
    [ 0.202087] pci 0000:00:1f.2: reg 0x24: [mem 0xf3236000-0xf32367ff]
    [ 0.202118] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.202161] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
    [ 0.202173] pci 0000:00:1f.3: reg 0x10: [mem 0xf3235000-0xf32350ff 64bit]
    [ 0.202190] pci 0000:00:1f.3: reg 0x20: [io 0xf000-0xf01f]
    [ 0.202273] pci 0000:01:00.0: [10de:11c0] type 00 class 0x030000
    [ 0.202282] pci 0000:01:00.0: reg 0x10: [mem 0xf2000000-0xf2ffffff]
    [ 0.202291] pci 0000:01:00.0: reg 0x14: [mem 0xe8000000-0xefffffff 64bit pref]
    [ 0.202300] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.202306] pci 0000:01:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.202312] pci 0000:01:00.0: reg 0x30: [mem 0xf3000000-0xf307ffff pref]
    [ 0.202361] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.202388] pci 0000:01:00.1: [10de:0e0b] type 00 class 0x040300
    [ 0.202397] pci 0000:01:00.1: reg 0x10: [mem 0xf3080000-0xf3083fff]
    [ 0.208685] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.208687] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.208689] pci 0000:00:01.0: bridge window [mem 0xe8000000-0xf30fffff]
    [ 0.208737] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.208807] pci 0000:03:00.0: [8086:244e] type 01 class 0x060401
    [ 0.208933] pci 0000:03:00.0: supports D1 D2
    [ 0.208934] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.208954] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.208973] pci 0000:00:1c.3: PCI bridge to [bus 03-04] (subtractive decode)
    [ 0.208977] pci 0000:00:1c.3: bridge window [mem 0xf3100000-0xf31fffff]
    [ 0.208981] pci 0000:00:1c.3: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.208982] pci 0000:00:1c.3: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.208983] pci 0000:00:1c.3: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.208984] pci 0000:00:1c.3: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.208985] pci 0000:00:1c.3: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.208986] pci 0000:00:1c.3: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.208987] pci 0000:00:1c.3: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.208988] pci 0000:00:1c.3: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.208989] pci 0000:00:1c.3: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.208990] pci 0000:00:1c.3: bridge window [mem 0xd0000000-0xfeafffff] (subtractive decode)
    [ 0.209061] pci 0000:04:00.0: [168c:002d] type 00 class 0x028000
    [ 0.209095] pci 0000:04:00.0: reg 0x10: [mem 0xf3100000-0xf310ffff]
    [ 0.209351] pci 0000:03:00.0: PCI bridge to [bus 04] (subtractive decode)
    [ 0.209364] pci 0000:03:00.0: bridge window [mem 0xf3100000-0xf31fffff]
    [ 0.209373] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    [ 0.209374] pci 0000:03:00.0: bridge window [mem 0xf3100000-0xf31fffff] (subtractive decode)
    [ 0.209375] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    [ 0.209376] pci 0000:03:00.0: bridge window [??? 0x00000000 flags 0x0] (subtractive decode)
    [ 0.209377] pci 0000:03:00.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.209378] pci 0000:03:00.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.209379] pci 0000:03:00.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.209380] pci 0000:03:00.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.209381] pci 0000:03:00.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.209382] pci 0000:03:00.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.209383] pci 0000:03:00.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.209384] pci 0000:03:00.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.209385] pci 0000:03:00.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.209386] pci 0000:03:00.0: bridge window [mem 0xd0000000-0xfeafffff] (subtractive decode)
    [ 0.209408] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.209784] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.209814] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.209842] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.209869] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.209897] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 0.209925] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.209954] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 0.209982] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 10 11 12 14 15)
    [ 0.210114] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 0.210172] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.210173] vgaarb: loaded
    [ 0.210173] vgaarb: bridge control possible 0000:01:00.0
    [ 0.210188] PCI: Using ACPI for IRQ routing
    [ 0.211404] PCI: pci_cache_line_size set to 64 bytes
    [ 0.211442] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.211443] e820: reserve RAM buffer [mem 0xbb232000-0xbbffffff]
    [ 0.211444] e820: reserve RAM buffer [mem 0xbc248000-0xbfffffff]
    [ 0.211445] e820: reserve RAM buffer [mem 0xce79a000-0xcfffffff]
    [ 0.211446] e820: reserve RAM buffer [mem 0xcf800000-0xcfffffff]
    [ 0.211446] e820: reserve RAM buffer [mem 0x22e000000-0x22fffffff]
    [ 0.211499] NetLabel: Initializing
    [ 0.211500] NetLabel: domain hash size = 128
    [ 0.211500] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.211507] NetLabel: unlabeled traffic allowed by default
    [ 0.211519] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.211523] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.213540] Switched to clocksource hpet
    [ 0.216475] pnp: PnP ACPI init
    [ 0.216483] ACPI: bus type PNP registered
    [ 0.216524] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.216527] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.216533] pnp 00:01: [dma 4]
    [ 0.216544] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.216555] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.216614] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.216684] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.216686] system 00:04: [io 0xffff] has been reserved
    [ 0.216687] system 00:04: [io 0xffff] has been reserved
    [ 0.216688] system 00:04: [io 0xffff] has been reserved
    [ 0.216689] system 00:04: [io 0x1c00-0x1cfe] has been reserved
    [ 0.216690] system 00:04: [io 0x1d00-0x1dfe] has been reserved
    [ 0.216691] system 00:04: [io 0x1e00-0x1efe] has been reserved
    [ 0.216692] system 00:04: [io 0x1f00-0x1ffe] has been reserved
    [ 0.216693] system 00:04: [io 0x1800-0x18fe] could not be reserved
    [ 0.216695] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.216696] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.216715] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.216745] system 00:06: [io 0x1854-0x1857] has been reserved
    [ 0.216746] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.216822] system 00:07: [io 0x0a00-0x0a0f] has been reserved
    [ 0.216823] system 00:07: [io 0x0a30-0x0a3f] has been reserved
    [ 0.216824] system 00:07: [io 0x0a20-0x0a2f] has been reserved
    [ 0.216825] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.216983] pnp 00:08: [dma 0 disabled]
    [ 0.217013] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.217187] pnp 00:09: [dma 0 disabled]
    [ 0.217255] pnp 00:09: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.217285] system 00:0a: [io 0x04d0-0x04d1] has been reserved
    [ 0.217286] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.217303] pnp 00:0b: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.217561] system 00:0c: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.217562] system 00:0c: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.217563] system 00:0c: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.217564] system 00:0c: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.217566] system 00:0c: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.217567] system 00:0c: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.217568] system 00:0c: [mem 0xfed90000-0xfed93fff] could not be reserved
    [ 0.217569] system 00:0c: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.217570] system 00:0c: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.217572] system 00:0c: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.217573] system 00:0c: [mem 0xf7fef000-0xf7feffff] has been reserved
    [ 0.217574] system 00:0c: [mem 0xf7ff0000-0xf7ff0fff] has been reserved
    [ 0.217575] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.217728] pnp: PnP ACPI: found 13 devices
    [ 0.217729] ACPI: bus type PNP unregistered
    [ 0.223413] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.223415] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.223417] pci 0000:00:01.0: bridge window [mem 0xe8000000-0xf30fffff]
    [ 0.223421] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.223429] pci 0000:03:00.0: PCI bridge to [bus 04]
    [ 0.223436] pci 0000:03:00.0: bridge window [mem 0xf3100000-0xf31fffff]
    [ 0.223448] pci 0000:00:1c.3: PCI bridge to [bus 03-04]
    [ 0.223452] pci 0000:00:1c.3: bridge window [mem 0xf3100000-0xf31fffff]
    [ 0.223458] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.223459] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.223460] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.223461] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.223462] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.223463] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.223464] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.223465] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.223466] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.223467] pci_bus 0000:00: resource 13 [mem 0xd0000000-0xfeafffff]
    [ 0.223468] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.223469] pci_bus 0000:01: resource 1 [mem 0xe8000000-0xf30fffff]
    [ 0.223470] pci_bus 0000:03: resource 1 [mem 0xf3100000-0xf31fffff]
    [ 0.223471] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.223472] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.223473] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.223474] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.223475] pci_bus 0000:03: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.223476] pci_bus 0000:03: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.223477] pci_bus 0000:03: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.223478] pci_bus 0000:03: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.223479] pci_bus 0000:03: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.223480] pci_bus 0000:03: resource 13 [mem 0xd0000000-0xfeafffff]
    [ 0.223481] pci_bus 0000:04: resource 1 [mem 0xf3100000-0xf31fffff]
    [ 0.223482] pci_bus 0000:04: resource 5 [mem 0xf3100000-0xf31fffff]
    [ 0.223483] pci_bus 0000:04: resource 8 [io 0x0000-0x0cf7]
    [ 0.223484] pci_bus 0000:04: resource 9 [io 0x0d00-0xffff]
    [ 0.223485] pci_bus 0000:04: resource 10 [mem 0x000a0000-0x000bffff]
    [ 0.223486] pci_bus 0000:04: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.223487] pci_bus 0000:04: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.223488] pci_bus 0000:04: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.223489] pci_bus 0000:04: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.223490] pci_bus 0000:04: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.223491] pci_bus 0000:04: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.223492] pci_bus 0000:04: resource 17 [mem 0xd0000000-0xfeafffff]
    [ 0.223506] NET: Registered protocol family 2
    [ 0.223609] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.223730] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.223895] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.223910] TCP: reno registered
    [ 0.223917] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.223944] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.223988] NET: Registered protocol family 1
    [ 0.256980] pci 0000:01:00.0: Boot video device
    [ 0.256994] PCI: CLS 64 bytes, default 64
    [ 0.257020] Unpacking initramfs...
    [ 0.294705] Freeing initrd memory: 3168K (ffff8800379c0000 - ffff880037cd8000)
    [ 0.294716] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.294717] software IO TLB [mem 0xca79a000-0xce79a000] (64MB) mapped at [ffff8800ca79a000-ffff8800ce799fff]
    [ 0.294842] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    [ 0.294863] Scanning for low memory corruption every 60 seconds
    [ 0.294994] futex hash table entries: 1024 (order: 4, 65536 bytes)
    [ 0.303763] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.304553] zbud: loaded
    [ 0.304660] VFS: Disk quotas dquot_6.5.2
    [ 0.304681] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.304745] msgmni has been set to 15851
    [ 0.304773] Key type big_key registered
    [ 0.304856] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.304885] io scheduler noop registered
    [ 0.304886] io scheduler deadline registered
    [ 0.304909] io scheduler cfq registered (default)
    [ 0.305005] pcieport 0000:00:01.0: irq 41 for MSI/MSI-X
    [ 0.305115] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.305124] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.305139] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 0.305140] vesafb: scrolling: redraw
    [ 0.305141] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.305727] vesafb: framebuffer at 0xf1000000, mapped to 0xffffc90004e80000, using 8128k, total 8128k
    [ 0.421564] Console: switching to colour frame buffer device 240x67
    [ 0.536923] fb0: VESA VGA frame buffer device
    [ 0.536932] intel_idle: MWAIT substates: 0x42120
    [ 0.536933] intel_idle: v0.4 model 0x3C
    [ 0.536934] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.537045] GHES: HEST is not enabled!
    [ 0.537073] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.557614] 00:08: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 0.578155] 0000:00:16.3: ttyS1 at I/O 0xf0a0 (irq = 19, base_baud = 115200) is a 16550A
    [ 0.578323] Linux agpgart interface v0.103
    [ 0.578347] rtc_cmos 00:05: RTC can wake from S4
    [ 0.578460] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.578493] rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.578499] Intel P-state driver initializing.
    [ 0.578506] Intel pstate controlling: cpu 0
    [ 0.578516] Intel pstate controlling: cpu 1
    [ 0.578525] Intel pstate controlling: cpu 2
    [ 0.578533] Intel pstate controlling: cpu 3
    [ 0.578547] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.578599] TCP: cubic registered
    [ 0.578655] NET: Registered protocol family 10
    [ 0.578791] NET: Registered protocol family 17
    [ 0.579032] registered taskstats version 1
    [ 0.579379] Magic number: 2:735:176
    [ 0.579408] acpi device:39: hash matches
    [ 0.579414] acpi device:0c: hash matches
    [ 0.579465] rtc_cmos 00:05: setting system clock to 2014-06-26 11:10:28 UTC (1403781028)
    [ 0.579516] PM: Hibernation image not present or could not be loaded.
    [ 0.579998] Freeing unused kernel memory: 1116K (ffffffff818df000 - ffffffff819f6000)
    [ 0.579999] Write protecting the kernel read-only data: 8192k
    [ 0.581473] Freeing unused kernel memory: 912K (ffff88000151c000 - ffff880001600000)
    [ 0.582105] Freeing unused kernel memory: 404K (ffff88000179b000 - ffff880001800000)
    [ 0.586339] random: systemd-tmpfile urandom read with 65 bits of entropy available
    [ 0.587122] systemd-udevd[58]: starting version 213
    [ 0.595903] ACPI: bus type USB registered
    [ 0.595926] usbcore: registered new interface driver usbfs
    [ 0.595933] usbcore: registered new interface driver hub
    [ 0.596405] usbcore: registered new device driver usb
    [ 0.596719] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.596815] ehci-pci: EHCI PCI platform driver
    [ 0.596919] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.596924] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.596934] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.597169] SCSI subsystem initialized
    [ 0.598545] libata version 3.00 loaded.
    [ 0.600825] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.600841] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf3238000
    [ 0.600943] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.601297] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.601307] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.610538] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.610659] hub 1-0:1.0: USB hub found
    [ 0.610663] hub 1-0:1.0: 2 ports detected
    [ 0.610845] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.610849] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.610858] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.614752] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.614762] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf3237000
    [ 0.623945] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.624126] hub 2-0:1.0: USB hub found
    [ 0.624130] hub 2-0:1.0: 2 ports detected
    [ 0.624306] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.624310] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 0.624428] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.624442] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
    [ 0.624616] hub 3-0:1.0: USB hub found
    [ 0.624632] hub 3-0:1.0: 12 ports detected
    [ 0.625905] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.625908] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 0.626071] hub 4-0:1.0: USB hub found
    [ 0.626082] hub 4-0:1.0: 6 ports detected
    [ 0.626739] ahci 0000:00:1f.2: version 3.0
    [ 0.626827] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 0.626869] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
    [ 0.626871] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst
    [ 0.631106] scsi0 : ahci
    [ 0.631237] scsi1 : ahci
    [ 0.631544] scsi2 : ahci
    [ 0.631847] scsi3 : ahci
    [ 0.632048] scsi4 : ahci
    [ 0.632210] scsi5 : ahci
    [ 0.632245] ata1: SATA max UDMA/133 abar m2048@0xf3236000 port 0xf3236100 irq 43
    [ 0.632247] ata2: SATA max UDMA/133 abar m2048@0xf3236000 port 0xf3236180 irq 43
    [ 0.632247] ata3: DUMMY
    [ 0.632248] ata4: DUMMY
    [ 0.632249] ata5: DUMMY
    [ 0.632249] ata6: DUMMY
    [ 0.917514] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 0.950851] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.950865] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.951513] ata2.00: ATA-9: WDC WD10EZEX-08M2NA0, 01.01A01, max UDMA/100
    [ 0.951515] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.952272] ata2.00: configured for UDMA/100
    [ 0.965729] ata1.00: ATA-8: KINGSTON SV300S37A120G, 527ABBF0, max UDMA/133
    [ 0.965731] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.975526] ata1.00: configured for UDMA/133
    [ 0.975682] scsi 0:0:0:0: Direct-Access ATA KINGSTON SV300S3 527A PQ: 0 ANSI: 5
    [ 0.976133] scsi 1:0:0:0: Direct-Access ATA WDC WD10EZEX-08M 01.0 PQ: 0 ANSI: 5
    [ 0.979123] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    [ 0.979131] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 0.979133] sd 1:0:0:0: [sdb] 4096-byte physical blocks
    [ 0.979142] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.979144] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.979150] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.979241] sd 1:0:0:0: [sdb] Write Protect is off
    [ 0.979242] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 0.979260] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.979452] sda: sda1 sda2 sda3
    [ 0.979690] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 0.992405] sdb: sdb1 sdb2 sdb3 sdb4
    [ 0.992837] sd 1:0:0:0: [sdb] Attached SCSI disk
    [ 1.041522] hub 1-1:1.0: USB hub found
    [ 1.041639] hub 1-1:1.0: 6 ports detected
    [ 1.147659] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.271718] hub 2-1:1.0: USB hub found
    [ 1.271809] hub 2-1:1.0: 6 ports detected
    [ 1.297769] tsc: Refined TSC clocksource calibration: 3192.606 MHz
    [ 1.431263] usb 3-5: new low-speed USB device number 2 using xhci_hcd
    [ 1.537046] random: nonblocking pool is initialized
    [ 1.556157] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.587430] systemd[1]: systemd 214 running in system mode. (+PAM -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
    [ 1.587513] systemd[1]: Detected architecture 'x86-64'.
    [ 1.588205] systemd[1]: Set hostname to <XSign>.
    [ 1.614195] usb 3-5: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 1.626104] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 1.626132] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 1.626139] systemd[1]: Starting Remote File Systems.
    [ 1.626581] systemd[1]: Reached target Remote File Systems.
    [ 1.626590] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 1.626605] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 1.626610] systemd[1]: Starting Paths.
    [ 1.626945] systemd[1]: Reached target Paths.
    [ 1.626950] systemd[1]: Starting Encrypted Volumes.
    [ 1.627363] systemd[1]: Reached target Encrypted Volumes.
    [ 1.627373] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 1.628175] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 1.628182] systemd[1]: Expecting device dev-sdb4.device...
    [ 1.628567] systemd[1]: Expecting device dev-sda1.device...
    [ 1.628950] systemd[1]: Expecting device dev-sdb3.device...
    [ 1.629332] systemd[1]: Starting Root Slice.
    [ 1.632141] systemd[1]: Created slice Root Slice.
    [ 1.632148] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 1.632697] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 1.632703] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 1.633212] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 1.633217] systemd[1]: Starting Delayed Shutdown Socket.
    [ 1.633664] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 1.633669] systemd[1]: Starting Journal Socket (/dev/log).
    [ 1.634133] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 1.634139] systemd[1]: Starting udev Control Socket.
    [ 1.634558] systemd[1]: Listening on udev Control Socket.
    [ 1.634564] systemd[1]: Starting udev Kernel Socket.
    [ 1.634987] systemd[1]: Listening on udev Kernel Socket.
    [ 1.634993] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 1.635469] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 1.635474] systemd[1]: Starting User and Session Slice.
    [ 1.635984] systemd[1]: Created slice User and Session Slice.
    [ 1.635990] systemd[1]: Starting Journal Socket.
    [ 1.636382] systemd[1]: Listening on Journal Socket.
    [ 1.636391] systemd[1]: Starting System Slice.
    [ 1.636828] systemd[1]: Created slice System Slice.
    [ 1.636837] systemd[1]: Started File System Check on Root Device.
    [ 1.636841] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 1.637390] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 1.637397] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 1.638043] systemd[1]: Mounting Temporary Directory...
    [ 1.639117] systemd[1]: Mounting Debug File System...
    [ 1.639740] systemd[1]: Starting udev Coldplug all Devices...
    [ 1.640987] systemd[1]: Started Load Kernel Modules.
    [ 1.640998] systemd[1]: Mounted FUSE Control File System.
    [ 1.641689] systemd[1]: Starting Apply Kernel Variables...
    [ 1.642275] systemd[1]: Mounting POSIX Message Queue File System...
    [ 1.642976] systemd[1]: Starting Setup Virtual Console...
    [ 1.644065] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 1.645742] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 1.646672] systemd[1]: Mounting Huge Pages File System...
    [ 1.647253] systemd[1]: Mounting Configuration File System...
    [ 1.648402] systemd[1]: Started Set Up Additional Binary Formats.
    [ 1.648413] systemd[1]: Starting system-getty.slice.
    [ 1.649035] systemd[1]: Created slice system-getty.slice.
    [ 1.649044] systemd[1]: Starting Journal Service...
    [ 1.649940] systemd[1]: Started Journal Service.
    [ 1.684590] systemd-udevd[160]: starting version 214
    [ 1.714384] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 1.714388] ACPI: Power Button [PWRB]
    [ 1.714417] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 1.714419] ACPI: Power Button [PWRF]
    [ 1.716491] pps_core: LinuxPPS API ver. 1 registered
    [ 1.716493] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 1.716760] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 1.717286] PTP clock support registered
    [ 1.718023] mei_me 0000:00:16.0: irq 44 for MSI/MSI-X
    [ 1.721435] parport_pc 00:09: reported by Plug and Play ACPI
    [ 1.721481] parport0: PC-style at 0x378, irq 5 [PCSPP,TRISTATE]
    [ 1.721541] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 1.721542] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
    [ 1.721903] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 1.721917] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 1.748190] ACPI: Fan [FAN0] (off)
    [ 1.748215] ACPI: Fan [FAN1] (off)
    [ 1.748234] ACPI: Fan [FAN2] (off)
    [ 1.748255] ACPI: Fan [FAN3] (off)
    [ 1.748276] ACPI: Fan [FAN4] (off)
    [ 1.749478] thermal LNXTHERM:00: registered as thermal_zone0
    [ 1.749479] ACPI: Thermal Zone [TZ00] (28 C)
    [ 1.749609] thermal LNXTHERM:01: registered as thermal_zone1
    [ 1.749610] ACPI: Thermal Zone [TZ01] (30 C)
    [ 1.757876] [drm] Initialized drm 1.1.0 20060810
    [ 1.767187] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 1.774098] cfg80211: Calling CRDA to update world regulatory domain
    [ 1.774823] usb 3-6: new full-speed USB device number 3 using xhci_hcd
    [ 1.795673] Adding 16002224k swap on /dev/sdb4. Priority:-1 extents:1 across:16002224k FS
    [ 1.801517] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x9
    [ 1.805001] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.806877] microcode: CPU1 sig=0x306c3, pf=0x2, revision=0x9
    [ 1.806888] microcode: CPU2 sig=0x306c3, pf=0x2, revision=0x9
    [ 1.806895] microcode: CPU3 sig=0x306c3, pf=0x2, revision=0x9
    [ 1.806928] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 1.823570] AVX2 version of gcm_enc/dec engaged.
    [ 1.849773] nvidia: module license 'NVIDIA' taints kernel.
    [ 1.849774] Disabling lock debugging due to kernel taint
    [ 1.856456] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [ 1.856549] ppdev: user-space parallel port driver
    [ 1.856785] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
    [ 1.856789] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 337.25 Tue May 27 11:05:28 PDT 2014
    [ 1.993532] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 1.993533] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 74:d4:35:86:a4:73
    [ 1.993534] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 1.993584] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
    [ 1.993718] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 1.993806] snd_hda_intel 0000:01:00.1: Disabling MSI
    [ 1.993810] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
    [ 1.993950] i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
    [ 1.994002] ACPI Warning: SystemIO range 0x000000000000f000-0x000000000000f01f conflicts with OpRegion 0x000000000000f000-0x000000000000f00f (\_SB_.PCI0.SBUS.SMBI) (20140214/utaddress-258)
    [ 1.994003] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.996461] iTCO_vendor_support: vendor-support=0
    [ 1.996939] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 1.996968] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
    [ 2.005457] sound hdaudioC0D2: autoconfig: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
    [ 2.005458] sound hdaudioC0D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 2.005459] sound hdaudioC0D2: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
    [ 2.005459] sound hdaudioC0D2: mono: mono_out=0x0
    [ 2.005460] sound hdaudioC0D2: dig-out=0x11/0x1e
    [ 2.005460] sound hdaudioC0D2: inputs:
    [ 2.005461] sound hdaudioC0D2: Rear Mic=0x18
    [ 2.005462] sound hdaudioC0D2: Front Mic=0x19
    [ 2.005462] sound hdaudioC0D2: Line=0x1a
    [ 2.005463] sound hdaudioC0D2: CD=0x1c
    [ 2.005463] sound hdaudioC0D2: dig-in=0x1f
    [ 2.008421] systemd-udevd[162]: renamed network interface eth0 to eno1
    [ 2.019322] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D2/input6
    [ 2.020297] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 2.020335] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 2.020370] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 2.020403] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 2.020435] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 2.020468] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 2.026197] EXT4-fs (sdb3): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 2.132907] systemd-journald[153]: Received request to flush runtime journal from PID 1
    [ 2.157519] ath: EEPROM regdomain: 0x809c
    [ 2.157520] ath: EEPROM indicates we should expect a country code
    [ 2.157520] ath: doing EEPROM country->regdmn map search
    [ 2.157520] ath: country maps to regdmn code: 0x52
    [ 2.157521] ath: Country alpha2 being used: CN
    [ 2.157521] ath: Regpair used: 0x52
    [ 2.160431] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 2.160562] ieee80211 phy0: Atheros AR9287 Rev:2 mem=0xffffc90006800000, irq=19
    [ 2.181947] systemd-udevd[162]: renamed network interface wlan0 to wlp4s0
    [ 2.298729] Switched to clocksource tsc
    [ 2.376487] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
    [ 2.376547] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
    [ 2.376591] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
    [ 2.376632] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
    [ 2.560514] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
    [ 3.062601] nvidia 0000:01:00.0: irq 47 for MSI/MSI-X
    [ 3.592415] NVRM: Your system is not currently configured to drive a VGA console
    [ 3.592417] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    [ 3.592418] NVRM: requires the use of a text-mode VGA console. Use of other console
    [ 3.592419] NVRM: drivers including, but not limited to, vesafb, may result in
    [ 3.592420] NVRM: corruption and stability problems, and is not supported.
    [ 7.032503] usb 3-6: unable to read config index 0 descriptor/all
    [ 7.032509] usb 3-6: can't read configurations, error -110
    [ 7.299384] usb 3-11: new high-speed USB device number 5 using xhci_hcd
    [ 7.769759] usb 3-6: new full-speed USB device number 6 using xhci_hcd
    [ 7.973941] hidraw: raw HID events driver (C) Jiri Kosina
    [ 7.986288] usbcore: registered new interface driver usbhid
    [ 7.986290] usbhid: USB HID core driver
    [ 7.987065] input: HID 046a:0011 as /devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/0003:046A:0011.0001/input/input17
    [ 7.987234] hid-generic 0003:046A:0011.0001: input,hidraw0: USB HID v1.11 Keyboard [HID 046a:0011] on usb-0000:00:14.0-5/input0
    [ 7.987314] input: Razer Razer DeathAdder as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6:1.0/0003:1532:0016.0002/input/input18
    [ 7.987439] hid-generic 0003:1532:0016.0002: input,hidraw1: USB HID v1.11 Mouse [Razer Razer DeathAdder] on usb-0000:00:14.0-6/input0
    [ 7.989050] mousedev: PS/2 mouse device common for all mice
    [ 8.124996] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 8.136818] usb 3-11: reset high-speed USB device number 5 using xhci_hcd
    [ 8.136826] xhci_hcd 0000:00:14.0: Setup ERROR: setup context command for slot 4.
    [ 8.136827] usb 3-11: hub failed to enable device, error -22
    [ 8.226730] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 8.226799] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
    [ 8.296772] usb 3-11: reset high-speed USB device number 5 using xhci_hcd
    [ 8.296839] xhci_hcd 0000:00:14.0: Setup ERROR: setup context command for slot 4.
    [ 8.296841] usb 3-11: hub failed to enable device, error -22
    [ 8.456902] usb 3-11: reset high-speed USB device number 5 using xhci_hcd
    [ 8.481367] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95848
    [ 8.481369] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95800
    [ 8.481370] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95890
    [ 8.481371] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f958d8
    [ 8.481372] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95920
    [ 8.481373] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f95968
    [ 8.481374] xhci_hcd 0000:00:14.0: xHCI xhci_drop_endpoint called with disabled ep ffff880219f959b0
    [ 8.481751] ieee80211 phy1: rt2x00_set_rt: Info - RT chipset 3070, rev 0201 detected
    [ 8.491510] ieee80211 phy1: rt2x00_set_rf: Info - RF chipset 0005 detected
    [ 8.491667] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht'
    [ 8.491846] usbcore: registered new interface driver rt2800usb
    [ 8.527024] systemd-udevd[163]: renamed network interface wlan0 to wlp0s20u11
    [ 37.746771] fuse init (API version 7.23)
    [ 162.364940] ieee80211 phy1: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin'
    [ 162.368409] ieee80211 phy1: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.29
    [ 162.630888] IPv6: ADDRCONF(NETDEV_UP): wlp0s20u11: link is not ready
    [ 165.603287] IPv6: ADDRCONF(NETDEV_UP): wlp0s20u11: link is not ready
    [ 165.711742] e1000e: eno1 NIC Link is Down
    [ 165.815617] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 165.917212] e1000e 0000:00:19.0: irq 45 for MSI/MSI-X
    [ 165.917299] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
    [ 166.200400] IPv6: ADDRCONF(NETDEV_UP): wlp0s20u11: link is not ready
    [ 169.526968] wlp0s20u11: authenticate with f8:d1:11:e0:43:42
    [ 169.559811] wlp0s20u11: send auth to f8:d1:11:e0:43:42 (try 1/3)
    [ 169.561558] wlp0s20u11: authenticated
    [ 169.563460] wlp0s20u11: associate with f8:d1:11:e0:43:42 (try 1/3)
    [ 169.566987] wlp0s20u11: RX AssocResp from f8:d1:11:e0:43:42 (capab=0x431 status=0 aid=2)
    [ 169.569703] wlp0s20u11: associated
    [ 169.569713] IPv6: ADDRCONF(NETDEV_CHANGE): wlp0s20u11: link becomes ready
    [ 169.601748] wlp0s20u11: Limiting TX power to 20 (20 - 0) dBm as advertised by f8:d1:11:e0:43:42

  • Can not find a library in Aperture after upgrading to Mavericks?

    I upgraded my Aperture to 3.5 on Mavericks. Since I have updated my Aperture, I cannot open my second Library "Aperture Library"
    This is what it happens:
    I can not find my "Aperture Library" photos, and when I try to switch between the library (File>Switch Libaries>"Aperture Library" this comes up:
    When I click on relaunch:Then when I click on "Aperture Library" and press chose, a 3 second process occurs and Aperture returns back to where it was when it was opened. The "Aperture Library" doesn't appear anywhere.
    When I go to Altinoz (My Mac) > Pictures > Aperture Library:
    When I try to open the Aperture Library folder in My Mac > Pictures > Aperture Library
    Do you want to import this library to Aperture (which was already in the old verison of Aperture)
    An error comes up:
    The library could not be imported because it is from an out of date version of Aperture 3. Please upgrade the library to the latest version of Aperture 3 and try again.
    I would really appreciate your help on helping me find "Aperture Library" Photos I have, since the upgrading to Mavericks really made annoying problems to me.

    It seems to me that you need Aperture 3.2.4 to open your library.
    If you have it then do the following:
    Uninstall Aperture 3.5
    Install Aperture 3.2.4
    Start Aperture and verify that you can access your library
    Update to Aperture 3.4.5
    Start Aperture and verify that you can access your library
    At the end update to Aperture 3.5 and upgrade your library
    If you don't have the older versions, maybe try to open the library in iPhoto. Does that work?

  • Can not get data by key in BDB4.5

    my code is here :
    17 class SortExample
    18 {
    19 public:
    20 SortExample(FILE *fp);
    21 ~SortExample();
    22 void run();
    23
    24 private:
    25 Db *dbp;
    26 Dbc *dbcp;
    27 };
    29 SortExample::SortExample(FILE *fp)
    30 {
    31 char buf1[256];
    32 char buf2[256];
    33 memset(buf1,0,256);
    34 memset(buf2,0,256);
    35 (void)remove(filename);
    38 dbp = new Db(NULL,0);
    39 dbp->open(NULL,filename , NULL,DBTYPE, DB_CREATE, 0);
    40 while(fgets(buf1,256,fp))
    41 {
    42 memcpy(buf2,buf1,256);
    43 int len = strlen((char*)buf1);
    44 buf1[len-1] = '\0';
    45 buf2[len-1] = '\0';
    46 len = len + 1;
    47 Dbt* key = new Dbt(buf2, len);
    48 Dbt* data = new Dbt(buf1,len);
    49 dbp->put(NULL,key,data,DB_NOOVERWRITE);
    50 memset(buf1,0,256);
    51 memset(buf2,0,256);
    52 delete key;
    53 delete data;
    54 }//end while
    55 dbp->close(0);
    56 dbp = NULL;
    57 }
    62 }
    72 void SortExample::run()
    73 {
    74 dbp = new Db(NULL,0);
    75 dbp->open(NULL,filename , NULL,DBTYPE, DB_CREATE, 0);
    87 char p1[20];
    88 memset(p1,0,20);
    89 char* p2 = "lds";
    90 Dbt key1(p2,strlen(p2)+1);
    91 Dbt data1(p1,20);
    93 printf("\"%s\"\n",key1.get_data());
    97 int ret = dbp->get(NULL,&key1,&data1,0);
    98
    99 if(ret == DB_NOTFOUND)
    100 printf("can not find by key\n");
    101 else
    102 printf("\"%s\",\"%s\"\n",(char*)key1.get_data(),(char*)data1.get_data());
    103 }
    105 int main(int argc,char** argv)
    106 {
    107 FILE* fp = fopen("sortfile.txt","r");
    108 SortExample* sort = new SortExample(fp);
    109 fclose(fp);
    110 sort->run();
    111 }
    the out put is here:
    "adfdl","adfdl"
    "dsfd","dsfd"
    "ldff","ldff"
    "lds","lds"
    "sddf","sddf"
    "sdfj","sdfj"
    "sefd","sefd"
    "sfct","sfct"
    "lds"
    can not find by key
    the sortfile content is here:
    sdfj
    adfdl
    dsfd
    ldff
    lds
    sefd
    sfct
    sddf

    Hi,
    when we want to find data by key, the length of key
    should plus 1.
    Thanks,The problem is solved.Of course, the other option to resolve this was to increment by 1 the length of the searched key, so that it would comply with the size of the entries stored.
    Here I want to share some of my experience.
    when we use the lib with C++, some things should be
    pay attention.
    before we configure before make, the commend should
    like this.
    ../dist/configure --enablecxx
    by this commend we can get libdbcxx.a
    when link we should add -static to the flag, and add
    -lpthread to the lib.Thanks for sharing this. Indeed, to build the db c++ library "--enable-cxx" must be specified on the configuration line, and I would suggest also setting the CXX env variable to g++. For loading additional libraries, like "libpthread", than LDFLAGS and LIBS env variables must be set correctly to indicate the location(s) for the additional libraries and, respectively, the libraries that should be loaded.
    Regards,
    Andrei

  • Can not get data from database

    hi all,
        there is a problem ,  when i write like below :
    SELECT * FROM bsis INTO CORRESPONDING FIELDS OF TABLE it_temp
              WHERE bukrs = p_bukrs
                AND hkont = p_hkont.
    p_bukrs , p_hkont are all on the selection screen , and p_bukrs = 1200 another is eq blank. i can not find any data , but with the same condition i can find some data in database , when i debeg i found that p_hkont is initial.
        when i write like this :
    SELECT * FROM bsis INTO CORRESPONDING FIELDS OF TABLE it_temp
              WHERE bukrs = p_bukrs .
    this time i can find the data like the database.
        so , does someone know where the problem is , why i can not get data ?
    kind regards
    kevin

    hi,
    if u r  using bukrs and hkont as parameters in selection screen then
    SELECT * FROM bsis INTO CORRESPONDING FIELDS OF TABLE it_temp
    WHERE bukrs = p_bukrs
    AND hkont = p_hkont.
    this will work.
    if u r using then as select-option then the above does n't work.
    bcoz select-options work as internal table bcoz of that u have use the query like this
    SELECT * FROM bsis INTO CORRESPONDING FIELDS OF TABLE it_temp
    WHERE bukrs IN p_bukrs
    AND hkont IN p_hkont.
    <REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN>
    Edited by: Alvaro Tejada Galindo on Aug 15, 2008 5:25 PM

  • Can not find the the RBS tables after installing the Remote Blog Storage

    Hi,
    I am trying to configure the Remote Blob storage on my Sharepoint Server 2013. I am using the SQL Server Express 10.50.6000.
    Everything is going fine, but I can not find the tables in the Database.
    I am not sure where I did the wrong thing.
    machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    but the installation is looking for some other.
    Thanks in advance.
    === Verbose logging started: 3/23/2015 13:55:09 Build type: SHIP UNICODE 5.00.7601.00 Calling process: C:\Windows\system32\msiexec.exe ===
    MSI (c) (44:F8) [13:55:09:000]: Resetting cached policy values
    MSI (c) (44:F8) [13:55:09:000]: Machine policy value 'Debug' is 0
    MSI (c) (44:F8) [13:55:09:000]: ******* RunEngine:
    ******* Product: RBS.msi
    ******* Action:
    ******* CommandLine: **********
    MSI (c) (44:F8) [13:55:09:000]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (44:F8) [13:55:09:000]: Grabbed execution mutex.
    MSI (c) (44:F8) [13:55:09:016]: Cloaking enabled.
    MSI (c) (44:F8) [13:55:09:016]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (44:F8) [13:55:09:016]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (90:A4) [13:55:09:016]: Running installation inside multi-package transaction D:\RBS.msi
    MSI (s) (90:A4) [13:55:09:016]: Grabbed execution mutex.
    MSI (s) (90:34) [13:55:09:016]: Resetting cached policy values
    MSI (s) (90:34) [13:55:09:016]: Machine policy value 'Debug' is 0
    MSI (s) (90:34) [13:55:09:016]: ******* RunEngine:
    ******* Product: D:\RBS.msi
    ******* Action:
    ******* CommandLine: **********
    MSI (s) (90:34) [13:55:09:031]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (90:34) [13:55:09:031]: Setting cached product context: User non-assigned for product: FB42F99F09B0E3646985F32DFE3C9C29
    MSI (s) (90:34) [13:55:09:031]: Using cached product context: User non-assigned for product: FB42F99F09B0E3646985F32DFE3C9C29
    MSI (s) (90:34) [13:55:09:031]: Setting cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    115C834F46A5E33479CEE53534AD76A0
    :34) [13:55:09:265]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:265]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (90:34) [13:55:09:265]: Enabling baseline caching for this transaction since all active patches are MSI 3.0 style MSPs or at least one MSI 3.0 minor update patch is active
    MSI (s) (90:34) [13:55:09:265]: APPCOMPAT: looking for appcompat database entry with ProductCode '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'.
    MSI (s) (90:34) [13:55:09:265]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (90:34) [13:55:09:265]: Transforms are not secure.
    MSI (s) (90:34) [13:55:09:265]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'D:\rbs_install_log.txt'.
    MSI (s) (90:34) [13:55:09:265]: Command Line: TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME=WSS_Content DBINSTANCE=jpntkyint01\sharepoint FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1 CURRENTDIRECTORY=D:\ CLIENTUILEVEL=3 CLIENTPROCESSID=14660
    MSI (s) (90:34) [13:55:09:265]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{1AC68E73-94F1-4A01-B229-82B2F73C3326}'.
    MSI (s) (90:34) [13:55:09:265]: Product Code passed to Engine.Initialize: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (90:34) [13:55:09:265]: Product Code from property table before transforms: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (90:34) [13:55:09:265]: Product Code from property table after transforms: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (90:34) [13:55:09:265]: Product registered: entering maintenance mode
    MSI (s) (90:34) [13:55:09:265]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:265]: Determined that existing product (either this product or the product being upgraded with a patch) is installed per-machine.
    MSI (s) (90:34) [13:55:09:265]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:265]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is admin assigned: LocalSystem owns the publish key.
    MSI (s) (90:34) [13:55:09:265]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is managed.
    MSI (s) (90:34) [13:55:09:265]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding ProductState property. Its value is '5'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
    MSI (s) (90:34) [13:55:09:281]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Specifed source is already in a list.
    MSI (s) (90:34) [13:55:09:281]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'DisableBrowse' is 0
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'AllowLockdownBrowse' is 0
    MSI (s) (90:34) [13:55:09:281]: Adding new sources is allowed.
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Package name retrieved from configuration data: 'RBS.msi'
    MSI (s) (90:34) [13:55:09:281]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'DisableMsi' is 1
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (90:34) [13:55:09:281]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is admin assigned: LocalSystem owns the publish key.
    MSI (s) (90:34) [13:55:09:281]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is managed.
    MSI (s) (90:34) [13:55:09:281]: Running product '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}' with elevated privileges: Product is assigned.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding TRUSTSERVERCERTIFICATE property. Its value is 'true'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Modifying FILEGROUP property. Its current value is 'default'. Its new value: 'PRIMARY'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding DBNAME property. Its value is 'WSS_Content'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding DBINSTANCE property. Its value is 'jpntkyint01\sharepoint'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Modifying FILESTREAMFILEGROUP property. Its current value is 'default'. Its new value: 'RBSFilestreamProvider'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding FILESTREAMSTORENAME property. Its value is 'FilestreamProvider_1'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'D:\'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '14660'.
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (90:34) [13:55:09:328]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '489ffd242e95054781e9ce4b8d0b8aa5'.
    MSI (s) (90:34) [13:55:09:328]: RESTART MANAGER: Session opened.
    MSI (s) (90:34) [13:55:09:328]: TRANSFORMS property is now:
    MSI (s) (90:34) [13:55:09:328]: PROPERTY CHANGE: Adding PRODUCTLANGUAGE property. Its value is '1033'.
    MSI (s) (90:34) [13:55:09:328]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '300'.
    MSI (s) (90:34) [13:55:09:328]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming
    MSI (s) (90:34) [13:55:09:328]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\Favorites
    Action ended 13:55:09: AppSearch. Return value 1.
    Action start 13:55:09: ValidateProductID.
    MSI (s) (90:34) [13:55:09:390]: Skipping action: Sqlmsirc_CheckLanguage_64 (condition is false)
    MSI (s) (90:34) [13:55:09:390]: Doing action: CostInitialize
    Action ended 13:55:09: ValidateProductID. Return value 1.
    MSI (s) (90:34) [13:55:09:406]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (90:34) [13:55:09:406]: Baseline: Sorting baselines for {56D21E05-679B-40F2-94C1-DB0D7EB2E461}.
    MSI (s) (90:34) [13:55:09:406]: Baseline: New baseline 10.50.1600 from transaction.
    MSI (s) (90:34) [13:55:09:437]: Baseline: Sorted order Native: Order 0.
    MSI (s) (90:34) [13:55:09:437]: Baseline Data Table:
    MSI (s) (90:34) [13:55:09:437]: ProductCode: {56D21E05-679B-40F2-94C1-DB0D7EB2E461} Version: 10.50.1600 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (s) (90:34) [13:55:09:437]: Baseline File Table:
    MSI (s) (90:34) [13:55:09:437]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'D:\'.
    MSI (s) (90:34) [13:55:09:437]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (90:34) [13:55:09:453]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: Patch
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: PatchPackage
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: MsiPatchHeaders
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: __MsiPatchFileList
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: PatchPackage
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2228 2: 3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId`
    MSI (s) (90:34) [13:55:09:453]: Delta compression fallback method for this product transaction is 'MSI 2.0 legacy obsolescence'
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: Patch
    Action start 13:55:09: CostInitialize.
    MSI (s) (90:34) [13:55:09:453]: Doing action: FileCost
    Action ended 13:55:09: CostInitialize. Return value 1.
    MSI (s) (90:34) [13:55:09:468]: Note: 1: 2205 2: 3: Class
    MSI (s) (90:34) [13:55:09:468]: Note: 1: 2205 2: 3: Extension
    MSI (s) (90:34) [13:55:09:468]: Note: 1: 2205 2: 3: TypeLib
    Action start 13:55:09: FileCost.
    MSI (s) (90:34) [13:55:09:468]: Doing action: IsolateComponents
    Action ended 13:55:09: FileCost. Return value 1.
    Action start 13:55:09: IsolateComponents.
    MSI (s) (90:34) [13:55:09:468]: Doing action: CostFinalize
    GE: Adding ClientDir1025 property. Its value is 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\ar\'.
    MSI (s) (90:34) [13:55:09:593]: PROPERTY CHANGE: Modifying ServerDir property. Its current value is 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Server'. Its new value: 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Server\'.
    MSI (s) (90:34) [13:55:09:593]: PROPERTY CHANGE: Modifying Eula1033 property. Its current value is 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\1033'. Its new value: 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\1033\'.
    MSI (s) (90:34) [13:55:09:593]: Target path resolution complete. Dumping Directory table...
    MSI (s) (90:34) [13:55:09:593]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: TARGETDIR , Object: D:\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: WindowsFolder , Object: C:\Windows\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ProgramFiles64Folder , Object: C:\Program Files\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: INSTALLDIR , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: GAC , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ClientDir , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ClientDir3082 , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\es\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ClientDir1025 , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\ar\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ServerDir , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Server\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: Eula1033 , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\1033\
    MSI (s) (90:34) [13:55:09:593]: Doing action: IsDotNet20Or40Installed
    Action ended 13:55:09: CostFinalize. Return value 1.
    MSI (s) (90:34) [13:55:09:593]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'IsDotNet20Or40Installed'
    MSI (s) (90:34) [13:55:09:609]: Creating MSIHANDLE (1) of type 790542 for thread 9268
    MSI (s) (90:6C) [13:55:09:609]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIB261.tmp, Entrypoint: IsDotNetFramework20Or40Installed
    MSI (s) (90:FC) [13:55:09:609]: Generating random cookie.
    MSI (s) (90:FC) [13:55:09:609]: Created Custom Action Server with PID 14944 (0x3A60).
    MSI (s) (90:D0) [13:55:09:640]: Running as a service.
    MSI (s) (90:D0) [13:55:09:640]: Hello, I'm your 64bit Impersonated custom action server.
    MSI (s) (90!08) [13:55:09:640]: PROPERTY CHANGE: Adding DOTNETCOREPATH property. Its value is '1'.
    MSI (s) (90!08) [13:55:09:640]: PROPERTY CHANGE: Adding IsDotNet20Or40Installed property. Its value is '1'.
    MSI (s) (90:6C) [13:55:09:640]: Closing MSIHANDLE (1) of type 790542 for thread 9268
    One or more .NET Framework assemblies found in MsiAssembly table require the GAC, need to check for the .NET Framework
    MSI (s) (90:34) [13:55:09:640]: Skipping action: CA_ErrorPrereqDotNet20Or40 (condition is false)
    MSI (s) (90:34) [13:55:09:640]: Doing action: SqlFollowComponentsValidate_Redist_64
    Action ended 13:55:09: IsDotNet20Or40Installed. Return value 1.
    MSI (s) (90:34) [13:55:09:640]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SqlFollowComponentsValidate_Redist_64'
    MSI (s) (90:34) [13:55:09:687]: Creating MSIHANDLE (11) of type 790542 for thread 9268
    MSI (s) (90:04) [13:55:09:687]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIB281.tmp, Entrypoint: SqlFollowComponentsValidate
    Action start 13:55:10: InstallServices.
    MSI (s) (90:34) [13:55:10:498]: Doing action: StartServices
    Action ended 13:55:10: InstallServices. Return value 1.
    MSI (s) (90:34) [13:55:10:498]: Note: 1: 2205 2: 3: ServiceControl
    MSI (s) (90:34) [13:55:10:498]: Note: 1: 2228 2: 3: ServiceControl 4: SELECT `Name`,`Wait`,`Arguments`,`Event`, `Action` FROM `ServiceControl`, `Component` WHERE `Component_` = `Component` AND (`Action` = 0 OR `Action` = 1 OR `Action` = 2)
    Action start 13:55:10: StartServices.
    MSI (s) (90:34) [13:55:10:498]: Doing action: RegisterUser
    Action ended 13:55:10: StartServices. Return value 1.
    Action start 13:55:10: RegisterUser.
    MSI (s) (90:34) [13:55:10:498]: Doing action: RegisterProduct
    Action ended 13:55:10: RegisterUser. Return value 0.
    MSI (s) (90:34) [13:55:10:498]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:498]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    Action start 13:55:10: RegisterProduct.
    MSI (s) (90:34) [13:55:10:498]: Doing action: PublishComponents
    Action ended 13:55:10: RegisterProduct. Return value 1.
    MSI (s) (90:34) [13:55:10:498]: Note: 1: 2205 2: 3: PublishComponent
    MSI (s) (90:34) [13:55:10:498]: Note: 1: 2228 2: 3: PublishComponent 4: SELECT `PublishComponent`.`ComponentId`, `PublishComponent`.`Qualifier`, `PublishComponent`.`AppData`, `Feature`, `Component`.`ComponentId`, `Component`.`RuntimeFlags` FROM `PublishComponent`, `Component`, `Feature` WHERE `PublishComponent`.`Component_` = `Component`.`Component` AND `PublishComponent`.`Feature_` = `Feature`.`Feature` AND ((`Feature`.`Action` = 1 OR `Feature`.`Action` = 2) OR (`Feature`.`Action` = 4 AND `Feature`.`Installed` = 0) OR (`Feature`.`Action` = 3 AND (`Feature`.`Installed` = 1 OR `Feature`.`Installed` = 2 OR `Feature`.`Installed` = 4)))
    Action start 13:55:10: PublishComponents.
    MSI (s) (90:34) [13:55:10:498]: Doing action: MsiPublishAssemblies
    Action ended 13:55:10: PublishComponents. Return value 0.
    Action start 13:55:10: MsiPublishAssemblies.
    MSI (s) (90:34) [13:55:10:498]: Doing action: PublishFeatures
    Action ended 13:55:10: MsiPublishAssemblies. Return value 1.
    MSI (s) (90:34) [13:55:10:498]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:498]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    Action start 13:55:10: PublishFeatures.
    MSI (s) (90:34) [13:55:10:498]: Doing action: PublishProduct
    Action ended 13:55:10: PublishFeatures. Return value 1.
    MSI (s) (90:34) [13:55:10:513]: Resolving source to launched-from source.
    MSI (s) (90:34) [13:55:10:513]: Setting launched-from source as last-used.
    MSI (s) (90:34) [13:55:10:513]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'D:\'.
    MSI (s) (90:34) [13:55:10:513]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'D:\'.
    MSI (s) (90:34) [13:55:10:513]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'.
    MSI (s) (90:34) [13:55:10:513]: SOURCEDIR ==> D:\
    MSI (s) (90:34) [13:55:10:513]: SOURCEDIR product ==> {56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    MSI (s) (90:34) [13:55:10:529]: SECREPAIR: CryptAcquireContext succeeded
    MSI (s) (90:34) [13:55:10:529]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:529]: Determining source type
    MSI (s) (90:34) [13:55:10:529]: Source type from package 'RBS.msi': 2
    MSI (s) (90:34) [13:55:10:529]: SECREPAIR: Hash Database: C:\Windows\Installer\SourceHash{56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    MSI (s) (90:34) [13:55:10:623]: SECREPAIR: Hash Value for the file:RBS.msi matched
    MSI (s) (90:34) [13:55:10:623]: Source path resolution complete. Dumping Directory table...
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: TARGETDIR , Object: D:\ , LongSubPath: , ShortSubPath:
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: WindowsFolder , Object: D:\ , LongSubPath: , ShortSubPath:
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: ProgramFiles64Folder , Object: D:\ , LongSubPath: Program Files\ , ShortSubPath: PFiles\
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: INSTALLDIR , Object: D:\ , LongSubPath: Program Files\Microsoft SQL Remote Blob Storage 10.50\ , ShortSubPath: PFiles\jfw2d1_t\
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: Eula3082 , Object: D:\ , LongSubPath: Program Files\Microsoft SQL
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: DocsDir , Object: D:\ , LongSubPath: Program Files\Microsoft SQL Remote Blob Storage 10.50\Documentation\ , ShortSubPath: PFiles\jfw2d1_t\gsutoqfr\
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: MaintainerDir , Object: D:\ , LongSubPath: Program Files\Microsoft SQL Remote Blob Storage 10.50\Maintainer\ , ShortSubPath: PFiles\jfw2d1_t\jygjogya\
    Files\jfw2d1_t\g-pfawke\pt-PT\
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: ClientDir2052 , Object: D:\ , LongSubPath: Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\zh-CHS\ , ShortSubPath: PFiles\jfw2d1_t\g-pfawke\zh-CHS\
    Action ended 13:55:10: PublishProduct. Return value 1.
    MSI (s) (90:34) [13:55:10:638]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:638]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:638]: Note: 1: 2205 2: 3: Shortcut
    MSI (s) (90:34) [13:55:10:638]: Note: 1: 2228 2: 3: Shortcut 4: SELECT `Shortcut`,`Name`, `FileName`, `Component`.`Directory_`, `Arguments`, `WkDir`, `Icon_`, `IconIndex`, `Hotkey`, `ShowCmd`, `Shortcut`.`Description`, `Shortcut`.`Directory_`, `Component`.`RuntimeFlags`, `Component`.`Action`, `Target`, `ComponentId`, `Feature`.`Action`, `Component`.`Installed`, `DisplayResourceDLL`, `DisplayResourceId`, `DescriptionResourceDLL`, `DescriptionResourceId` From `Shortcut`, `Feature`, `Component`, `File` WHERE `Target` = `Feature` AND `Shortcut`.`Component_` = `Component` AND `Component`.`KeyPath` = `File`.`File` AND ((`Feature`.`Action` = 1 OR `Feature`.`Action` = 2) OR (`Feature`.`Action` = 4 AND `Feature`.`Installed` = 0) OR (`Feature`.`Action` = 3 AND (`Feature`.`Installed` = 1 OR `Feature`.`Installed` = 2 OR `Feature`.`Installed` = 4)) OR (`Feature`.`Action` = NULL AND (`Component`.`Action` = 1 OR `Component`.`Action` = 2) AND (`Feature`.`Installed` = 1 OR `Feature`.`Installed` = 2 OR `Feature`.`Installed` = 4)))
    Action start 13:55:10: CreateShortcuts.
    MSI (s) (90:34) [13:55:10:638]: Doing action: FixCounters
    Action ended 13:55:10: CreateShortcuts. Return value 0.
    MSI (s) (90:34) [13:55:10:638]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'FixCounters'
    Return value 0.
    Action ended 13:55:20: INSTALL. Return value 1.
    Property(S): DiskPrompt = [1]
    Property(S): InstallMode = Typical
    Property(S): DOTNET20SP = #2
    Property(S): DOTNET35SP = #1
    Property(S): DBINSTANCEREGISTRY = SHAREPOINT
    Property(S): DBNAMEREGISTRY = WSS_Content
    Property(S): FILESTREAMSTORENAMEREGISTRY = FilestreamProvider_1
    Property(S): SCHEMASUFFIXREGISTRY = <suffix>
    Property(S): WelcomeBmp = WelcomeBmp
    Property(S): TRUSTSERVERCERTIFICATE = true
    Property(S): SCHEDULEMAINTAINERTASK = 1
    Property(S): MAINTAINERGC = GarbageCollection
    Property(S): MAINTAINERREFSCAN = r
    Property(S): MAINTAINERDELETE = d
    Property(S): MAINTAINERORPHAN = o
    Property(S): MAINTAINERCONSISTENCY = ConsistencyCheck
    Property(S): MAINTAINERCONSISTENCYREPAIR = true
    Property(S): OPENREADME = 1
    Property(S): FilestreamPoolTranLifetimeUnit = time
    Property(S): TEXTFILEVALUE = 0
    Property(S): CONSOLEVALUE = 0
    Property(S): DBTABLEVALUE = 0
    Property(S): EVENTLOGVALUE = 4
    Property(S): DBINSTANCE = jpntkyint01\sharepoint
    Property(S): DBNAME = WSS_Content
    Property(S): FILEGROUP = PRIMARY
    Property(S): INTEGRATEDSECURITY = 1
    Property(S): DBUSERNAME = username
    Property(S): DBPASSWORD = **********
    Property(S): FSDBINSTANCE = jpntkyint01\sharepoint
    Property(S): FSDBNAME = WSS_Content
    Property(S): FILESTREAMMETADATAFILEGROUP = PRIMARY
    Property(S): FILESTREAMFILEGROUP = RBSFilestreamProvider
    Property(S): FILESTREAMSTORENAME = FilestreamProvider_1
    Property(S): SCHEMASUFFIX = <suffix>
    Property(S): FILESTREAMTRANPOOLSIZE = 5
    Property(S): FilestreamPoolTranLifetimeTime = 00:01:00
    Property(S): FilestreamPoolTranLifetimeDays = 01
    Property(S): FILESTREAMMAXPOOLSIZE = 200000
    Property(S): FILESTREAMMAXSIZEINBANDWRITE = 1258290
    Property(S): FILESTREAMMAXSIZEINBANDREAD = 1258290
    Property(S): FILESTREAMMAXSIZEINLINEBLOB = 61140
    Property(S): FILESTREAMWRITEALLOCATIONSIZE = 0
    Property(S): MAINTAINERDURATION = 120
    Property(S): SQLServerText1 = 0
    Property(S): SQLServerVersionText3 = 0
    Property(S): _IsMaintenance2 = Modify
    Property(S): ModifyIcon = ModifyIco
    Property(S): RepairIcon = RepairIco
    Property(S): RemoveIcon = RemoveIco
    Property(S): ErrorIcon = ErrorIco
    Property(S): TARGETDIR = D:\
    Property(S): USERNAME = Windows User
    Property(S): _IsMaintenance = Reinstall
    Property(S): AgreeToLicense = No
    Property(S): Interrupted = 0
    Property(S): SetupIcon = SetupIco
    Property(S): Installed = 00:00:00
    Property(S): CreateFilesNoUI = C:\Windows\system32\;D:\RBS.msi
    Property(S): FixLogConfig = 4;0;0;0;0
    Property(S): FixRemoteFilestreamStoreConfig = remotefilestream;C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Provider Libraries\Filestream Provider\RemoteFilestreamProviderConfiguration.xml
    Property(S): FixFilestreamStoreConfig = filestream;C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Provider Libraries\Filestream Provider\FilestreamProviderConfiguration.xml
    Property(S): RegisterProviderFile = RegisterFilestreamProvider.sql
    Property(S): FILESTREAMTRANPOOLTRANLIFETIME = time 00:01:00
    Property(S): IsDotNet20Or40Installed = 1
    Property(S): ProgramMenuFolder.Sql = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
    Property(S): SAPBINOTEPAD = Notepad.exe
    Property(S): MaintainerDir1025 = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Maintainer\ar\
    Property(S): ClientDir3082 = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\es\
    Property(S): FilestreamDir1025 = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Provider Libraries\Filestream Provider\ar\
    Property(S): ProviderDir = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Provider Libraries\
    Property(S): Eula3082 = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\3082\
    Property(S): ProgramFiles64Folder = C:\Program Files\
    Property(S): SourceDir = D:\
    Property(S): VersionNT = 601
    Property(S): Privileged = 1
    Property(S): Manufacturer = Microsoft Corporation
    Property(S): ProductCode = {56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    Property(S): ProductLanguage = 1033
    Property(S): ProductName = SQL Server 2008 R2 Remote Blob Store
    Property(S): ProductVersion = 10.50.1600.1
    Property(S): UpgradeCode = {BA2FF55A-725F-40E5-956E-D08AD0B8175B}
    Property(S): ProductShortName = Remote Blob Store
    Property(S): PlatformExtension = _64
    Property(S): PlatformId = x64
    Property(S): AppGuidRegKey = Redist_Uninstall_RegKey
    Property(S): ARPPRODUCTICON = ARPIco
    Property(S): ARPHELPLINK = http://www.microsoft.com/sqlserver
    Property(S): PIDTemplate = 53934<````=````=````=````=`````>@@@@@
    Property(S): PROMPTROLLBACKCOST = P
    Property(S): INSTALLLEVEL = 100
    Property(S): ALLUSERS = 1
    Property(S): SuccessIcon = SuccessIco
    Property(S): WarningIcon = WarningIco
    Property(S): LicenseIcon = LicenseIco
    Property(S): CompleteIcon = CompleteIco
    Property(S): CustomIcon = CustomIco
    Property(S): NewIcon = NewIco
    Property(S): UpIcon = UpIco
    Property(S): DialogBanner = BannerBmp
    Property(S): Details = 0
    Property(S): ReinstallModeText = omus
    Property(S): Display_IsBitmapDlg = 1
    Property(S): ProductID = none
    Property(S): ISENABLEDWUSFINISHDIALOG = 1
    Property(S): SQLServerVersionText1 = 0
    Property(S): SQLServerVersionText2 = 0
    Property(S): CA_ERRORCOUNT = 0
    Property(S): CA_WARNINGCOUNT = 0
    Property(S): CA_SUCCESSCOUNT = 0
    Property(S): UI_SHOWCOPYRIGHT = yes
    Property(S): ShowUserRegistrationDlg = 1
    Property(S): ButtonTextStyle = {\ButtonTextStyle}
    Property(S): DlgTextStyle = {\DlgTextStyle}
    Property(S): DlgTextStyleB = {\DlgTextStyleB}
    Property(S): DlgTitleStyle = {\DlgTitleStyle}
    Property(S): DlgTitleStyleB = {\DlgTitleStyleB}
    Property(S): FixedStyle = {\FixedStyle}
    Property(S): Error_UninstallDependant = 1
    Property(S): DefaultUIFont = Tahoma8
    Property(S): ProductFeaturesDefined = 1
    Property(S): RBSRegistryKey = Software\Microsoft\Remote Blob Storage
    Property(S): SCHEMASUFFIXVALID = 0
    Property(S): EnableCustomConfigDlg = 1
    Property(S): EnableCustomRemoveDlg = 1
    Property(S): EnableDotNetCheck = 1
    Property(S): FXAssemblyVersion = 2.0.0.0
    Property(S): VSAssemblyVersion = 8.0.0.0
    Property(S): EnableFeatureDlg = 1
    Property(S): MaintenanceWelcomeDlg_Next = MaintenanceTypeDlg
    Property(S): ReadyToRemoveDlg_Back = MaintenanceTypeDlg
    Property(S): CustomerInfoDlg_Next = ReadyToInstallDlg
    Property(S): CustomerInfoDlg_Back = LicenseAgreementDlg
    Property(S): ReadyToInstallDlg_NotInstalled_Back = CustomerInfoDlg
    Property(S): ReadyToInstallDlg_Installed_Back = MaintenanceTypeDlg
    Property(S): InstallWelcomeDlg_Next = LicenseAgreementDlg
    Property(S): LicenseAgreementDlg_Back = InstallWelcomeDlg
    Property(S): LicenseAgreementDlg_Next = CustomerInfoDlg
    Property(S): ModuleID_REDISTBASE = SQLBASE_Redist_64
    Property(S): ErrorDialog = ErrorDlg
    Property(S): MsiLogFileLocation = D:\rbs_install_log.txt
    Property(S): PackageCode = {1AC68E73-94F1-4A01-B229-82B2F73C3326}
    Property(S): ProductState = 5
    Property(S): ProductToBeRegistered = 1
    Property(S): CURRENTDIRECTORY = D:\
    Property(S): CLIENTUILEVEL = 3
    Property(S): CLIENTPROCESSID = 14660
    Property(S): PRODUCTLANGUAGE = 1033
    Property(S): VersionDatabase = 300
    Property(S): VersionMsi = 5.00
    Property(S): VersionNT64 = 601
    Property(S): WindowsBuild = 7601
    Property(S): ServicePackLevel = 1
    Property(S): ServicePackLevelMinor = 0
    Property(S): MsiNTProductType = 3
    Property(S): WindowsFolder = C:\Windows\
    Property(S): WindowsVolume = C:\
    Property(S): System64Folder = C:\Windows\system32\
    Property(S): SystemFolder = C:\Windows\SysWOW64\
    Property(S): RemoteAdminTS = 1
    Property(S): TempFolder = C:\Users\MEDSVR~1\AppData\Local\Temp\
    Property(S): ProgramFilesFolder = C:\Program Files (x86)\
    Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
    Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
    Property(S): AppDataFolder = C:\Users\medsvradmin\AppData\Roaming\
    Property(S): FavoritesFolder = C:\Users\medsvradmin\Favorites\
    Property(S): NetHoodFolder = C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
    Property(S): PersonalFolder = C:\Users\medsvradmin\Documents\
    Property(S): PrintHoodFolder = C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
    Property(S): RecentFolder = C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Recent\
    Property(S): SendToFolder = C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\SendTo\
    Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
    Property(S): CommonAppDataFolder = C:\ProgramData\
    Property(S): LocalAppDataFolder = C:\Users\medsvradmin\AppData\Local\
    Property(S): MyPicturesFolder = C:\Users\medsvradmin\Pictures\
    Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
    Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
    Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
    Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
    Property(S): DesktopFolder = C:\Users\Public\Desktop\
    Property(S): FontsFolder = C:\Windows\Fonts\
    Property(S): GPTSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): ShellAdvtSupport = 1
    Property(S): MsiAMD64 = 6
    Property(S): Msix64 = 6
    Property(S): Intel = 6
    Property(S): PhysicalMemory = 8192
    Property(S): VirtualMemory = 6311
    Property(S): AdminUser = 1
    Property(S): MsiTrueAdminUser = 1
    Property(S): LogonUser = medsvradmin
    Property(S): UserSID = S-1-5-21-300911508-3398273753-3262312657-1000
    Property(S): UserLanguageID = 1033
    Property(S): ComputerName = JPNTKYINT01
    Property(S): SystemLanguageID = 1033
    Property(S): ScreenX = 1024
    Property(S): ScreenY = 768
    Property(S): CaptionHeight = 19
    Property(S): BorderTop = 1
    Property(S): BorderSide = 1
    Property(S): TextHeight = 16
    Property(S): TextInternalLeading = 3
    Property(S): ColorBits = 32
    Property(S): TTCSupport = 1
    Property(S): Time = 13:55:20
    Property(S): Date = 3/23/2015
    Property(S): MsiNetAssemblySupport = 4.0.30319.34209
    Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
    Property(S): RedirectedDllSupport = 2
    Property(S): MsiRunningElevated = 1
    Property(S): DATABASE = C:\Windows\Installer\6847f.msi
    Property(S): OriginalDatabase = D:\RBS.msi
    Property(S): UILevel = 2
    Property(S): ACTION = INSTALL
    Property(S): ROOTDRIVE = D:\
    Property(S): CostingComplete = 1
    Property(S): OutOfDiskSpace = 0
    Property(S): OutOfNoRbDiskSpace = 0
    Property(S): PrimaryVolumeSpaceAvailable = 0
    Property(S): PrimaryVolumeSpaceRequired = 0
    Property(S): PrimaryVolumeSpaceRemaining = 0
    Property(S): DOTNETCOREPATH = 1
    Property(S): SourcedirProduct = {56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    Property(S): SOURCEDIR = D:\
    MSI (s) (90:34) [13:55:20:201]: Note: 1: 1728
    MSI (s) (90:34) [13:55:20:201]: Product: SQL Server 2008 R2 Remote Blob Store -- Configuration completed successfully.
    MSI (s) (90:34) [13:55:20:201]: Windows Installer reconfigured the product. Product Name: SQL Server 2008 R2 Remote Blob Store. Product Version: 10.50.1600.1. Product Language: 1033. Manufacturer: Microsoft Corporation. Reconfiguration success or error status: 0.
    MSI (s) (90:34) [13:55:20:217]: Deferring clean up of packages/files, if any exist
    MSI (s) (90:34) [13:55:20:217]: MainEngineThread is returning 0
    MSI (s) (90:A4) [13:55:20:217]: RESTART MANAGER: Session closed.
    MSI (s) (90:A4) [13:55:20:217]: No System Restore sequence number for this installation.
    === Logging stopped: 3/23/2015 13:55:20 ===
    MSI (s) (90:A4) [13:55:20:217]: User policy value 'DisableRollback' is 0
    MSI (s) (90:A4) [13:55:20:217]: Machine policy value 'DisableRollback' is 0
    MSI (s) (90:A4) [13:55:20:217]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (90:A4) [13:55:20:217]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (90:A4) [13:55:20:217]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (90:A4) [13:55:20:217]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (s) (90:A4) [13:55:20:217]: Restoring environment variables
    MSI (s) (90:A4) [13:55:20:217]: Destroying RemoteAPI object.
    MSI (s) (90:FC) [13:55:20:233]: Custom Action Manager thread ending.
    MSI (c) (44:F8) [13:55:20:233]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (c) (44:F8) [13:55:20:233]: MainEngineThread is returning 0
    === Verbose logging stopped: 3/23/2015 13:55:20 ===

    I copied and pasted the strips from SSMS in another computer
    CREATE
    TABLE [dbo].[Taxonomy](
    [fish_id] [numeric](38, 0)
    IDENTITY(1,1)
    NOT NULL,
    [fish_order] [varchar](50)
    NOT NULL,
    [fish_family] [varchar](50)
    NOT NULL,
    [fish_genus] [varchar](50)
    NOT NULL,
    [fish_species] [varchar](50)
    NOT NULL,
     CONSTRAINT
    [Taxonomy_pk] PRIMARY
    KEY CLUSTERED
    [fish_id] ASC
    )WITH
    (PAD_INDEX
    = OFF,
    STATISTICS_NORECOMPUTE =
    OFF,
    IGNORE_DUP_KEY =
    OFF, ALLOW_ROW_LOCKS
    = ON,
    ALLOW_PAGE_LOCKS =
    ON)
    ON [PRIMARY]
    ON [PRIMARY]

  • Mac mini can not find the NAS

    In my network I have a Mac mini, AirPort Extreme base station and a Netgear ReadyNAS Duo v2. Everything is connected by cable. The problem is that the Mac mini can not find the NAS. Mac mini is looking for wirelessly connected devices, type TimeCapsule. How do I get my Mac mini to find the NAS and set the NAS as a source of data storage?

    I have a ReadyNAS and use it as a Time Machine destination with no problems, even over WiFi. The ReadyNAS and Mac are both on the same LAN (even though the Mac is on WiFi), please check to see if your WiFi is on a different LAN to the Ethernet side of things, I have my Airport set to bridging mode so both sides of the AirPort count as the same LAN.
    Next you need to check you have actually configured Time Machine in the ReadyNAS, as shipped it is initially turned off. You need to go to the ReadyNAS web management interface (FrontView) and then click on Backup on the left, and then select Time Machine. You also need to make sure Bonjour is enabled for the ReadyNAS, this is accessed by clicking on Services on the left and then selecting Discovery Services, make sure all the Bonjour options are ticked on.

  • IPhoto can not find several photos, shows icon, but not pic itself and I did not move anything

    I have more then 12'000 photos on iPhoto. After the last update it shows me all pics in the small icons, but when I click on them, severals are not whown - a black background with a grey triangle opens and a "!" in the mid. I suppose this means that iPhoto can not find the data. I already looked into the database and the files are really not there. But I did NOT move them! What happened? What can I do? (I would highly appreciate if I would not have to check every single photo and reimport it again!!!) Thank you in advance for your help!

    Restore from your back up.
    Regards
    TD

Maybe you are looking for

  • Help my website is not working with photoshop elements 10 since i agreed to the revel update

    my photoshop elements 10 website is not working since I agreed to the adobe revel website what do i do? customer service has been less than helpful

  • [nQSError: 46044 error in obiee

    Hi Team When i am opening a developed report in in Compound layout i am getting [nQSError: 46044 error in obiee] ,whereas when the same report is placed in the dashboard it is giving the desired output. So basically i am trying to say that , the repo

  • Drill down in custom draft report

    I am creating a custom report for just draft Inventory Transfer. SELECT 'Transfer' AS 'Document Type', T0.[DocNum] AS 'Document Number', T0.[DocDate] AS 'Ship Date' FROM  [dbo].[ODRF] T0 WHERE T0.[ObjType] = 67 AND T0.[DocDate] <= CAST(FLOOR( CAST( G

  • Oracle 10g/Instalation Error/mandrake 10/kernel 2.6

    Is there any way to install it on other distribution than redhat-2.1, UnitedLinux-1.0 or redhat-3? [oracle@laisdeguia oracle]$ /mnt/cdrom/db/install/runInstaller Starting Oracle Universal Installer... Checking installer requirements... Checking opera

  • ABAP Service: Scanning through HTML

    Dear ABAP community, Iu2019m thinking about a method to scan through HTML code of an specified URL. The idea is to scan the HTML content by a search term; so I need a function to get the data of the page specified by a URL and scan this page. Is ther