Asymmetric Keys

Can someone please validate that I'm on the right track with this line of thought?
I need to generate a private/public key pair using a user's PIN number.
So, I think I need to do the following.
1) Generate a private/public key pair from a PIN number (how, I don't know, as the current generatator uses a random seed).
2) Store the public key but throw away the private key (temporarily).
3) Encrypt data using the stored public key.
4) Later, when the user signs on again, the PIN number will be entered and I'll regenerate the private key dynamically from that PIN number. (I don't want to be able to regenerate the private key from the stored public key in step #2, however).
5) Decrypt data originally stored with the public key using the private key for display to the user.
Am I on the right track? Is this even possible? If so, can someone outline sligntly more detailed pseudocode for me so I know how to proceed? If not, is there another way to achieve my goal?
Message was edited by:
rpalm01

Well, this might make more sense if I explain the
real problem I'm trying to solve. I need to be able
to scan documents and encrypt them using a "public"
type key. Sounds insecure. If you scan them on your system then your client cannot be sure that you have not created an unencrypted copy.
These documents (files) will reside in a
repository on my system. I don't want to be able to
decrypt them, ever. Good. Except that you don't need to decrypt the documents since you had access to the unencrpted document when you scannned it so it is insecure as far as you client is concerned.
However, I'll have a web site
the "client" signs in to where they enter their PIN,Once again it is insecure as far as the client is concerned. He sends the PIN to you so you then know the PIN.
in addition to standard user/password security
information. Then, the document (file) reader can
regenerate the user's private key from the PIN and
decrypt the document (file) appropriately. Now as far as the client is concerned it is really really insecure since given the PIN you can regenerate the private key and decrypt the document.
>
But, I guess this assumes that I won't be able to
decrypt the document with the "public" key I'm
storing. That's why I thought I needed an asymmetric
ciper solution. While ever the decryption takes place on your machine this solution is insecure as far as your clients are concerned. Once you have access to the PIN you have access to both the public and private keys.
A tenet of public key encryption is that only the owner of the private key ever has access to the private key. Since you are expecting to regenerate the private key from the PIN you have access to the private key hence as far as you clients are concerned your system is insecure.
>
Can you tell I'm confused?Yes.
Your system is insecure regardless of the encryption method use.

Similar Messages

  • PKCS#11 Provider unable to fetch asymmetric keys and certificates

    Hi,
    I'm facing a problem while getting keys and certificate from Eracom HSM (ProtectServer Orange:38039 Model: PSO:PL50) using Sun PKCS#11 Provider. It gets only the symmetric keys but NEVER gets the asymmetric keys.
    My code snippet and configuration file are:
         Java Code:
         java.io.InputStream is = new java.io.FileInputStream("pkcs11.cfg");
    sun.security.pkcs11.SunPKCS11 pkcs11_provider = new sun.security.pkcs11.SunPKCS11(is);
    System.out.println("Provider Name : " + pkcs11_provider.getName());
    java.security.Security.addProvider(pkcs11_provider);
    KeyStore ks = KeyStore.getInstance("PKCS11", pkcs11_provider);
    ks.load(null, "password".toCharArray());
    java.util.Enumeration obj_enumeration = ks.aliases();
    while (obj_enumeration.hasMoreElements()) {
    String str_certAlias = (String) obj_enumeration.nextElement();
    System.out.println("Alias : " + str_certAlias);
         pkcs11.cfg:
         name = Eracom
         library = G:\Eracom\cryptoki.dll
         slot = 0
         attributes(*, CKO_PRIVATE_KEY, *) = {
         CKA_TOKEN = false
         CKA_SENSITIVE = false
         CKA_EXTRACTABLE = true
         CKA_DECRYPT = true
         CKA_SIGN = true
         CKA_SIGN_RECOVER = true
         CKA_UNWRAP = true
         attributes(*, CKO_PUBLIC_KEY, *) = {
         CKA_ENCRYPT = true
         CKA_VERIFY = true
         CKA_VERIFY_RECOVER = true
         CKA_WRAP = true
    I also ran my program without specifying any attributes in configuration file, also tried many other combination, but in all cases (with or without attributes) only symmetric keys are loaded from HSM. I am able to get all keys (symmteric and asymmteric) and certificates from the same HSM using IAIK PKCS#11 Provider. Though, the Sun PKCS#11 Provider is working fine with SmartCard tokens (Rainbow, Alladin etc.)
    Any help to resolve my problem would be highly appreciated.
    Thanks in advance.

    I recently had a problem with ECDSA and the PKCS#11 library of nCipher. Here's info from one of their engineers about the PKCS11 library:
    "There are two separate issues - one is that our current pkcs11
    release doesn't support ECDSA signature with SHA-2 hashes
    (the v11.00 firmware adds support for it, but the main release version of
    the pkcs11 library hasn't been updated to take advantage of it yet).
    There is a hotfix version that does support SHA-2 hashes with some
    restrictions, talk to [email protected] for details, and V11.10
    should be out soon and have that merged in.
    But the issue with setting CKA_SIGN is that our underlying HSM API
    allows elliptic curve keys to be either key exchange (ECDH) or
    signature (ECDSA) keys, but not both at one.
    At the PKCS #11 level, if you specify CKA_DERIVE=true and let
    CKA_SIGN default, it will default to false, and vice versa.
    If you specify both CKA_DERIVE=true and CKA_SIGN=true, then we
    return CKR_TEMPLATE_INCONSISTENT because we can't do both with
    the same key. (However, the tests using C_GetMechanismInfo will
    show that we can do both mechanisms, because we can - so long
    as you use different keys, even though they have the same PKCS#11
    type.)
    I can't comment on when or how that will be changed."
    I was using the PKCS#11 library through NSS when I ran into the problem, but I imagine Java would run into similar problems also using the PKCS#11 library. I was able to generate keypairs but not create a CSR (which required making a signature, which required SHA-2).
    Can you just use the java classes to speak to the netHSM? I've never directly written code to do so myself, but I have used Corestreet's OCSP product that uses the java classes to speak to the nCipher HSMs (though not using EC). It might work better than going through the PKCS#11 layer. There should be a java directory under NFAST_HOME that contains some jars.
    Please post back if you figure anything out as I'll probably be playing with this stuff myself soon.
    Dave

  • SQL Login "disabled" flag does not work with asymmetric key??

    If I create a normal interactive SQL login, the Disabled flag for the login controls whether that user can log in with the login name and password.  For example,
    ALTER LOGIN MyUser DISABLE
    will prevent anyone from logging in with this MyUser login.
    However if I create a SQL login FROM ASYMMETRIC KEY, the Disabled flag  for the login seems  to have no effect.  For example, assemblies in executable files from which the asymmetric key was created can still be used even if the login is "disabled".
    Is this by design?  If so, why?
    It would seem to me that if a login is disabled, no rights granted to that login should be accessible, including "GRANT EXTERNAL ACCESS ASSEMBLY TO ..." and "GRANT UNSAFE ASSEMBLY TO..."
    (I suspect that disabling a login will also have no effect on execution of stored procedures signed with that login's asymmetric key either, though I have not test this.)
    Can someone please comment on this behavior?

    Disabling a Login has no effect on Permissions.
    The only thing it prevents, is the interactive process of “logging in”.
    That Login can still be impersonated also. – And this is in fact important to know(!).
    That’s also in BOL (ALTER LOGIN):
    http://technet.microsoft.com/en-us/library/ms189828.aspx
    Andreas Wolter | Microsoft Certified Master SQL Server
    Blog: www.insidesql.org/blogs/andreaswolter
    Web: www.andreas-wolter.com

  • Difference between symmetric/Asymmetric keys

    what is the Difference between symmetric/Asymmetric keys?
    what is the advantages when using these keys through network (comparison)?

    Symmetric crypto uses the same key to encipher/decipher
    Asymmetric crypto uses the public key to encipher and the private key to decipher
    Symmetric crypto is orders of magnitude faster than asymmetric crypto
    Symmetric crypto usually requires a separate key distribution strategy, as you do not want to transmit the key unprotected.
    Implement the following as a baseline:
    Use Diffie-Hellman to generate a public-private keypair
    Generate a symmetric key
    Encrypt the message with the symmetric key
    Encrypt the symmetric key with the publc key
    Send both the encrypted key and message to the other party
    Receive encrypted key and message
    Decrypt encrypted key with the private key generated by DH
    Decrypt the message with the symmetric key decrypted in previous stepThis allows you to take advantage of Diffie Hellman and public-private crypto to exchange the symmetric key safely while still using the symmetric keys much faster processing rate (and normally strength) on the message itself.
    One final point: don't use DES (or 3DES), switch to AES for your symmetric cipher.
    - Saish

  • Store Asymmetric Key Container In Load Balanced Cloud Environment

    I've been tasked with signing some data with the
    RSACryptoServiceProvider.SignData() Method. In order to generate the public and private key i've used the RSACryptoServiceProvider and passed a keycontainername in order to store the keys safely. 
    When i run the MSDN example
    to generate a set of public/private keys on my machine with the fixed keycontainername, the expected public / private keys are generated every time the same. 
    This will work fine on a single server environment, however, we are operating on an elastic environment where the servers are load balanced. If i encrypt the data with a private key on any one single machine and store this data in through the RSACryptoServiceProvider
    the data will only exist at the machine level. Each machine will use a different key to sign the data and the user of the public key won't be able to verify the signature. 
    Is it that important that i use the RSACryptoServiceProvider to store the private key, the example is explicit in that i should never store the key in a text file but why is this more of a risk than storing the keycontainername in a text file? 
    Thanks 
    Aaron

    Yes, It is important. Per my understanding, there is a X509Certificate2 class to create RSACryptoServiceProvider to get a private key. The certificate and private key itself would be kept in the
    Windows certificate store. You can then limit access to the private key through the certificate store to certain accounts.

  • Error while encrypting the xml file using asymmetric cipher...pls help

    i am encryption the xml file using asymmetric cyper....
    in one class , i am generating private key and public key using "RSA" algorithm..using 1024 byte initialization...
    it is generating properly...
    and after that in second class i am encrypting the xml file using "DESede" algorithm and i am using public key of above class..
    but i am getting exceptione :
    java.security.InvalidKeyException: Invalid key length: 162 bytes
    at com.sun.crypto.provider.DESedeCipher.engineGetKeySize(DashoA6275)
    at javax.crypto.Cipher.init(DashoA6275)
    at XmlEncryption.getEncryptedData(XmlEncryption.java:147)
    at XmlEncryption.encryptCompleteXmlFile(XmlEncryption.java:123)
    at demoXmlEncApp.simulateBookSellersEnd(demoXmlEncApp.java:72)
    at demoXmlEncApp.main(demoXmlEncApp.java:29)
    so, what is that ?
    i want to use RSA algo for key generatiion and DESede for cipher initialization .
    is there any site for where source code of xml file encryption using asymmetric cipher is available?
    pls, help me.....

    Sachin,
    What sabre150 is trying to explain to you, is that encrypting data (such as an XML file) is a 2-step process. In the first step, you generate a symmetric key (such as DES, 3DES, AES) and encrypt your file with this key (and the appropriate mode and padding).
    In order to ensure that your encrypted data cannot be decrypted by unauthorized individuals, you now need to protect the symmetric key. Encrypting your symmetric key with another symmetric key does not solve the problem, since you have a chain of symmetric keys that need to be encrypted into infinity.
    Cryptographers solve this problem by encrypting the symmetric key with an asymmetric key, such as as RSA. To perform this second step, you generate an RSA key-pair, encrypt the symmetric key you generated in step 1 with the Public key of the RSA key-pair, and give the recipient of the encrypted XML file, access to the Private key of the RSA key-pair as well as the encrypted symmetric key.
    The recipient, then uses the RSA Private key to decrypt the symmetric key first, and then uses the "plaintext" symmetric key to decrypt the XML file.
    What sabre150 was also attempting to explain to you, is the traditional way of transporting an encrypted "blob" that consists of data + symmetric key. With a modern key-management system, combining the two would be unnecessary.

  • Call for participation: OASIS Enterprise Key Management Infrastructure TC

    We would welcome your participation in this process. Thank you.
    Arshad Noor
    StrongAuth, Inc.
    To: OASIS members & interested parties
    A new OASIS technical committee is being formed. The OASIS Enterprise Key
    Management Infrastructure (EKMI) Technical Committee has been proposed by the
    members of OASIS listed below. The proposal, below, meets the requirements of
    the OASIS TC Process [a]. The TC name, statement of purpose, scope, list of
    deliverables, audience, and language specified in the proposal will constitute
    the TC's official charter. Submissions of technology for consideration by the
    TC, and the beginning of technical discussions, may occur no sooner than the
    TC's first meeting.
    This TC will operate under our 2005 IPR Policy. The eligibility
    requirements for becoming a participant in the TC at the first meeting (see
    details below) are that:
    (a) you must be an employee of an OASIS member organization or an individual
    member of OASIS;
    (b) the OASIS member must sign the OASIS membership agreement [c];
    (c) you must notify the TC chair of your intent to participate at least 15
    days prior to the first meeting, which members may do by using the "Join this
    TC" button on the TC's public page at [d]; and
    (d) you must attend the first meeting of the TC, at the time and date fixed
    below.
    Of course, participants also may join the TC at a later time. OASIS and the TC
    welcomes all interested parties.
    Non-OASIS members who wish to participate may contact us about joining OASIS
    [c]. In addition, the public may access the information resources maintained for
    each TC: a mail list archive, document repository and public comments facility,
    which will be linked from the TC's public home page at [d].
    Please feel free to forward this announcement to any other appropriate lists.
    OASIS is an open standards organization; we encourage your feedback.
    Regards,
    Mary
    Mary P McRae
    Manager of TC Administration, OASIS
    email: mary.mcrae(AT)oasis-open.org
    web: www.oasis-open.org
    a) http://www.oasis-open.org/committees/process.php
    b) http://www.oasis-open.org/who/intellectualproperty.php
    c) See http://www.oasis-open.org/join/
    d) http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=ekmi
    CALL FOR PARTICIPATION
    OASIS Enterprise Key Management Infrastructure (EKMI) TC
    Name
    OASIS Enterprise Key Management Infrastructure (EKMI) TC
    Statement of Purpose
    Public Key Infrastructure (PKI) technology has been around for more than a
    decade, and many companies have adopted it to solve specific problems in the
    area of public-key cryptography. Public-key cryptography has been embedded in
    some of the most popular tools -- web clients and servers, VPN clients and
    servers, mail user agents, office productivity tools and many industry-specific
    applications -- and underlies many mission-critical environments today.
    Additionally, there are many commercial and open-source implementations of PKI
    software products available in the market today. However, many companies across
    the world have recognized that PKI by itself, is not a solution.
    There is also the perception that most standards in PKI have already been
    established by ISO and the PKIX (IETF), and most companies are in
    operations-mode with their PKIs -- just using it, and adopting it to other
    business uses within their organizations. Consequently, there is not much left
    to architect and design in the PKI community.
    Simultaneously, there is a new interest on the part of many companies in the
    management of symmetric keys used for encrypting sensitive data in their
    computing infrastructure. While symmetric keys have been traditionally managed
    by applications doing their own encryption and decryption, there is no
    architecture or protocol that provides for symmetric key management services
    across applications, operating systems, databases, etc. While there are many
    industry standards around protocols for the life-cycle management of asymmetric
    (or public/private) keys -- PKCS10, PKCS7, CRMF, CMS, etc. -- however, there is
    no standard that describes how applications may request similar life-cycle
    services for symmetric keys, from a server and how public-key cryptography may
    be used to provide such services.
    Key management needs to be addressed by enterprises in its entirety -- for both
    symmetric and asymmetric keys. While each type of technology will require
    specific protocols, controls and management disciplines, there is sufficient
    common ground in the discipline justifying the approach to look at
    key-management as a whole, rather than in parts. Therefore, this TC will
    address the following:
    Scope
    A) The TC will create use-case(s) that describe how and where
    the protocols it intends to create, will be used;
    B) The TC will define symmetric key management protocols,
    including those for:
    1. Requesting a new or existing symmetric key from a server;
    2. Requesting policy information from a server related to caching of keys on the
    client;
    3. Sending a symmetric key to a requestor, based on a request;
    4. Sending policy information to a requestor, based on a request;
    5. Other protocol pairs as deemed necessary.
    C) To ensure cross-implementation interoperability, the TC will create a test
    suite (as described under 'Deliverables' below) that will allow different
    implementations of this protocol to be certified against the OASIS standard
    (when ratified);
    D) The TC will provide guidance on how a symmetric key-management infrastructure
    may be secured using asymmetric keys, using secure and generally accepted
    practices;
    E) Where appropriate, and in conjunction with other standards organizations that
    focus on disciplines outside the purview of OASIS, the TC will provide input on
    how such enterprise key-management infrastructures may be managed, operated and
    audited;
    F) The TC may conduct other activities that educate users about, and promote,
    securing sensitive data with appropriate cryptography, and the use of proper
    key-management techniques and disciplines to ensure appropriate protection of
    the infrastructure.
    List of Deliverables
    1. XSchema Definitions (XSD) of the request and response protocols (by August
    2007) 2. A Test Suite of conformance clauses and sample transmitted keys and
    content that allows for clients and servers to be tested for conformance to the
    defined protocol (by December 2007)
    3. Documentation that explains the communication protocol (by August 2007)
    4. Documentation that provides guidelines for how an EKMI may be built,
    operated, secured and audited (by December 2007)
    5. Resources that promote enterprise-level key-management: white papers,
    seminars, samples, and information for developer and public use. (beginning
    August 2007, continuing at least through 2008)
    Anticipated Audiences:
    Any company or organization that has a need for managing cryptographic keys
    across applications, databases, operating systems and devices, yet desires
    centralized policy-driven management of all cryptographic keys in the
    enterprise. Retail, health-care, government, education, finance - every industry
    has a need to protect the confidentiality of sensitive data. The TC's
    deliverables will provide an industry standard for protecting sensitive
    information across these, and other, industries.
    Security services vendors and integrators should be able to fulfill their use
    cases with the TC's key management methodologies.
    Members of the OASIS PKI TC should be very interested in this new TC, since the
    goals of this TC potentially may fulfill some of the goals in the charter of the
    PKI TC.
    Language:
    English
    IPR Policy:
    Royalty Free on Limited Terms under the OASIS IPR Policy
    Additional Non-normative information regarding the start-up of the TC:
    a. Identification of similar or applicable work:
    The proposers are unaware of any similar work being carried on in this exact
    area. However, this TC intends to leverage the products of, and seek liaison
    with, a number of other existing projects that may interoperate with or provide
    functionality to the EKMI TC's planned outputs, including:
    OASIS Web Services Security TC
    OASIS Web Services Trust TC
    W3C XMLSignature and XMLEncryption protocols and working group
    OASIS Digital Signature Services TC
    OASIS Public Key Infrastructure TC
    OASIS XACML TC (and other methods for providing granular access-control
    permissions that may be consumed or enforced by symmetic key management)
    b. Anticipated contributions:
    StrongAuth, Inc. anticipates providing a draft proposal for the EKMI protocol,
    at the inception of the TC. The current draft can be viewed at:
    http://www.strongkey.org/resources/documentation/misc/skcl-sks-protocol.html
    and a working implementation of this protocol is available at:
    http://sourceforge.net/projects/strongkey for interested parties.
    c. Proposed working title and acronym for specification:
    Symmetric Key Services Markup Language (SKSML), subject to TC's approval or
    change.
    d. Date, time, and location of the first meeting:
    First meeting will be by teleconference at:
    Date: January 16, 2007
    Time: 10 AM PST, 1PM EST
    Call in details: to be posted to TC list
    StrongAuth has agreed to host this meeting.
    e. Projected meeting schedule:
    Subject to TC's approval, we anticipate monthly telephone meetings for the first
    year. First version of the protocol to be voted on by Summer 2007. StrongAuth is
    willing to assist by arranging for the teleconferences; we anticipate using
    readily available free teleconference services.
    f. Names, electronic mail addresses, of supporters:
    Ken Adler, ken(AT)adler.net
    June Leung,June.Leung(AT)FundServ.com
    John Messing, jmessing(AT)law-on-line.com
    Arshad Noor, arshad.noor(AT)strongauth.com
    Davi Ottenheimer, davi(AT)poetry.org
    Ann Terwilliger, aterwil(AT)isa.com
    g. TC Convener:
    Arshad Noor, arshad.noor(AT)strongauth.com

    Hi Bilge,
    did you put your text in a blender before sending it?
    I understood everything works fine except the miscellaneous menu item in the configuration tab of ERM?
    Have you already tried to clear all browser cache, close all browsers and try it again?
    Best,
    Frank

  • Keytool generated keys portable to other platforms?

    I generated asymmetric keys using Java Keytool on Windows NT. Are the keys portable to Unix ? Also, can programs like Perl, ASP read these keys? Thank you.

    This is not completely correct. Key tool does not allow export of
    private keys. It is a real drag for developers.You no need to export anything. BTW, PKCS#12 keystore could be created by using keytool with appropriate JCE provider with PKCS#12 support. Then you can open it on other platform, that supports PKCS#12 (i.e. mozilla or msie web browsers can do it). For more detail on PKCS#12 refer to OpenSSL PKCS#12 FAQ. http://www.drh-consultancy.demon.co.uk/pkcs12faq.html

  • Configure SAP ABAP as service provider using SAML holder-of-key

    Hi
    We are trying to configure "SAML Holder of key" between Microsoft (as
    a service consumer) and SAP ABAP (as service provider).
    The service provider/SAP ABAP is release 7.11 and we need to configure this component.
    We have found SAP note 1254821 and are trying to follow the instructions for
    the "SAML Holder of key" scenario:
    However there is one step that we do not understand: step 5 "The private key to decrypt the
    encrypted....at the provider system must be a WS Security Identity in transaction TRUST"
    Anyone who can elaborate of the meaning of this step and describe a procedure for what
    exactly to do?
    BR
    Tom Bo

    Hi,
    a service provider needs to check two things when processing message. The first thing is that SAML assertion was issued by STS by checking signature of SAML assertion. The SAML assertion is signed by STS (step 4 in OSS note). The second thing is to verify that sender knows key from SubjectConfirmation element (that's why it is called holder of key). One way is to encrypt and sign SOAP message using symmetric key. There is also option to use asymmetric key. The key is encrypted by STS using the public key of service provider. Therefore the private key must be imported in service provider system (step 5 from OSS note). More info can be found [here|http://help.sap.com/saphelp_nw73/helpdata/en/e5/9f9913fc9c418db98c8693b2bbdb7c/frameset.htm].
    Cheers

  • Why are Symmetric keys shorter than ASyemmetric keys and provide the same level of security.

    Hello
    Can someone please help me with the following question.
    Can someone please give me a brief (if possible) why Symmetric Keys which are much shorter than Asymmetric keys provide a similar level of security (e.g. take as long to crack).
    I understand RSA and can to the math with a piece of paper and the Windows advanced calculator (e.g. encrypt and decrypt a sort message using a couple of small prims likes 53 and 59).
    I also understand ( to a very basic level) AES e.g. 128bit block cypher (I believe a CBC cypher using an unpredictable IV)
    Is there a simple answer if someone says why are Symmetric keys shorted and just as secure or it is just how it is? due to the different math?
    Thank you
    AAnoterUser__
    AAnotherUser__

    Symmetric Key is used for same key for encrypsion & decryption but ASyemmetric key is used two keys (Public & private key) for
    encrysion & decryption.
    ASyemmetric
    1. If Public key is used for  encrypsion then private key is used for decryption
    2. If private key is is used for  encrypsion then public key is used for decryption.
    3. It is more secure than Syemmetric
    Regards,
    Biswajit
    MCTS, MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, Enterprise Admin, ITIL F 2011
    Blog:
      Script Gallary:
      LinkedIn:
    Note: Disclaimer: This posting is provided & with no warranties or guarantees and confers no rights..

  • Can a cipher use any type of key?

    I was wondering if it is possible to load a symmetric key from a keystore and use it in a cipher.
    Do ciphers only accept symmetric keys??
    I know that the jks keystore only supports asymmetric keys.
    Is there a Bouncy Castle keystore that stores symmetric keys?
    If so is there a tool that one can use to generate symmetric keys that can be placed in such a keystore (similar to keytool)?
    Any help on this would be greatly appreciated.
    Thank you,
    Blake

    KeyStores can not store symmetric keys otherwise known as Secret Keys. They can only store asymmetric keys. And there are no providers out there that can really change that as the public API for KeyStore provides no means by which to implement one.
    As for ciphers. There are two types of ciphers. The first is symmetric such as DES, Blowfish, AES, DESede, etc... These ciphers use the same key to init for both encrypt and decrypt (aka the secret key). But there are also asymmetric ciphers of which RSA is by far the most common. In asymmetric ciphers you init the cipher with the public key for encryption and the private key for decryption.
    You will have to have a third party provider to use RSA as a cipher as Sun's JCE does not provide an RSA cipher impl. RSA also supports signatures which sun does support.

  • SQL 2012 Always On Availability Create Key for Dynamics CRM syntax

    Hi I am trying to follow this terribly written article to setup CRM to be part of a SQL alwayson availability group.  
    The part that is pissing me off is the create SQL logins.  http://technet.microsoft.com/en-us/library/jj822357.aspx#BKMK_always_updateorg
    So many errors with this post causing so much frustration.  What is the actual correct Syntax for creating the key?
    Obviously you have to use a UNC path to the CRM front end server.  SQL doesnt like UNC and I think an earlier guy said it doesnt like double quotes.  Here is what I have and it does not like it.  Its hard to see but right before end I have two
    single quotes to close it.  It's complaining about the \\ in the UNC path.  
    IF NOT EXISTS (SELECT * FROM sys.asymmetric_keys WHERE name = 'MSCRMSqlClrKey') BEGIN EXECUTE ('CREATE ASYMMETRIC KEY MSCRMSqlClrKey FROM EXECUTABLE FILE ='\\CRM2013\C$\Program Files\Microsoft Dynamics CRM\tools\Microsoft.Crm.SqlClr.Helper.dll'')END

    I finally got it working not by using the syntax in that article though.  First I did the select all from to see if the key existed by itself  
    SELECT * FROM sys.asymmetric_keys WHERE name = 'MSCRMSqlClrKey'
    NO key was there so then I did 
    CREATE ASYMMETRIC KEY MSCRMSqlClrKey FROM EXECUTABLE FILE ='C:\Program Files\Microsoft Dynamics CRM\tools\Microsoft.Crm.SqlClr.Helper.dll'

  • Secure Channel and Key sharing

    Hi all,
    I'm new in this Java Card technology and in the last month i've been studying some documents and guidelines to develop a SIM Toolkit application.
    What i have in hands now will need the share keys for assymmetric encryption, so i will need the share a public key.
    So my main doubts are, when a Secure Channel is established from the card, the other point of the channel is the network operator right? So to establish a secure connection i will need get a secure channel in the install() method and send the random key to use in decryption? For this i read somewhere that there are APDU specific commands for keys.
    Maybe this is a little confusing but there are some concepts about this that aren't clear inside my head ;)
    If someone can provide me some answers or some guideline regarding this i would be very thankful.
    Regards

    Hi Shane,
    Thanks for your answers! So analysing what you said:
    safarmer wrote:
    Hi,
    igosneves wrote:
    What i have in hands now will need the share keys for asymmetric encryption, so i will need the share a public key.This is easy enough to do. When you install the Applet, you should be able to generate a key pair for this. Then when you need to encrypt data to the card, you can first send an APDU to retrieve the public key. Then use it to encrypt the data before sending back to the card.
    Yes, this can be done using APDU but to retrieve they key i have to use a specific APDU created by me? I ask this because i only found APDU for Put Key operation... :P
    igosneves wrote:
    So my main doubts are, when a Secure Channel is established from the card, the other point of the channel is the network operator right? Not sure what you mean by this, but the client application will be the other end of the secure channel. That is, the application communicating with the applet through APDU's.
    Yes that is what i meant to. The client application will be someone that is sending APDUs through a card reader or through an OTA platform am i right?
    And if i want to do something like have a server, generate the key pairs in that server and share the public key to the Applet so that there i can send encrypted SMS from the mobile to the server? The process is the same for sharing keys? The only way to put the key in the card is using card reader or OTA?
    igosneves wrote:
    So to establish a secure connection i will need get a secure channel in the install() method and send the random key to use in decryption? For this i read somewhere that there are APDU specific commands for keys. If you want to use a GP secure session you will need to ensure that the client knows the card platform keys. Since this is not a overly secure model (as you are using a secret key), you may want to focus on using the key pair you mentioned earlier in your post. If the platform keys are compromised it is possible for code to be added/removed from your card. You can either simply use the public key for securing data to the card, or you can use 2 asymmetric key pairs (client and server) to establish a symmetric session key (3TDEA?) for the secure session. You could model this off TLS/SSL.
    Cheers,
    ShaneThanks again,
    Rodrigo

  • EKM OPEN_EXISTING Key specification options

    Hello,
    I am currently doing a PoC on a providers HSM for implementing encryption on SQL Server. 
    PKCS#11 standard allows for keys to be created with the same name (they do have different thumbprints which is their unique identifier). 
    SQL Server EKM commands to obtain keys appear only cater for collection by key name.
    So let’s say we have HSM holding multiple versions of an identically named key. 
    We would like to register a specific key with SQL server but the only command available is to OPEN_EXISTING by key name. 
    SQL Server only allows for one key with a certain name to be registered.
    CREATE
    ASYMMETRIC KEY
    ASKEY
    FROM
    Provider aProvider
    WITH
    PROVIDER_KEY_NAME =
    'ASKEY,
    CREATION_DISPOSITION=OPEN_EXISTING;
    How can a specific version of the key be obtained?
    Regards
    Dan

    Hello,
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.
    Thank you for your understanding and support.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • HP Zbook 15, external monitor connected to docking station issue

    Dear all
    I have bought a HP Zbook 15 laptop and installed Ubuntu 12.04. It does not show anything on the external monitor when I mount the laptop on the docking station. 
    After installing the Ubuntu 12.04 and putting it on the docking station for the first time, I got this problem:
    "If an ACPI driver is available for this device, you should use it instead of the native driver". I have attached the whole log file. Then, I installed the latest Nvidia driver, and restarted the machine. This time, I do not see that error message; however, I cannot see anything on my external monitor which is connected to the docking station. Can you please tell me how to fix this problem?
    Best regards,
    Murtaza
    I did not find a way to attach the log file, so I put it here:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.13.0-32-generic (buildd@phianna) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #57~precise1-Ubuntu SMP Tue Jul 15 03:51:20 UTC 2014 (Ubuntu 3.13.0-32.57~precise1-generic 3.13.11.4)
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-32-generic root=UUID=062ea7e8-5c86-4852-ba25-0372be603607 ro quiet splash vt.handoff=7
    [ 0.000000] KERNEL supported cpus:
    [ 0.000000] Intel GenuineIntel
    [ 0.000000] AMD AuthenticAMD
    [ 0.000000] Centaur CentaurHauls
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009dc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000044b7efff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000044b7f000-0x0000000045e7efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000045e7f000-0x0000000045f7efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000045f7f000-0x0000000045ffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x0000000045fff000-0x0000000045ffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000046000000-0x000000004f1fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004aedfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Hewlett-Packard HP ZBook 15/1909, BIOS L70 Ver. 01.30 12/08/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 = 0x4aee00 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-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 00FF800000 mask 7FFF800000 write-protect
    [ 0.000000] 1 base 0000000000 mask 7FC0000000 write-back
    [ 0.000000] 2 base 0040000000 mask 7FFC000000 write-back
    [ 0.000000] 3 base 0044000000 mask 7FFE000000 write-back
    [ 0.000000] 4 base 0046000000 mask 7FFF000000 uncachable
    [ 0.000000] 5 base 0100000000 mask 7F00000000 write-back
    [ 0.000000] 6 base 0200000000 mask 7E00000000 write-back
    [ 0.000000] 7 base 0400000000 mask 7F80000000 write-back
    [ 0.000000] 8 base 0480000000 mask 7FC0000000 write-back
    [ 0.000000] 9 base 04B0000000 mask 7FF0000000 uncachable
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x46000 max_arch_pfn = 0x400000000
    [ 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 [0x01fe3000, 0x01fe3fff] PGTABLE
    [ 0.000000] BRK [0x01fe4000, 0x01fe4fff] PGTABLE
    [ 0.000000] BRK [0x01fe5000, 0x01fe5fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x4aec00000-0x4aedfffff]
    [ 0.000000] [mem 0x4aec00000-0x4aedfffff] page 2M
    [ 0.000000] BRK [0x01fe6000, 0x01fe6fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x4ac000000-0x4aebfffff]
    [ 0.000000] [mem 0x4ac000000-0x4aebfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x480000000-0x4abffffff]
    [ 0.000000] [mem 0x480000000-0x4abffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x44b7efff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x449fffff] page 2M
    [ 0.000000] [mem 0x44a00000-0x44b7efff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x45fff000-0x45ffffff]
    [ 0.000000] [mem 0x45fff000-0x45ffffff] page 4k
    [ 0.000000] BRK [0x01fe7000, 0x01fe7fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x47fffffff]
    [ 0.000000] [mem 0x100000000-0x47fffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x35be0000-0x36de7fff]
    [ 0.000000] ACPI: RSDP 00000000000f3060 000024 (v02 HPQOEM)
    [ 0.000000] ACPI: XSDT 0000000045ffe120 0000A4 (v01 HPQOEM SLIC-MPC 00000001 01000013)
    [ 0.000000] ACPI: FACP 0000000045ffc000 00010C (v05 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: DSDT 0000000045fd1000 0257CC (v02 HPQOEM 1909 00000001 INTL 20110112)
    [ 0.000000] ACPI: FACS 0000000045e31000 000040
    [ 0.000000] ACPI: HPET 0000000045ffb000 000038 (v01 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: APIC 0000000045ffa000 0000BC (v01 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: MCFG 0000000045ff9000 00003C (v01 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: TCPA 0000000045ff7000 000032 (v02 HPQOEM 1909 00000000 HP 00000001)
    [ 0.000000] ACPI: SSDT 0000000045fce000 000466 (v01 HPQOEM SataAhci 00001000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fcd000 00048A (v01 HPQOEM PtidDevc 00001000 INTL 20110112)
    [ 0.000000] ACPI: SLIC 0000000045fcc000 000176 (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
    [ 0.000000] ACPI: FPDT 0000000045fca000 000044 (v01 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: BGRT 0000000045fc9000 000038 (v00 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: SSDT 0000000045fc3000 000544 (v01 PmRef Cpu0Ist 00003000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fc2000 000AF3 (v01 PmRef CpuPm 00003000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fc1000 0001D5 (v01 PmRef LakeTiny 00003000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fc0000 000706 (v01 SaSsdt SaSsdt 00003000 INTL 20110112)
    [ 0.000000] ACPI: SSDT 0000000045fbd000 002F11 (v01 HP NVSGTBL 00001000 INTL 20110112)
    [ 0.000000] ACPI: ASF! 0000000045ff8000 0000A5 (v32 HPQOEM 1909 00000001 HP 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000004aedfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x4aedfffff]
    [ 0.000000] NODE_DATA [mem 0x4aedf9000-0x4aedfdfff]
    [ 0.000000] [ffffea0000000000-ffffea0012bfffff] PMD -> [ffff88049e600000-ffff8804ae3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x4aedfffff]
    [ 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-0x44b7efff]
    [ 0.000000] node 0: [mem 0x45fff000-0x45ffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x4aedfffff]
    [ 0.000000] On node 0 totalpages: 4143388
    [ 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: 4334 pages used for memmap
    [ 0.000000] DMA32 zone: 277376 pages, LIFO batch:31
    [ 0.000000] Normal zone: 60344 pages used for memmap
    [ 0.000000] Normal zone: 3862016 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[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, 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: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 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 0x44b7f000-0x45e7efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x45e7f000-0x45f7efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x45f7f000-0x45ffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x46000000-0x4f1fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x4f200000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-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-0xff7fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
    [ 0.000000] e820: [mem 0x4f200000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff8804aea00000 s86336 r8192 d24256 u262144
    [ 0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4078625
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-32-generic root=UUID=062ea7e8-5c86-4852-ba25-0372be603607 ro quiet splash vt.handoff=7
    [ 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: 16211348K/16573552K available (7602K kernel code, 1137K rwdata, 3484K rodata, 1356K init, 1440K bss, 362204K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
    [ 0.000000] Offload RCU callbacks from all CPUs
    [ 0.000000] Offload RCU callbacks from CPUs: 0-7.
    [ 0.000000] NR_IRQS:16640 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 66584576 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 failed
    [ 0.008000] tsc: PIT calibration matches HPET. 1 loops
    [ 0.008000] tsc: Detected 2693.754 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5387.50 BogoMIPS (lpj=10775016)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000024] Security Framework initialized
    [ 0.000038] AppArmor: AppArmor initialized
    [ 0.000039] Yama: becoming mindful.
    [ 0.000989] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.003366] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.004363] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.004378] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.004573] Initializing cgroup subsys memory
    [ 0.004578] Initializing cgroup subsys devices
    [ 0.004579] Initializing cgroup subsys freezer
    [ 0.004581] Initializing cgroup subsys blkio
    [ 0.004582] Initializing cgroup subsys perf_event
    [ 0.004584] Initializing cgroup subsys hugetlb
    [ 0.004602] CPU: Physical Processor ID: 0
    [ 0.004603] CPU: Processor Core ID: 0
    [ 0.004607] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    [ 0.004607] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.005456] mce: CPU supports 9 MCE banks
    [ 0.005469] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005479] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    [ 0.005479] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    [ 0.005479] tlb_flushall_shift: 6
    [ 0.005975] Freeing SMP alternatives memory: 32K (ffffffff81e71000 - ffffffff81e79000)
    [ 0.006826] ACPI: Core revision 20131115
    [ 0.015427] ACPI: All ACPI Tables successfully acquired
    [ 0.015707] ftrace: allocating 31443 entries in 123 pages
    [ 0.027389] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.067059] smpboot: CPU0: Intel(R) Core(TM) i7-4800MQ CPU @ 2.70GHz (fam: 06, model: 3c, stepping: 03)
    [ 0.067065] TSC deadline timer enabled
    [ 0.067072] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.067078] ... version: 3
    [ 0.067079] ... bit width: 48
    [ 0.067079] ... generic registers: 4
    [ 0.067080] ... value mask: 0000ffffffffffff
    [ 0.067081] ... max period: 0000ffffffffffff
    [ 0.067082] ... fixed-purpose events: 3
    [ 0.067082] ... event mask: 000000070000000f
    [ 0.068367] x86: Booting SMP configuration:
    [ 0.082362] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.068369] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
    [ 0.166721] x86: Booted up 1 node, 8 CPUs
    [ 0.166724] smpboot: Total of 8 processors activated (43100.06 BogoMIPS)
    [ 0.174163] devtmpfs: initialized
    [ 0.177951] EVM: security.selinux
    [ 0.177953] EVM: security.SMACK64
    [ 0.177953] EVM: security.ima
    [ 0.177954] EVM: security.capability
    [ 0.177989] PM: Registering ACPI NVS region [mem 0x45e7f000-0x45f7efff] (1048576 bytes)
    [ 0.178592] pinctrl core: initialized pinctrl subsystem
    [ 0.178637] regulator-dummy: no parameters
    [ 0.178663] RTC time: 20:49:45, date: 04/17/15
    [ 0.178689] NET: Registered protocol family 16
    [ 0.178764] cpuidle: using governor ladder
    [ 0.178766] cpuidle: using governor menu
    [ 0.178795] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.178796] ACPI: bus type PCI registered
    [ 0.178798] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.178847] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.178849] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.194702] PCI: Using configuration type 1 for base access
    [ 0.194961] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.194962] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.194963] mtrr: corrected configuration.
    [ 0.195520] bio: create slab <bio-0> at 0
    [ 0.195643] ACPI: Added _OSI(Module Device)
    [ 0.195645] ACPI: Added _OSI(Processor Device)
    [ 0.195645] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.195646] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.218003] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.246072] ACPI: SSDT 0000000045de3918 0003F3 (v01 PmRef Cpu0Cst 00003001 INTL 20110112)
    [ 0.246512] ACPI: Dynamic OEM Table Load:
    [ 0.246513] ACPI: SSDT (null) 0003F3 (v01 PmRef Cpu0Cst 00003001 INTL 20110112)
    [ 0.250171] ACPI: SSDT 0000000045de4698 0005DB (v01 PmRef ApIst 00003000 INTL 20110112)
    [ 0.250664] ACPI: Dynamic OEM Table Load:
    [ 0.250666] ACPI: SSDT (null) 0005DB (v01 PmRef ApIst 00003000 INTL 20110112)
    [ 0.254062] ACPI: SSDT 0000000045de2d98 000119 (v01 PmRef ApCst 00003000 INTL 20110112)
    [ 0.254498] ACPI: Dynamic OEM Table Load:
    [ 0.254499] ACPI: SSDT (null) 000119 (v01 PmRef ApCst 00003000 INTL 20110112)
    [ 2.268291] ACPI: Interpreter enabled
    [ 2.268297] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
    [ 2.268302] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
    [ 2.268314] ACPI: (supports S0 S3 S4 S5)
    [ 2.268315] ACPI: Using IOAPIC for interrupt routing
    [ 2.268332] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 2.268475] ACPI: No dock devices found.
    [ 2.270541] ACPI: Power Resource [APPR] (off)
    [ 2.287340] ACPI: Power Resource [COMP] (on)
    [ 2.287629] ACPI: Power Resource [LPP] (on)
    [ 2.296206] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [ 2.296211] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 2.296871] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    [ 2.297740] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    [ 2.298295] PCI host bridge to bus 0000:00
    [ 2.298297] pci_bus 0000:00: root bus resource [bus 00-fe]
    [ 2.298299] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 2.298300] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 2.298301] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 2.298302] pci_bus 0000:00: root bus resource [mem 0x4f200000-0xdfffffff]
    [ 2.298304] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfedfffff]
    [ 2.298305] pci_bus 0000:00: root bus resource [mem 0xfee01000-0xffffffff]
    [ 2.298311] pci 0000:00:00.0: [8086:0c04] type 00 class 0x060000
    [ 2.298395] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    [ 2.298423] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 2.298494] pci 0000:00:02.0: [8086:0416] type 00 class 0x030000
    [ 2.298503] pci 0000:00:02.0: reg 0x10: [mem 0xcc400000-0xcc7fffff 64bit]
    [ 2.298508] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
    [ 2.298512] pci 0000:00:02.0: reg 0x20: [io 0x6000-0x603f]
    [ 2.298605] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    [ 2.298620] pci 0000:00:14.0: reg 0x10: [mem 0xcca20000-0xcca2ffff 64bit]
    [ 2.298666] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 2.298721] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 2.298748] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    [ 2.298767] pci 0000:00:16.0: reg 0x10: [mem 0xcca35000-0xcca3500f 64bit]
    [ 2.298825] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 2.298896] pci 0000:00:16.3: [8086:8c3d] type 00 class 0x070002
    [ 2.298911] pci 0000:00:16.3: reg 0x10: [io 0x60b0-0x60b7]
    [ 2.298919] pci 0000:00:16.3: reg 0x14: [mem 0xcca3c000-0xcca3cfff]
    [ 2.299046] pci 0000:00:19.0: [8086:153a] type 00 class 0x020000
    [ 2.299061] pci 0000:00:19.0: reg 0x10: [mem 0xcca00000-0xcca1ffff]
    [ 2.299069] pci 0000:00:19.0: reg 0x14: [mem 0xcca3b000-0xcca3bfff]
    [ 2.299076] pci 0000:00:19.0: reg 0x18: [io 0x6080-0x609f]
    [ 2.299131] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 2.299180] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 2.299207] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    [ 2.299225] pci 0000:00:1a.0: reg 0x10: [mem 0xcca3a000-0xcca3a3ff]
    [ 2.299306] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 2.299357] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 2.299384] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    [ 2.299397] pci 0000:00:1b.0: reg 0x10: [mem 0xcca30000-0xcca33fff 64bit]
    [ 2.299455] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 2.299525] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    [ 2.299590] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 2.299664] pci 0000:00:1c.4: [8086:8c18] type 01 class 0x060400
    [ 2.299721] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 2.299772] pci 0000:00:1c.4: System wakeup disabled by ACPI
    [ 2.299795] pci 0000:00:1c.6: [8086:8c1c] type 01 class 0x060400
    [ 2.299853] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
    [ 2.299904] pci 0000:00:1c.6: System wakeup disabled by ACPI
    [ 2.299928] pci 0000:00:1c.7: [8086:8c1e] type 01 class 0x060400
    [ 2.299986] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
    [ 2.300037] pci 0000:00:1c.7: System wakeup disabled by ACPI
    [ 2.300063] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    [ 2.300083] pci 0000:00:1d.0: reg 0x10: [mem 0xcca39000-0xcca393ff]
    [ 2.300163] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 2.300215] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 2.300241] pci 0000:00:1f.0: [8086:8c4f] type 00 class 0x060100
    [ 2.300400] pci 0000:00:1f.2: [8086:8c03] type 00 class 0x010601
    [ 2.300414] pci 0000:00:1f.2: reg 0x10: [io 0x60a8-0x60af]
    [ 2.300421] pci 0000:00:1f.2: reg 0x14: [io 0x60bc-0x60bf]
    [ 2.300428] pci 0000:00:1f.2: reg 0x18: [io 0x60a0-0x60a7]
    [ 2.300435] pci 0000:00:1f.2: reg 0x1c: [io 0x60b8-0x60bb]
    [ 2.300442] pci 0000:00:1f.2: reg 0x20: [io 0x6060-0x607f]
    [ 2.300448] pci 0000:00:1f.2: reg 0x24: [mem 0xcca38000-0xcca387ff]
    [ 2.300482] pci 0000:00:1f.2: PME# supported from D3hot
    [ 2.300546] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
    [ 2.300560] pci 0000:00:1f.3: reg 0x10: [mem 0xcca34000-0xcca340ff 64bit]
    [ 2.300578] pci 0000:00:1f.3: reg 0x20: [io 0xef80-0xef9f]
    [ 2.300706] pci 0000:01:00.0: [10de:11fc] type 00 class 0x030000
    [ 2.300719] pci 0000:01:00.0: reg 0x10: [mem 0xcb000000-0xcbffffff]
    [ 2.300733] pci 0000:01:00.0: reg 0x14: [mem 0x50000000-0x5fffffff 64bit pref]
    [ 2.300746] pci 0000:01:00.0: reg 0x1c: [mem 0x60000000-0x61ffffff 64bit pref]
    [ 2.300755] pci 0000:01:00.0: reg 0x24: [io 0x5000-0x507f]
    [ 2.300763] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 2.300868] pci 0000:01:00.1: [10de:0e0b] type 00 class 0x040300
    [ 2.300883] pci 0000:01:00.1: reg 0x10: [mem 0xcc000000-0xcc003fff]
    [ 2.306710] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 2.306712] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 2.306714] pci 0000:00:01.0: bridge window [mem 0xcb000000-0xcc0fffff]
    [ 2.306717] pci 0000:00:01.0: bridge window [mem 0x50000000-0x61ffffff 64bit pref]
    [ 2.306776] acpiphp: Slot [1] registered
    [ 2.306781] pci 0000:00:1c.0: PCI bridge to [bus 02-3a]
    [ 2.306787] pci 0000:00:1c.0: bridge window [mem 0xb4000000-0xca0fffff]
    [ 2.306792] pci 0000:00:1c.0: bridge window [mem 0x70000000-0x91ffffff 64bit pref]
    [ 2.306850] acpiphp: Slot [1-1] registered
    [ 2.306888] pci 0000:00:1c.4: PCI bridge to [bus 3b-5b]
    [ 2.306892] pci 0000:00:1c.4: bridge window [io 0x3000-0x4fff]
    [ 2.306895] pci 0000:00:1c.4: bridge window [mem 0xb0000000-0xb3ffffff]
    [ 2.306998] pci 0000:5c:00.0: [8086:088e] type 00 class 0x028000
    [ 2.307064] pci 0000:5c:00.0: reg 0x10: [mem 0xcc900000-0xcc901fff 64bit]
    [ 2.307300] pci 0000:5c:00.0: PME# supported from D0 D3hot D3cold
    [ 2.314738] pci 0000:00:1c.6: PCI bridge to [bus 5c]
    [ 2.314743] pci 0000:00:1c.6: bridge window [mem 0xcc900000-0xcc9fffff]
    [ 2.314860] pci 0000:5d:00.0: [10ec:5249] type 00 class 0xff0000
    [ 2.314923] pci 0000:5d:00.0: reg 0x10: [mem 0xcc800000-0xcc800fff]
    [ 2.315269] pci 0000:5d:00.0: supports D1 D2
    [ 2.315270] pci 0000:5d:00.0: PME# supported from D1 D2 D3hot D3cold
    [ 2.322736] pci 0000:00:1c.7: PCI bridge to [bus 5d]
    [ 2.322741] pci 0000:00:1c.7: bridge window [mem 0xcc800000-0xcc8fffff]
    [ 2.322799] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 2.323663] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 2.323700] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 2.323734] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 2.323768] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15)
    [ 2.323802] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 *10 11 12 14 15)
    [ 2.323835] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 2.323869] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
    [ 2.323903] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 2.324240] ACPI: Enabled 7 GPEs in block 00 to 3F
    [ 2.324246] ACPI: \_SB_.PCI0: notify handler is installed
    [ 2.324298] Found 1 acpi root devices
    [ 2.324457] ACPI : EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 2.324517] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 2.324521] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 2.324522] vgaarb: loaded
    [ 2.324523] vgaarb: bridge control possible 0000:01:00.0
    [ 2.324524] vgaarb: no bridge control possible 0000:00:02.0
    [ 2.324635] SCSI subsystem initialized
    [ 2.324664] libata version 3.00 loaded.
    [ 2.324678] ACPI: bus type USB registered
    [ 2.324688] usbcore: registered new interface driver usbfs
    [ 2.324693] usbcore: registered new interface driver hub
    [ 2.324707] usbcore: registered new device driver usb
    [ 2.324786] PCI: Using ACPI for IRQ routing
    [ 2.330294] PCI: pci_cache_line_size set to 64 bytes
    [ 2.330342] e820: reserve RAM buffer [mem 0x0009dc00-0x0009ffff]
    [ 2.330343] e820: reserve RAM buffer [mem 0x44b7f000-0x47ffffff]
    [ 2.330345] e820: reserve RAM buffer [mem 0x46000000-0x47ffffff]
    [ 2.330346] e820: reserve RAM buffer [mem 0x4aee00000-0x4afffffff]
    [ 2.330402] NetLabel: Initializing
    [ 2.330403] NetLabel: domain hash size = 128
    [ 2.330403] NetLabel: protocols = UNLABELED CIPSOv4
    [ 2.330412] NetLabel: unlabeled traffic allowed by default
    [ 2.330452] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 2.330457] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 2.332489] Switched to clocksource hpet
    [ 2.335878] AppArmor: AppArmor Filesystem Enabled
    [ 2.335891] pnp: PnP ACPI init
    [ 2.335898] ACPI: bus type PNP registered
    [ 2.336030] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 2.336032] system 00:00: [mem 0xfed10000-0xfed17fff] could not be reserved
    [ 2.336033] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 2.336035] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 2.336036] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 2.336037] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 2.336039] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 2.336040] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 2.336042] system 00:00: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 2.336043] system 00:00: [mem 0x4f210000-0x4f21ffff] has been reserved
    [ 2.336045] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 2.336141] pnp 00:01: [dma 4]
    [ 2.336154] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 2.336171] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    [ 2.336216] pnp 00:03: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
    [ 2.336288] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 2.336322] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 2.336351] system 00:06: [io 0x0200-0x027f] has been reserved
    [ 2.336353] system 00:06: [io 0xffff] has been reserved
    [ 2.336354] system 00:06: [io 0xffff] has been reserved
    [ 2.336355] system 00:06: [io 0xffff] has been reserved
    [ 2.336357] system 00:06: [io 0x1800-0x18fe] could not be reserved
    [ 2.336358] system 00:06: [io 0xef80-0xef9f] has been reserved
    [ 2.336360] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 2.336393] system 00:07: [io 0x0800-0x087f] has been reserved
    [ 2.336395] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 2.336413] pnp 00:08: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 2.336712] pnp 00:09: Plug and Play ACPI device, IDs PNP0501 PNP0500 (active)
    [ 2.336939] pnp 00:0a: [dma 0 disabled]
    [ 2.336985] pnp 00:0a: Plug and Play ACPI device, IDs PNP0401 (active)
    [ 2.337008] pnp 00:0b: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
    [ 2.337027] pnp 00:0c: Plug and Play ACPI device, IDs SYN300a SYN0100 SYN0002 PNP0f13 (active)
    [ 2.337195] pnp 00:0d: Plug and Play ACPI device, IDs HPQ6007 (active)
    [ 2.337255] system 00:0e: [mem 0x20000000-0x201fffff] could not be reserved
    [ 2.337257] system 00:0e: [mem 0x40004000-0x40004fff] could not be reserved
    [ 2.337259] system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 2.337398] pnp: PnP ACPI: found 15 devices
    [ 2.337399] ACPI: bus type PNP unregistered
    [ 2.343175] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 2.343188] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02-3a] add_size 1000
    [ 2.343196] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 3b-5b] add_size 200000
    [ 2.343209] pci 0000:00:1c.7: bridge window [io 0x1000-0x0fff] to [bus 5d] add_size 1000
    [ 2.343210] pci 0000:00:1c.7: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 5d] add_size 200000
    [ 2.343215] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 2.343216] pci 0000:00:1c.7: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 2.343217] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 2.343219] pci 0000:00:1c.7: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 2.343222] pci 0000:00:1c.4: BAR 15: assigned [mem 0x4f300000-0x4f4fffff 64bit pref]
    [ 2.343224] pci 0000:00:1c.7: BAR 15: assigned [mem 0x4f500000-0x4f6fffff 64bit pref]
    [ 2.343225] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 2.343227] pci 0000:00:1c.7: BAR 13: assigned [io 0x7000-0x7fff]
    [ 2.343229] pci 0000:01:00.0: BAR 6: assigned [mem 0xcc080000-0xcc0fffff pref]
    [ 2.343231] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 2.343233] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    [ 2.343235] pci 0000:00:01.0: bridge window [mem 0xcb000000-0xcc0fffff]
    [ 2.343237] pci 0000:00:01.0: bridge window [mem 0x50000000-0x61ffffff 64bit pref]
    [ 2.343240] pci 0000:00:1c.0: PCI bridge to [bus 02-3a]
    [ 2.343243] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 2.343247] pci 0000:00:1c.0: bridge window [mem 0xb4000000-0xca0fffff]
    [ 2.343251] pci 0000:00:1c.0: bridge window [mem 0x70000000-0x91ffffff 64bit pref]
    [ 2.343256] pci 0000:00:1c.4: PCI bridge to [bus 3b-5b]
    [ 2.343259] pci 0000:00:1c.4: bridge window [io 0x3000-0x4fff]
    [ 2.343263] pci 0000:00:1c.4: bridge window [mem 0xb0000000-0xb3ffffff]
    [ 2.343267] pci 0000:00:1c.4: bridge window [mem 0x4f300000-0x4f4fffff 64bit pref]
    [ 2.343272] pci 0000:00:1c.6: PCI bridge to [bus 5c]
    [ 2.343276] pci 0000:00:1c.6: bridge window [mem 0xcc900000-0xcc9fffff]
    [ 2.343283] pci 0000:00:1c.7: PCI bridge to [bus 5d]
    [ 2.343285] pci 0000:00:1c.7: bridge window [io 0x7000-0x7fff]
    [ 2.343289] pci 0000:00:1c.7: bridge window [mem 0xcc800000-0xcc8fffff]
    [ 2.343293] pci 0000:00:1c.7: bridge window [mem 0x4f500000-0x4f6fffff 64bit pref]
    [ 2.343298] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 2.343300] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 2.343301] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 2.343302] pci_bus 0000:00: resource 7 [mem 0x4f200000-0xdfffffff]
    [ 2.343303] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfedfffff]
    [ 2.343304] pci_bus 0000:00: resource 9 [mem 0xfee01000-0xffffffff]
    [ 2.343306] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
    [ 2.343307] pci_bus 0000:01: resource 1 [mem 0xcb000000-0xcc0fffff]
    [ 2.343308] pci_bus 0000:01: resource 2 [mem 0x50000000-0x61ffffff 64bit pref]
    [ 2.343309] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    [ 2.343311] pci_bus 0000:02: resource 1 [mem 0xb4000000-0xca0fffff]
    [ 2.343312] pci_bus 0000:02: resource 2 [mem 0x70000000-0x91ffffff 64bit pref]
    [ 2.343313] pci_bus 0000:3b: resource 0 [io 0x3000-0x4fff]
    [ 2.343314] pci_bus 0000:3b: resource 1 [mem 0xb0000000-0xb3ffffff]
    [ 2.343315] pci_bus 0000:3b: resource 2 [mem 0x4f300000-0x4f4fffff 64bit pref]
    [ 2.343317] pci_bus 0000:5c: resource 1 [mem 0xcc900000-0xcc9fffff]
    [ 2.343318] pci_bus 0000:5d: resource 0 [io 0x7000-0x7fff]
    [ 2.343319] pci_bus 0000:5d: resource 1 [mem 0xcc800000-0xcc8fffff]
    [ 2.343320] pci_bus 0000:5d: resource 2 [mem 0x4f500000-0x4f6fffff 64bit pref]
    [ 2.343341] NET: Registered protocol family 2
    [ 2.343489] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 2.343658] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 2.343769] TCP: Hash tables configured (established 131072 bind 65536)
    [ 2.343782] TCP: reno registered
    [ 2.343798] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 2.343840] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 2.343907] NET: Registered protocol family 1
    [ 2.343916] pci 0000:00:02.0: Boot video device
    [ 2.343923] pci 0000:00:14.0: enabling device (0000 -> 0002)
    [ 2.344387] PCI: CLS 64 bytes, default 64
    [ 2.344426] Trying to unpack rootfs image as initramfs...
    [ 2.581584] Freeing initrd memory: 18464K (ffff880035be0000 - ffff880036de8000)
    [ 2.581588] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 2.581590] software IO TLB [mem 0x40b7f000-0x44b7f000] (64MB) mapped at [ffff880040b7f000-ffff880044b7efff]
    [ 2.581814] microcode: CPU0 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581821] microcode: CPU1 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581827] microcode: CPU2 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581834] microcode: CPU3 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581839] microcode: CPU4 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581845] microcode: CPU5 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581851] microcode: CPU6 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581858] microcode: CPU7 sig=0x306c3, pf=0x10, revision=0x16
    [ 2.581891] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 2.581892] Scanning for low memory corruption every 60 seconds
    [ 2.582096] Initialise system trusted keyring
    [ 2.582129] audit: initializing netlink socket (disabled)
    [ 2.582137] type=2000 audit(1429303787.580:1): initialized
    [ 2.605505] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 2.606581] zbud: loaded
    [ 2.606685] VFS: Disk quotas dquot_6.5.2
    [ 2.606715] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 2.606997] fuse init (API version 7.22)
    [ 2.607048] msgmni has been set to 31698
    [ 2.607084] Key type big_key registered
    [ 2.607458] Key type asymmetric registered
    [ 2.607459] Asymmetric key parser 'x509' registered
    [ 2.607478] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 2.607514] io scheduler noop registered
    [ 2.607516] io scheduler deadline registered (default)
    [ 2.607531] io scheduler cfq registered
    [ 2.607686] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 2.608087] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 2.608097] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 2.608122] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 2.608123] vesafb: scrolling: redraw
    [ 2.608124] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 2.608661] vesafb: framebuffer at 0xa0000000, mapped to 0xffffc90011c00000, using 8128k, total 8128k
    [ 2.763515] Console: switching to colour frame buffer device 240x67
    [ 2.917758] fb0: VESA VGA frame buffer device
    [ 2.917770] intel_idle: MWAIT substates: 0x42120
    [ 2.917771] intel_idle: v0.4 model 0x3C
    [ 2.917771] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 2.917911] ipmi message handler version 39.2
    [ 2.918057] ACPI: AC Adapter [AC] (on-line)
    [ 2.918197] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input0
    [ 2.918201] ACPI: Sleep Button [SLPB]
    [ 2.918223] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 2.918238] ACPI: Lid Switch [LID]
    [ 2.918260] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [ 2.918261] ACPI: Power Button [PWRF]
    [ 2.943141] thermal LNXTHERM:00: registered as thermal_zone0
    [ 2.943143] ACPI: Thermal Zone [CPUZ] (49 C)
    [ 2.957429] ACPI Error: [CFGD] Namespace lookup failure, AE_NOT_FOUND (20131115/psargs-359)
    [ 2.957433] ACPI Error: Method parse/execution failed [\_TZ_.PSL_] (Node ffff88049846d410), AE_NOT_FOUND (20131115/psparse-536)
    [ 2.957437] ACPI Error: Method parse/execution failed [\_TZ_.GFXZ._PSL] (Node ffff88049846d000), AE_NOT_FOUND (20131115/psparse-536)
    [ 2.957440] ACPI: Invalid passive threshold
    [ 2.967568] thermal LNXTHERM:01: registered as thermal_zone1
    [ 2.967569] ACPI: Thermal Zone [GFXZ] (36 C)
    [ 2.982819] thermal LNXTHERM:02: registered as thermal_zone2
    [ 2.982820] ACPI: Thermal Zone [EXTZ] (0 C)
    [ 2.998086] thermal LNXTHERM:03: registered as thermal_zone3
    [ 2.998087] ACPI: Thermal Zone [LOCZ] (0 C)
    [ 3.003351] ACPI Error: [CFGD] Namespace lookup failure, AE_NOT_FOUND (20131115/psargs-359)
    [ 3.003354] ACPI Error: Method parse/execution failed [\_TZ_.PSL_] (Node ffff88049846d410), AE_NOT_FOUND (20131115/psparse-536)
    [ 3.003357] ACPI Error: Method parse/execution failed [\_TZ_.BATZ._PSL] (Node ffff88049846d230), AE_NOT_FOUND (20131115/psparse-536)
    [ 3.003360] ACPI: Invalid passive threshold
    [ 3.013372] thermal LNXTHERM:04: registered as thermal_zone4
    [ 3.013374] ACPI: Thermal Zone [BATZ] (28 C)
    [ 3.013559] thermal LNXTHERM:05: registered as thermal_zone5
    [ 3.013560] ACPI: Thermal Zone [PCHZ] (59 C)
    [ 3.013623] thermal LNXTHERM:06: registered as thermal_zone6
    [ 3.013624] ACPI: Thermal Zone [DM1Z] (0 C)
    [ 3.013684] thermal LNXTHERM:07: registered as thermal_zone7
    [ 3.013685] ACPI: Thermal Zone [DM2Z] (0 C)
    [ 3.013706] GHES: HEST is not enabled!
    [ 3.013781] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
    [ 3.034219] 00:09: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 3.055810] 0000:00:16.3: ttyS4 at I/O 0x60b0 (irq = 19, base_baud = 115200) is a 16550A
    [ 3.056055] Linux agpgart interface v0.103
    [ 3.056183] tpm_tis 00:03: 1.2 TPM (device-id 0xB, rev-id 16)
    [ 3.057331] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 3.057335] ACPI: Battery Slot [BAT0] (battery present)
    [ 3.057372] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
    [ 3.057375] ACPI: Battery Slot [BAT1] (battery absent)
    [ 3.352138] tpm_tis 00:03: TPM is disabled/deactivated (0x7)
    [ 3.353165] brd: module loaded
    [ 3.353594] loop: module loaded
    [ 3.353831] libphy: Fixed MDIO Bus: probed
    [ 3.353886] tun: Universal TUN/TAP device driver, 1.6
    [ 3.353887] tun: (C) 1999-2004 Max Krasnyansky <[email protected]>
    [ 3.353914] PPP generic driver version 2.4.2
    [ 3.353943] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 3.353946] ehci-pci: EHCI PCI platform driver
    [ 3.354051] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 3.354055] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 3.354066] ehci-pci 0000:00:1a.0: debug port 2
    [ 3.357954] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 3.357966] ehci-pci 0000:00:1a.0: irq 16, io mem 0xcca3a000
    [ 3.368127] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 3.368158] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    [ 3.368159] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 3.368161] usb usb1: Product: EHCI Host Controller
    [ 3.368162] usb usb1: Manufacturer: Linux 3.13.0-32-generic ehci_hcd
    [ 3.368163] usb usb1: SerialNumber: 0000:00:1a.0
    [ 3.368233] hub 1-0:1.0: USB hub found
    [ 3.368238] hub 1-0:1.0: 3 ports detected
    [ 3.368420] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 3.368424] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 3.368434] ehci-pci 0000:00:1d.0: debug port 2
    [ 3.372323] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 3.372334] ehci-pci 0000:00:1d.0: irq 17, io mem 0xcca39000
    [ 3.384119] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 3.384147] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    [ 3.384148] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 3.384149] usb usb2: Product: EHCI Host Controller
    [ 3.384150] usb usb2: Manufacturer: Linux 3.13.0-32-generic ehci_hcd
    [ 3.384151] usb usb2: SerialNumber: 0000:00:1d.0
    [ 3.384234] hub 2-0:1.0: USB hub found
    [ 3.384238] hub 2-0:1.0: 3 ports detected
    [ 3.384329] ehci-platform: EHCI generic platform driver
    [ 3.384335] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 3.384336] ohci-pci: OHCI PCI platform driver
    [ 3.384342] ohci-platform: OHCI generic platform driver
    [ 3.384346] uhci_hcd: USB Universal Host Controller Interface driver
    [ 3.384439] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 3.384443] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    [ 3.384525] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 3.384540] xhci_hcd 0000:00:14.0: irq 41 for MSI/MSI-X
    [ 3.384587] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
    [ 3.384589] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 3.384590] usb usb3: Product: xHCI Host Controller
    [ 3.384591] usb usb3: Manufacturer: Linux 3.13.0-32-generic xhci_hcd
    [ 3.384592] usb usb3: SerialNumber: 0000:00:14.0
    [ 3.384673] hub 3-0:1.0: USB hub found
    [ 3.384690] hub 3-0:1.0: 15 ports detected
    [ 3.385431] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 3.385434] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    [ 3.385468] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
    [ 3.385470] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [ 3.385471] usb usb4: Product: xHCI Host Controller
    [ 3.385472] usb usb4: Manufacturer: Linux 3.13.0-32-generic xhci_hcd
    [ 3.385473] usb usb4: SerialNumber: 0000:00:14.0
    [ 3.385551] hub 4-0:1.0: USB hub found
    [ 3.385562] hub 4-0:1.0: 6 ports detected
    [ 3.392184] i8042: PNP: PS/2 Controller [PNP0303S2K,PNP0f13S2M] at 0x60,0x64 irq 1,12
    [ 3.393372] i8042: Detected active multiplexing controller, rev 1.1
    [ 3.394020] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 3.394023] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 3.394040] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 3.394051] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 3.394062] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 3.394254] mousedev: PS/2 mouse device common for all mice
    [ 3.394420] rtc_cmos 00:08: RTC can wake from S4
    [ 3.394538] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
    [ 3.394563] rtc_cmos 00:08: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 3.394608] device-mapper: uevent: version 1.0.3
    [ 3.394668] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: [email protected]
    [ 3.394673] ledtrig-cpu: registered to indicate activity on CPUs
    [ 3.394743] TCP: cubic registered
    [ 3.394800] NET: Registered protocol family 10
    [ 3.394914] NET: Registered protocol family 17
    [ 3.394922] Key type dns_resolver registered
    [ 3.395160] Loading compiled-in X.509 certificates
    [ 3.395793] Loaded X.509 cert 'Magrathea: Glacier signing key: 223a1a1af7ef14be22890f9d1cc63d083fee59bf'
    [ 3.395800] registered taskstats version 1
    [ 3.397885] Key type trusted registered
    [ 3.399811] Key type encrypted registered
    [ 3.401785] AppArmor: AppArmor sha1 policy hashing enabled
    [ 3.419579] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
    [ 3.460151] tpm_tis 00:03: A TPM error (7) occurred attempting to read a pcr value
    [ 3.460154] IMA: No TPM chip found, activating TPM-bypass!
    [ 3.460705] regulator-dummy: disabling
    [ 3.460903] Magic number: 11:175:852
    [ 3.461055] rtc_cmos 00:08: setting system clock to 2015-04-17 20:49:48 UTC (1429303788)
    [ 3.462218] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
    [ 3.462219] EDD information not available.
    [ 3.462247] PM: Hibernation image not present or could not be loaded.
    [ 3.463163] Freeing unused kernel memory: 1356K (ffffffff81d1e000 - ffffffff81e71000)
    [ 3.463165] Write protecting the kernel read-only data&colon; 12288k
    [ 3.464381] Freeing unused kernel memory: 580K (ffff88000176f000 - ffff880001800000)
    [ 3.465532] Freeing unused kernel memory: 612K (ffff880001b67000 - ffff880001c00000)
    [ 3.478948] udevd[143]: starting version 175
    [ 3.509828] pps_core: LinuxPPS API ver. 1 registered
    [ 3.509831] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 3.511322] PTP clock support registered
    [ 3.511576] rtsx_pci 0000:5d:00.0: irq 42 for MSI/MSI-X
    [ 3.511591] rtsx_pci 0000:5d:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 42
    [ 3.513783] ahci 0000:00:1f.2: version 3.0
    [ 3.513949] ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    [ 3.513977] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 3.514002] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0xd impl SATA mode
    [ 3.514005] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems sxs apst
    [ 3.515548] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 3.515549] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
    [ 3.528600] scsi0 : ahci
    [ 3.528832] scsi1 : ahci
    [ 3.528908] scsi2 : ahci
    [ 3.528979] scsi3 : ahci
    [ 3.529074] scsi4 : ahci
    [ 3.529152] scsi5 : ahci
    [ 3.529185] ata1: SATA max UDMA/133 abar m2048@0xcca38000 port 0xcca38100 irq 43
    [ 3.529186] ata2: DUMMY
    [ 3.529189] ata3: SATA max UDMA/133 abar m2048@0xcca38000 port 0xcca38200 irq 43
    [ 3.529191] ata4: SATA max UDMA/133 abar m2048@0xcca38000 port 0xcca38280 irq 43
    [ 3.529192] ata5: DUMMY
    [ 3.529193] ata6: DUMMY
    [ 3.529421] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 3.529440] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 3.580099] tsc: Refined TSC clocksource calibration: 2693.762 MHz
    [ 3.596226] usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
    [ 3.612542] usb 4-1: New USB device found, idVendor=0424, idProduct=5434
    [ 3.612545] usb 4-1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
    [ 3.612547] usb 4-1: Product: USB5534
    [ 3.612548] usb 4-1: Manufacturer: SMSC
    [ 3.612549] usb 4-1: SerialNumber: 1239567
    [ 3.614189] hub 4-1:1.0: USB hub found
    [ 3.614228] hub 4-1:1.0: 4 ports detected
    [ 3.697128] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 3.697131] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 5c:b9:01:fc:9d:75
    [ 3.697132] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
    [ 3.697163] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
    [ 3.724083] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 3.848014] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 3.848677] ata1.00: ATA-9: SanDisk SD6SB1M-256G-1006, X231706, max UDMA/100
    [ 3.848680] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    [ 3.849416] ata1.00: configured for UDMA/100
    [ 3.849580] scsi 0:0:0:0: Direct-Access ATA SanDisk SD6SB1M- X231 PQ: 0 ANSI: 5
    [ 3.849710] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [ 3.849746] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [ 3.849748] sd 0:0:0:0: [sda] Write Protect is off
    [ 3.849750] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 3.849764] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 3.850612] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
    [ 3.851144] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.856328] usb 1-1: New USB device found, idVendor=8087, idProduct=8008
    [ 3.856331] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 3.856471] hub 1-1:1.0: USB hub found
    [ 3.856575] hub 1-1:1.0: 6 ports detected
    [ 3.967974] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 4.100292] usb 2-1: New USB device found, idVendor=8087, idProduct=8000
    [ 4.100295] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 4.100529] hub 2-1:1.0: USB hub found
    [ 4.100626] hub 2-1:1.0: 8 ports detected
    [ 4.167897] ata3: SATA link down (SStatus 0 SControl 300)
    [ 4.267892] usb 3-1: new high-speed USB device number 2 using xhci_hcd
    [ 4.284185] usb 3-1: New USB device found, idVendor=0424, idProduct=5434
    [ 4.284188] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 4.284596] hub 3-1:1.0: USB hub found
    [ 4.284626] hub 3-1:1.0: 4 ports detected
    [ 4.451824] usb 3-5: new full-speed USB device number 3 using xhci_hcd
    [ 4.469313] usb 3-5: New USB device found, idVendor=138a, idProduct=003f
    [ 4.469316] usb 3-5: New USB device strings: Mfr=0, Product=0, SerialNumber=1
    [ 4.469318] usb 3-5: SerialNumber: 0030e4b96e96
    [ 4.487780] ata4: SATA link down (SStatus 0 SControl 300)
    [ 4.530624] EXT4-fs (sda5): INFO: recovery required on readonly filesystem
    [ 4.530627] EXT4-fs (sda5): write access will be enabled during recovery
    [ 4.579770] Switched to clocksource tsc
    [ 4.635700] usb 3-7: new high-speed USB device number 4 using xhci_hcd
    [ 4.702947] EXT4-fs (sda5): orphan cleanup on readonly fs
    [ 4.702996] EXT4-fs (sda5): 2 orphan inodes deleted
    [ 4.702997] EXT4-fs (sda5): recovery complete
    [ 4.706848] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.736086] usb 3-7: New USB device found, idVendor=05c8, idProduct=0369
    [ 4.736089] usb 3-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [ 4.736090] usb 3-7: Product: HP HD Webcam
    [ 4.736092] usb 3-7: Manufacturer: SunplusIT INC.
    [ 4.777998] random: init urandom read with 97 bits of entropy available
    [ 4.815946] init: ureadahead main process (382) terminated with status 5
    [ 4.872399] Adding 8390772k swap on /dev/sda6. Priority:-1 extents:1 across:8390772k SSFS
    [ 4.910276] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
    [ 4.910848] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 4.915232] udevd[465]: starting version 175
    [ 4.919590] usb 3-11: new high-speed USB device number 5 using xhci_hcd
    [ 4.937952] usb 3-11: New USB device found, idVendor=03f0, idProduct=521d
    [ 4.937956] usb 3-11: New USB device strings: Mfr=5, Product=4, SerialNumber=0
    [ 4.937959] usb 3-11: Product: HP hs3110 HSPA+ Mobile Broadband Device
    [ 4.937961] usb 3-11: Manufacturer: Hewlett-Packard
    [ 4.941014] lp: driver loaded but no devices found
    [ 4.969070] Initializing HPQ6001 module
    [ 4.969146] input: HP Wireless hotkeys as /devices/virtual/input/input8
    [ 4.977289] wmi: Mapper loaded
    [ 4.985916] [drm] Initialized drm 1.1.0 20060810
    [ 4.991703] hp_accel: laptop model unknown, using default axes configuration
    [ 4.998586] mei_me 0000:00:16.0: irq 45 for MSI/MSI-X
    [ 5.004770] parport_pc 00:0a: reported by Plug and Play ACPI
    [ 5.004867] parport0: PC-style at 0x378 (0x778), irq 5, using FIFO [PCSPP,TRISTATE,COMPAT,ECP]
    [ 5.013849] [drm] Memory usable by graphics device = 2048M
    [ 5.013854] checking generic (a0000000 7f0000) vs hw (a0000000 10000000)
    [ 5.013856] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 5.013874] Console: switching to colour dummy device 80x25
    [ 5.030434] random: nonblocking pool is initialized
    [ 5.031503] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.036770] ppdev: user-space parallel port driver
    [ 5.039277] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 5.039280] Copyright(c) 2003-2013 Intel Corporation
    [ 5.039419] iwlwifi 0000:5c:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 5.039474] iwlwifi 0000:5c:00.0: irq 46 for MSI/MSI-X
    [ 5.045123] type=1400 audit(1429292990.079:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=725 comm="apparmor_parser"
    [ 5.045130] type=1400 audit(1429292990.079:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=725 comm="apparmor_parser"
    [ 5.045135] type=1400 audit(1429292990.079:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
    [ 5.045666] type=1400 audit(1429292990.079:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=725 comm="apparmor_parser"
    [ 5.045672] type=1400 audit(1429292990.079:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
    [ 5.045949] type=1400 audit(1429292990.079:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=725 comm="apparmor_parser"
    [ 5.049977] Bluetooth: Core ver 2.17
    [ 5.049990] NET: Registered protocol family 31
    [ 5.049991] Bluetooth: HCI device and connection manager initialized
    [ 5.049998] Bluetooth: HCI socket layer initialized
    [ 5.050001] Bluetooth: L2CAP socket layer initialized
    [ 5.050005] Bluetooth: SCO socket layer initialized
    [ 5.051107] iwlwifi 0000:5c:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
    [ 5.057904] Bluetooth: RFCOMM TTY layer initialized
    [ 5.057915] Bluetooth: RFCOMM socket layer initialized
    [ 5.057920] Bluetooth: RFCOMM ver 1.11
    [ 5.061071] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 5.061074] Bluetooth: BNEP filters: protocol multicast
    [ 5.061082] Bluetooth: BNEP socket layer initialized
    [ 5.063649] i915 0000:00:02.0: irq 47 for MSI/MSI-X
    [ 5.063657] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 5.063658] [drm] Driver supports precise vblank timestamp query.
    [ 5.063906] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=nonewns=none
    [ 5.073667] iwlwifi 0000:5c:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 5.073671] iwlwifi 0000:5c:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
    [ 5.073673] iwlwifi 0000:5c:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 5.073676] iwlwifi 0000:5c:00.0: Detected Intel(R) Centrino(R) Advanced-N 6235 AGN, REV=0xB0
    [ 5.073733] iwlwifi 0000:5c:00.0: L1 Disabled; Enabling L0S
    [ 5.099787] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 5.107517] usb 3-12: new full-speed USB device number 6 using xhci_hcd
    [ 5.107863] lp0: using parport0 (interrupt-driven).
    [ 5.117196] MXM: GUID detected in BIOS
    [ 5.117211] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.127446] usb 3-12: New USB device found, idVendor=8087, idProduct=07da
    [ 5.127450] usb 3-12: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 5.136368] usbcore: registered new interface driver btusb
    [ 5.139414] init: failsafe main process (863) killed by TERM signal
    [ 5.153066] type=1400 audit(1429292990.187:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=953 comm="apparmor_parser"
    [ 5.153074] type=1400 audit(1429292990.187:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=953 comm="apparmor_parser"
    [ 5.153638] type=1400 audit(1429292990.187:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=953 comm="apparmor_parser"
    [ 5.175774] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.215491] usb 3-1.2: new high-speed USB device number 7 using xhci_hcd
    [ 5.231627] usb 3-1.2: New USB device found, idVendor=0424, idProduct=2512
    [ 5.231630] usb 3-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [ 5.232078] hub 3-1.2:1.0: USB hub found
    [ 5.232107] hub 3-1.2:1.0: 2 ports detected
    [ 5.245239] Linux video capture interface: v2.00
    [ 5.249575] uvcvideo: Found UVC 1.00 device HP HD Webcam (05c8:0369)
    [ 5.258139] input: HP HD Webcam as /devices/pci0000:00/0000:00:14.0/usb3/3-7/3-7:1.0/input/input12
    [ 5.258213] usbcore: registered new interface driver uvcvideo
    [ 5.258215] USB Video Class driver (1.1.1)
    [ 5.267740] ACPI Warning: \_SB_.PCI0.PEGP.DGFX._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.267757] input: HP WMI hotkeys as /devices/virtual/input/input11
    [ 5.299688] ACPI Warning: \_SB_.PCI0.PEGP.DGFX._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.342957] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 5.372070] lis3lv02d: 8 bits 3DC sensor found
    [ 5.372127] ACPI Warning: \_SB_.PCI0.PEGP.DGFX._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
    [ 5.385320] fbcon: inteldrmfb (fb0) is primary device
    [ 5.408760] psmouse serio2: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64
    [ 5.416127] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
    [ 5.416135] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEGP.DGFX handle
    [ 5.443465] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [ 5.443566] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 5.443818] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 5.444803] iwlwifi 0000:5c:00.0: L1 Disabled; Enabling L0S
    [ 5.451546] iwlwifi 0000:5c:00.0: Radio type=0x2-0x1-0x0
    [ 5.507433] usb 3-1.2.1: new low-speed USB device number 8 using xhci_hcd
    [ 5.530647] usb 3-1.2.1: New USB device found, idVendor=046d, idProduct=c045
    [ 5.530649] usb 3-1.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [ 5.530650] usb 3-1.2.1: Product: USB-PS/2 Optical Mouse
    [ 5.530651] usb 3-1.2.1: Manufacturer: Logitech
    [ 5.530803] usb 3-1.2.1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 5.603397] usb 3-1.2.2: new low-speed USB device number 9 using xhci_hcd
    [ 5.642247] usb 3-1.2.2: New USB device found, idVendor=03f0, idProduct=034a
    [ 5.642249] usb 3-1.2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [ 5.642250] usb 3-1.2.2: Product: HP Elite USB Keyboard
    [ 5.642251] usb 3-1.2.2: Manufacturer: Chicony
    [ 5.642359] usb 3-1.2.2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 5.642365] usb 3-1.2.2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [ 5.650544] hidraw: raw HID events driver (C) Jiri Kosina
    [ 5.672470] usbcore: registered new interface driver usbhid
    [ 5.672471] usbhid: USB HID core driver
    [ 5.676000] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.2/3-1.2.1/3-1.2.1:1.0/input/input13
    [ 5.676142] hid-generic 0003:046D:C045.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:14.0-1.2.1/input0
    [ 5.676260] input: Chicony HP Elite USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.2/3-1.2.2/3-1.2.2:1.0/input/input14
    [ 5.676361] hid-generic 0003:03F0:034A.0002: input,hidraw1: USB HID v1.10 Keyboard [Chicony HP Elite USB Keyboard] on usb-0000:00:14.0-1.2.2/input0
    [ 5.679926] input: Chicony HP Elite USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1.2/3-1.2.2/3-1.2.2:1.1/input/input15
    [ 5.680033] hid-generic 0003:03F0:034A.0003: input,hidraw2: USB HID v1.10 Device [Chicony HP Elite USB Keyboard] on usb-0000:00:14.0-1.2.2/input1
    [ 5.724422] iwlwifi 0000:5c:00.0: L1 Disabled; Enabling L0S
    [ 5.731055] iwlwifi 0000:5c:00.0: Radio type=0x2-0x1-0x0
    [ 5.819472] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 5.819868] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 6.122492] input: PS/2 Generic Mouse as /devices/platform/i8042/serio2/input/input10
    [ 6.743022] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input17
    [ 6.791046] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 6.950914] Console: switching to colour frame buffer device 240x67
    [ 6.954403] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 6.954405] i915 0000:00:02.0: registered panic notifier
    [ 6.954426] nouveau 0000:01:00.0: enabling device (0004 -> 0007)
    [ 6.954972] ACPI: Video Device [DGFX] (multi-head: yes rom: yes post: no)
    [ 6.955055] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input18
    [ 6.959873] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 6.959978] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input19
    [ 6.960085] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 6.960160] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
    [ 6.960166] ACPI: If an ACPI driver is

    @emeres: Sorry, yes, it's an HP 2013 UltraSlim Docking Station. I figured it was the only one compatible with the notebook model I provided.
    Regarding any electrical circuitry or controls... well, sure, I'm assuming there's some circuitry in there
    I'll give a whirl at using that two screen setup when I get a chance. I'm not inclined to think I need to hard-code it in a xorg conf file of some sort given that xrandr finds it just fine. I'm just perplexed by why it goes AWOL after one connect/disconnect. Now that you mention it, it could be the docking station internals, as I'm assuming most folks would be using this to plug in their computer, then completely remove it to go elsewhere, and then come back to their desk. Thus, they'd be physically disconnecting it vs. just toggling?
    That said, I'm pretty sure I can use Windows Fn+F4 to toggle laptop vs. laptop + "projector" (what Win7 calls any external display) all day with no issues, so I'd think xrandr should be able to do the same?
    Thanks for the input and links.

Maybe you are looking for

  • OM:Cost of Goods sold work flow customization to take it from concerned off

    OM:Cost of Goods sold work flow customization to take it from concerned office in the place of inventory org

  • How to use variables in the mail text while sending mails through workflows

    Dear All,                I had prepared a workflow in which i am sending mail to a administrator if personnel data of any employee is changed.But i want to send the personnel no of employee whose data have been changed.How can i send this personnel n

  • How to detect the two Enter in  HTTP Request Line"

    I'm writing a HTTP Server. I want to ask how can I detect the "two <Enter> press" when the client finishes his request. Suppose the client typed the following: GET /xxx/index.html<ENTER> <ENTER> (Response header and Entity body here) if the user type

  • Change the owner of DTR activity

    Hi Experts, Is it possible to change the owner of DTR activity? Our pratice is that the project leader will create an activity and then assign the activity to the dedicated developer. Right now, in NWDI, if a user created an DTR activity, he will be

  • Mdsys.sdo_relate Problem

    Hi! I'va got two Tables, one of them ("kante") has a Geometry - Column in it and a Quad - Tree Index is Created, the other one ("kabelabschnitt") is linked to "kante" via a foreign key. This Query is very fast: SELECT k.* FROM kante k where sdo_relat