AwakeFromNib called several times

Hi,
I have two Nib files in a project, the mainMenu.Nib has a controller class which was also used in the second.Nib as custom class of File's Owner. I use NSBundle loadNibNamed to load the second.Nib. when the mainMenuNib is loaded, i notice controller's awakeFromNib is called which is normal, but when the second.Nib is loaded, awakeFromNib is called again, is this the normal behavior ? if yes, then it is not advisable to initialize variables in the awakeFromNib as it might be initialized several times when other Nib is loaded during runtime?

Hi!!
To avoid that kind of things, you should initialize all the app variables and things you want in an "init" method and specific ones in the awakeFromNib. This method is generical used when you want to initialize things from the GUI (graphical user interface). I mean, objects from the interface: buttons, etc to give them an initial behavior.
Hope you get my idea
C U!!

Similar Messages

  • TS3367 facetime doesn't work well after upgrading to ios8. I need to make a call several times to connect.

    Facetime doesn't work well after upgrading to ios8.
    When I make a facetime call, it doesn't sound some times on the other side.
    When it rings on the other side and is answered, it says (connecting), but it is still ringing on my side and never connected.
    After that, I disconnect and make a second call, it sometimes connects, but not everytime.
    I need to call several times to connect. It is really hard to connect through facetime after upgrading to ios8.
    I purchased three iPad so far because of this good feature (facetime).
    Please fix this issue as soon as possible.
    Thanks.

    Hi,
    There are two easy fixes to this.
    One, you can set up Family Sharing, in which you can have two different iCloud Accounts, yet still share the same apps, music, media etc.
    Two, go to Settings and turn-off "Handoff". This can be found under the General page.
    Hope this helps!

  • Since updating the new iOS7, I am receiving a call several times a day from a number listed as "unknown" and nobody is on the other end of the line when I answer.  Any advise to block this call from coming to my phone?

    Since updating to the new iOS7, I receive a call several times a day listed as "unknown" and nobody is on the line.  Any advise as to why this is happening and how I can block this call?

    Update - made an appointment at Genius bar today (chadstone, Victoria, Australia).
    Genius examined phone, replicated the issue and identified a malfunctioning main microphone. He noted that the reason I could still talk to the other party when I activated the 'speakerphone' function is that the speakerphone has a (second) noise cancelling microphone/speaker at the top of the handset. He replaced the phone under warranty, and offered to help me to set up the new phone. In and out in less than 15 minutes, with new phone operational.
    Very knowledgable, very polite and just great service.. Thank you Apple team at Chadstone.

  • Unwanted behavior: Action method being called several times

    Hello,
    I have a managed bean that calls a session ejb which itself does a search. The problem is that it is supposed to retrieve a resultset ONCE and the displayed behavior is that it never stop doing so. It fetches the resultset N TIMES.
    Here is the managed bean and the method to look at is the performSearch method:
    package arcoiris;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.model.SelectItem;
    public class SearchManagedBean {
        //Collected from search form
        private String keyword;
        private String country;
        private Integer[] postcode;
        private boolean commentExists;
        private Integer rating;
        private boolean websiteExists;
        //Used to populate form
        private List<SelectItem> availableCountries;
        private List<SelectItem> availablePostcodes;
        private List<SelectItem> availableRatings;
        //Retrieved from ejb tier
        private List<EstablishmentLocal> retrievedEstablishments;
        //Service locator
        private arcoiris.ServiceLocator serviceLocator;
        //Constructor
        public SearchManagedBean() {
            System.out.println("within constructor SearchManagedBean");
        //Getters and setters
        public String getKeyword() {
            return keyword;
        public void setKeyword(String keyword) {
            this.keyword = keyword;
        public String getCountry() {
            return country;
        public void setCountry(String country) {
            this.country = country;
        public boolean isCommentExists() {
            return commentExists;
        public void setCommentExists(boolean commentExists) {
            this.commentExists = commentExists;
        public Integer getRating() {
            return rating;
        public void setRating(Integer rating) {
            this.rating = rating;
        public boolean isWebsiteExists() {
            return websiteExists;
        public void setWebsiteExists(boolean websiteExists) {
            this.websiteExists = websiteExists;
        public List<SelectItem> getAvailableCountries() {
            List<SelectItem> countries = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue("2");
            si_1.setLabel("ecuador");
            si_2.setValue("1");
            si_2.setLabel("colombia");
            si_3.setValue("3");
            si_3.setLabel("peru");
            countries.add(si_1);
            countries.add(si_2);
            countries.add(si_3);
            return countries;
        public void setAvailableCountries(List<SelectItem> countries) {
            this.availableCountries = availableCountries;
        public List<SelectItem> getAvailablePostcodes() {
            List<SelectItem> postcodes = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue(new Integer(75001));
            si_1.setLabel("75001");
            si_2.setValue(new Integer(75002));
            si_2.setLabel("75002");
            si_3.setValue(new Integer(75003));
            si_3.setLabel("75003");
            postcodes.add(si_1);
            postcodes.add(si_2);
            postcodes.add(si_3);
            return postcodes;
        public void setAvailablePostcodes(List<SelectItem> availablePostcodes) {
            this.availablePostcodes = availablePostcodes;
        public List<SelectItem> getAvailableRatings() {
            List<SelectItem> ratings = new ArrayList<SelectItem>();
            SelectItem si_1 = new SelectItem();
            SelectItem si_2 = new SelectItem();
            SelectItem si_3 = new SelectItem();
            si_1.setValue(new Integer(1));
            si_1.setLabel("1");
            si_2.setValue(new Integer(2));
            si_2.setLabel("2");
            si_3.setValue(new Integer(3));
            si_3.setLabel("3");
            ratings.add(si_1);
            ratings.add(si_2);
            ratings.add(si_3);
            return ratings;
        public void setAvailableRatings(List<SelectItem> availableRatings) {
            this.availableRatings = availableRatings;
        public Integer[] getPostcode() {
            return postcode;
        public void setPostcode(Integer[] postcode) {
            this.postcode = postcode;
        public List<EstablishmentLocal> getRetrievedEstablishments() {
            return retrievedEstablishments;
        public void setRetrievedEstablishments(List<EstablishmentLocal> retrievedEstablishments) {
            this.retrievedEstablishments = retrievedEstablishments;
        //Business methods
        public String performSearch(){
            System.out.println("performSearchManagedBean begin");
            SearchRequestDTO searchRequestDto = new SearchRequestDTO(this.keyword,this.country,this.postcode,this.commentExists,this.rating, this.websiteExists);
            System.out.println("java bean "+this.keyword+" "+this.country+" "+this.postcode+" "+this.commentExists+" "+this.rating+" "+this.websiteExists);
            SearchSessionLocal searchSession = lookupSearchSessionBean();
            List<EstablishmentLocal> retrievedEstablishments = searchSession.performSearch(searchRequestDto);
            this.setRetrievedEstablishments(retrievedEstablishments);
            System.out.println("performSearchManagedBean end");
            return "success";
        private arcoiris.ServiceLocator getServiceLocator() {
            if (serviceLocator == null) {
                serviceLocator = new arcoiris.ServiceLocator();
            return serviceLocator;
        private arcoiris.SearchSessionLocal lookupSearchSessionBean() {
            try {
                return ((arcoiris.SearchSessionLocalHome) getServiceLocator().getLocalHome("java:comp/env/ejb/SearchSessionBean")).create();
            } catch(javax.naming.NamingException ne) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
                throw new RuntimeException(ne);
            } catch(javax.ejb.CreateException ce) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ce);
                throw new RuntimeException(ce);
    }Here is the object request passed:
    package arcoiris;
    import java.io.Serializable;
    public class SearchRequestDTO implements Serializable {
        private String keyword;
        private String country;
        private Integer[] postcode;
        private boolean commentExists;
        private Integer rating;
        private boolean websiteExists;
        public SearchRequestDTO() {
        public SearchRequestDTO(String keyword, String country, Integer[] postcode, boolean commmentExists, Integer rating, boolean websiteExists){
            this.keyword=keyword;
            this.country= country;
            this.postcode = postcode;
            this.commentExists = commentExists;
            this.rating = rating;
            this.websiteExists = websiteExists;
        public String getKeyword() {
            return keyword;
        public void setKeyword(String keyword) {
            this.keyword = keyword;
        public String getCountry() {
            return country;
        public void setCountry(String country) {
            this.country = country;
        public Integer[] getPostcode() {
            return postcode;
        public void setPostcode(Integer[] postcode) {
            this.postcode = postcode;
        public boolean isCommentExists() {
            return commentExists;
        public void setCommentExists(boolean commmentExists) {
            this.commentExists = commmentExists;
        public Integer getRating() {
            return rating;
        public void setRating(Integer rating) {
            this.rating = rating;
        public boolean isWebsiteExists() {
            return websiteExists;
        public void setWebsiteExists(boolean websiteExists) {
            this.websiteExists = websiteExists;
    }and here is the session ejb:
    package arcoiris;
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.ArrayList;
    import java.util.List;
    import javax.ejb.*;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    public class SearchSessionBean implements SessionBean, SearchSessionLocalBusiness {
        private SessionContext context;
        private arcoiris.ServiceLocator serviceLocator;
        // <editor-fold defaultstate="collapsed" desc="EJB infrastructure methods. Click the + sign on the left to edit the code.">
        // TODO Add code to acquire and use other enterprise resources (DataSource, JMS, enterprise bean, Web services)
        // TODO Add business methods or web service operations
         * @see javax.ejb.SessionBean#setSessionContext(javax.ejb.SessionContext)
        public void setSessionContext(SessionContext aContext) {
            context = aContext;
         * @see javax.ejb.SessionBean#ejbActivate()
        public void ejbActivate() {
         * @see javax.ejb.SessionBean#ejbPassivate()
        public void ejbPassivate() {
         * @see javax.ejb.SessionBean#ejbRemove()
        public void ejbRemove() {
        // </editor-fold>
         * See section 7.10.3 of the EJB 2.0 specification
         * See section 7.11.3 of the EJB 2.1 specification
        public void ejbCreate() {
            // TODO implement ejbCreate if necessary, acquire resources
            // This method has access to the JNDI context so resource aquisition
            // spanning all methods can be performed here such as home interfaces
            // and data sources.
        // Add business logic below. (Right-click in editor and choose
        // "EJB Methods > Add Business Method" or "Web Service > Add Operation")
        public List<EstablishmentLocal> performSearch(SearchRequestDTO searchRequestDto) {
            System.out.println("within performSearch");
            List<EstablishmentLocal> establishments = new ArrayList<EstablishmentLocal>();
            try {
                Context ctx = new InitialContext();
                DataSource ds = (DataSource)ctx.lookup("java:/guia");
                Connection con = ds.getConnection();
                Statement stm = con.createStatement();
                String query = buildQueryFromSearchRequestDTO(searchRequestDto);
                ResultSet rs = stm.executeQuery(query);
                int rowCount = 0;
                while(rs.next()){
                    rowCount = rowCount + 1;
                    System.out.println("while");
                    try {
                        EstablishmentLocal establishment = lookupEstablishmentBean().findByEstablishmentId(rs.getInt("establishment_id"));
                        establishments.add(establishment);
                        System.out.println("est name "+establishment.getEstablishmentName());
                    } catch (FinderException ex) {
                        ex.printStackTrace();
                    } catch (SQLException ex) {
                        ex.printStackTrace();
                System.out.println("rowCount = "+rowCount);
                rs.close();
                stm.close();
                con.close();
            catch (SearchRequestMalformedException ex){
                ex.printStackTrace();
            }catch (NamingException ex) {
                ex.printStackTrace();
            }catch (SQLException ex){
                ex.printStackTrace();
            //TODO implement performSearch
            return null;
        private String buildQueryFromSearchRequestDTO(SearchRequestDTO searchRequestDto) throws SearchRequestMalformedException {
            StringBuffer sb = new StringBuffer();
            //Head of the query
            sb.append("SELECT ");
            sb.append("e.establishment_id, ");
            sb.append("e.establishment_name, ");
            sb.append("avg(r.rating) as avg_rating ");
            sb.append("FROM ");
            sb.append("establishment e, ");
            sb.append("rating r, ");
            sb.append("comment com, ");
            sb.append("establishment_country ec, ");
            sb.append("country_ref cou ");
            sb.append("where ");
            sb.append("e.establishment_id=ec.establishment_id and ");
            sb.append("ec.country_id=cou.country_id and ");
            sb.append("e.establishment_id=com.establishment_id and ");
            sb.append("r.establishment_id=e.establishment_id and ");
            //Conditional parts of the query
            //If user wants comment to be present
            if(searchRequestDto.isCommentExists()){
                sb.append("e.establishment_id=com.establishment_id and ");
            //If user has typed in a keyword
            if(!searchRequestDto.getKeyword().equals("") && !searchRequestDto.getKeyword().equals(" ")&& searchRequestDto.getKeyword()!=null){
                sb.append("e.establishment_name like '%"+ searchRequestDto.getKeyword() +"%' and ");
            //If user has choosen a country
            if(searchRequestDto.getCountry()!=null && !searchRequestDto.getCountry().equals("") && !searchRequestDto.getCountry().equals(" ")&& searchRequestDto.getCountry()!=null){
                sb.append("ec.country_id = " + searchRequestDto.getCountry() + " and ");
            //If user wants website to be present
            if(searchRequestDto.isWebsiteExists()){
                sb.append("e.establishment_website is not null and ");
    /* conditions
    si utilisateur a renseign� un premier code postal "e.establishment_postcode = 'postcode_one' --si racine
            si autre code postal "or e.establishment_postcode = 'postcode_two'
            ainsi de suite
    and--vient de si racine
            //Tail of the query
            sb.append("0=0 ");
            sb.append("group by e.establishment_id ");
            //If the user wants a minimum rating
            if(searchRequestDto.getRating() != null && searchRequestDto.getRating().intValue()!=0){
                sb.append("having avg(r.rating) >= " + searchRequestDto.getRating());
            sb.append(" ");
            sb.append("order by e.establishment_id ");
            System.out.println("****************************");
            System.out.println(sb);
            System.out.println("****************************");
            return sb.toString();
        private arcoiris.ServiceLocator getServiceLocator() {
            if (serviceLocator == null) {
                serviceLocator = new arcoiris.ServiceLocator();
            return serviceLocator;
        private EstablishmentLocalHome lookupEstablishmentBean() {
            try {
                return (arcoiris.EstablishmentLocalHome) getServiceLocator().getLocalHome("java:comp/env/ejb/EstablishmentBean");
            } catch(javax.naming.NamingException ne) {
                java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
                throw new RuntimeException(ne);
    }I just don't understand why it does so. The peformSearch should be executed ONCE only.
    Here is my face config file:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
        <managed-bean>
            <managed-bean-name>SearchManagedBean</managed-bean-name>
            <managed-bean-class>arcoiris.SearchManagedBean</managed-bean-class>
            <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
        <navigation-rule>
           <description></description>
            <from-view-id>/welcomeJSF.jsp</from-view-id>
            <navigation-case>
            <from-outcome>success</from-outcome>
            <to-view-id>index.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>
    </faces-config>Can anyone help?
    Thanks in advance,
    Julien.

    Just reactivating my thread hoping someone will reply to it....
    Julien.

  • P2 gen.spool; how to call it several times from P1 in Job and look spools ?

    Hi
    I have a Program 2  wich generates a report (list). If i create a Job (SM36) with this Program 2, the Job generates the corresponding spool.
    I have other Program 1 wich call several times the Program 2, but if i create a Job with this Program 1, the Job does not generates anything spool.
    PROGRAM 1
       LOOP AT  itab.
           SUBMIT  PROGRAM2
                  USING SELECTION-SET  vari
                  WITH   p_werks     =  itab-werks
                  AND RETURN.
       ENDLOOP.
    I hope to see in the Program 1 Job all the resulting spools (reports) for each Program 2 execution , but it does generates anything, the executions are realized, but the spool are not generated in the Job.
    Does somebody knows how can i achieve this, how to create a Job for a program wich call anhoter program wich generates a report, and see the reports in spool ?
    Regards
    Frank

    Hi,
    Check this example from the standard sap help..
    Output is to the SAP spool database with the specified parameters. The print parameters are passed by the field string params which must have the structure of PRI_PARAMS. The field string can be filled and modified with the function module GET_PRINT_PARAMETERS. The specification arparams with ARCHIVE PARAMETERS must have the structure of ARC_PARAMS. This parameter should only be processed with the function module GET_PRINT_PARAMETERS. Before output to the spool, you normally see a screen where you can enter and/or modify the spool parameters. However, you can suppress this screen with the following statement
    DATA: PARAMS LIKE PRI_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION           = 'LT50'
                COPIES                = COUNT
                LIST_NAME             = 'TEST'
                LIST_TEXT             = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY           = 'X'
                RELEASE               = 'X'
                NEW_LIST_ID           = 'X'
                EXPIRATION            = DAYS
                LINE_SIZE             = 79
                LINE_COUNT            = 23
                LAYOUT                = 'X_PAPER'
                SAP_COVER_PAGE        = 'X'
                COVER_PAGE            = 'X'
                RECEIVER              = 'SAP*'
                DEPARTMENT            = 'System'
                NO_DIALOG             = ' '
      IMPORTING OUT_PARAMETERS        = PARAMS
                VALID                 = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Thanks,
    Naren

  • My iPhone does not tell me Who is calling Many times and ofer me only the number. what can I do to see the owners of the number?

    My iPhone doesn't tell me Who is calling several times and only gives me the number. What can I do to see the owners names?

    if you have verizon as your provider
    Dial *228 from your iPhone.
    When prompted, select option 1.
    When complete, you will hear a confirmation message.
    Force the Contacts, Messages, and Phone applications to close using the following steps:
    Ensure that you have recently opened the Contacts, Messages, and Phone applications.
    From the Home screen, double-click the Home button to display the recently used apps.
    Tap and hold the icon for the Contacts application until a red minus appears.
    Tap the red minus to close the app.
    Repeat the previous step for the Messages and Phone applications.
    Tap the Home screen to return.
    Turn iPhone off and then back on

  • I updated my iPhone 4S and my iPad 4 to iOS 7 now they both drop all my contents all my notes go missing I keep having to turn it off and on sometimes several times to make a phone call and the scroll rarely works is there anything I can do?

    I updated my iPhone 4S to iOS 7 now my phone constantly deletes all my contacts and takes days to download them from my iCloud again, constantly needs to be turned off and on sometimes several times to make a phone call, the scroll rarely works, is there anything I can do, the apple tech told me it was something I'd just have to get used to, my phone worked perfectly before the update.

    Even if it is a hardware problem they should fix it regardless of warranty. If you buy a car and after 1.5 years the doors fall off due to a failure in their design and construction, do you think the car manufacturer could pull off what Apple is trying to do? Yes the car still delivers its primary objective of driving from A to B, but significant functionality has been lost due to their fault.
    It is the same with this iPhone wifi problem. Apple are a disgrace, I have had significant Apple Hardware failures with my MacBook Pro and iPhone within 2 years of purchase. Pathetic quality.

  • There is no option to reject an incoming call in locked screen, there must be an icon on the screen for one who don't want to use lock button several times, i did'nt face this problem in last ios 6.1.3.

    There is no option to reject an incoming call in locked screen, there must be an icon on the screen for one who don't want to use lock button several times, i did'nt face this problem in last ios 6.1.3.

    A good read. Have you done anything at all to resolve your problem. Reset? Restore?
    By the way - "your products"... nobody here produced the iPhone, we are all just users. Apple is not here.

  • My track pad highlights applications and files and then opens them without my doing anything. I run MacKeeper and having run the scan several times only get cleaning issues (5 -). Any ideas as MacKeeper Kromtech have not responded to my calls nor email.

    Folks
    I run an iMac. Today for some reason when I run the cursor across the screen applications and files are highlighted and then opened without me doing anything (no clicking etc) In fact print at times opens. As far as I can tell I have not changed any settings except to open firewall.
    I run MacKeeper and when I run a scan only a few cleaning items open. Safe and fast are as they should be. I run fix. If I again run the scan I get a few more but different claeing items to fix.
    I have rung MacKeeper several times without getting through. The occasion I did get through the bloke said he could not help and passed me to a higher authority. Needless to say the line dropped out after 30 minutes waiting.
    As it is the weekend and I do not live near an Apple store I am quite keen to get the problem identified and fixed so I can continue working.
    Your assistance please.

    Remove the "MacKeeper" scam product as follows. First, back up all data.
    "MacKeeper" has only one useful feature: it deletes itself.
    Note: These instructions apply to the version of the product that I downloaded and tested in early 2012. I can't be sure that they apply to other versions.
    IMPORTANT: "MacKeeper" has what the developer calls an “encryption” feature. In my tests, I didn't try to verify what this feature really does. If you used it to “encrypt” any of your files, “decrypt” them before you uninstall, or (preferably) restore the files from backups made before they were “encrypted.” As the developer is not trustworthy, you should assume that the "decrypted" files are corrupt unless proven otherwise.
    In the Finder, select
    Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A. The "MacKeeper" application is in the folder that opens. Quit it if it's running, then drag it to the Trash. You'll be prompted for your login password. Click the Uninstall MacKeeper button in the dialog that appears. All the functional components of the software will be deleted. Reboot.
    ☞ Quit MacKeeper before dragging it to the Trash.
    ☞ Don't empty the Trash. Let MacKeeper delete itself.
    ☞ Don't try to drag the MacKeeper Dock icon to the Trash.

  • Sometimes I hear a clicking or static sound followed by the inability of my caller to hear me, although I can hear them.  Often happens several times in a row.

    Sometimes I hear a clicking or static sound followed by the inability of my caller to hear me although I can hear them.  Sometimes happens several times in a row.

    NLEdit,
    Here's what I have (to the best of my knowledge):
    Original source: mini DV tape, it's all HD
    I use capture now to digitize the whole tape. My easy setup is: HDV- 1080i60 FiriWire Basic. After I have digitized all of it - it's an .mov file with the settings I just posted above. So when final cut is done digitizing I already have all the files in my browser window and I just drag them and drop them in the timeline and I choose to match the timeline settings if they're different. So my timeline settings look like this:
    Frame Size: 1440x1080
    Vid Rate: 29.97 fps
    Compressor: HDV 1080i60
    When I'm done editing, I use batch export to export a bunch of sequences (they all have the same settings I just mentioned above) and I chose:
    Format: QuickTime (custom), Compression Type H.264, frame rate: 29.97 fps, key frames: every 24frames, compressor quality- high, encoding: best quality. Then for size I choose either 1280x720 HD or I use "custom" to make them half the size of that so that would be 640x360. My point is to end up with an .mov file which I can then encode into an flv or just burn it on a data cd.
    As for your question number 1: I'm not even sure what you mean by that.
    Does all that make any sense now?

  • BB Call Log erased itself off completely. (several times)

    Several times my BB has erased my Call Log. Was told to turn off BB and remove the battery from BB for couple seconds. This is to reboot the BB. Then return the battery to BB. Usually when this happens my BB is "very slow" and every screen I go to is stuck on the "hour glass". Anyone else experienced this before? What is the fix for this or is it a requirement with BB to remove the battery once a month? Please any helpful response appreciated. Thanks in advance.

    This is caused by the device having a low amount (or none at all) of memory. When the memory gets lower (lower than 12MB in some cases, although there is not a set number) the device will start deleting messages and/or call logs to conserve memory. You can check your available memory by going to Options > Status and checking the File Free parameter.
    The quickest way to free up some memory is to perform a hard reset. Remove the battery from the device (while it is still powered on) for about 30 seconds, then reinsert. Also, look at the links below for ways to maximize the memory:
    http://blackberryfaq.com/index.php/How_do_I_free_up_memory_on_my_device%3F
    http://blackberryfaq.com/index.php/Why_is_my_BlackBerry_losing_its_call_logs_or_message_logs%3F
    You can also check out the Maximize BlackBerry Memory link in my signature.

  • My Firefox Plug-in for Adobe Reader, says it's outdated. I have tried several times to download the latest version, and it still says it is outdated, can you help me?

    '''bold text'''I have found out that I need to disable my Firewall, and stop my pop-up blocker, before downloading the new Adobe Reader. Now, I have uninstalled it and re-installed it several times, because on the Checl Plu-In Page, it still says it is outdated. I don't know what else to do.

    Bill,
    Thanks for getting back to me.  I am very frustrated.  Initially I called to ask questions about what software version I needed and got my questions answered.  I received the messages with registration/sign in info and the link to download.  Then I got the screens shown on the attachment.  I did this several times on Friday and then called for assistance, which put me into the Forum area to leave my question.  This morning I have used your link and gone to the same place and got the same results.  I am beginning to wonder if this is what I want.  We need software that will let us edit pdf text and drawings files.  Can you confirm that I am trying to get the correct software and what I need to do to complete this download?
    I don't believe it is a system problem because I have 215 GB of free space on my hard drive.
    Thanks,
    Margaret

  • Eth0 is being up and down for several time during boot

    My wicd doesn't connect to eth0 on the first attempt after boot up. It is configured to eth0 always have a higher priority to connect.
    My dmesg shows that eth0 being up and down for several time during boot. I have e1000e in my MODULES list.
    Here is my rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK=""
    TIMEZONE="Asia/Hong_Kong"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MOD_AUTOLOAD="yes"
    MODULES=(acpi-cpufreq fuse tp_smapi vboxdrv e1000e)
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="antony-tp"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    # interface=eth0
    # address=192.168.0.2
    # netmask=255.255.255.0
    # broadcast=192.168.0.255
    # gateway=192.168.0.1
    # DHCP example
    # interface=eth0
    # address=
    # netmask=
    # gateway=
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="yes"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If something other takes care of your hardware clock (ntpd, dual-boot...)
    # you should disable 'hwclock' here.
    DAEMONS=(!hwclock syslog-ng dbus !network !dhcpcd rpcbind acpid @wicd nfs-common netfs @crond cups @laptop-mode @alsa @sensors ntpd @slim bluetooth)
    Here is a segment of my dmesg
    [ 2.759302] e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
    [ 2.759304] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    [ 2.759338] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [ 2.759348] e1000e 0000:00:19.0: setting latency timer to 64
    [ 2.759467] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    [ 2.766107] tpm_tis 00:0a: 1.2 TPM (device-id 0x0, rev-id 78)
    [ 2.766808] ACPI: AC Adapter [AC] (on-line)
    [ 2.776492] wmi: Mapper loaded
    [ 2.777212] mei: module is from the staging directory, the quality is unknown, you have been warned.
    [ 2.777781] thermal LNXTHERM:00: registered as thermal_zone0
    [ 2.777783] ACPI: Thermal Zone [THM0] (66 C)
    [ 2.778291] iTCO_vendor_support: vendor-support=0
    [ 2.780137] ACPI: Battery Slot [BAT0] (battery present)
    [ 2.780958] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 2.781462] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 2.781547] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 2.781919] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 2.783139] cfg80211: Calling CRDA to update world regulatory domain
    [ 2.789182] [drm] Initialized drm 1.1.0 20060810
    [ 2.789538] hub 4-1:1.0: USB hub found
    [ 2.789616] hub 4-1:1.0: 8 ports detected
    [ 2.792925] Non-volatile memory driver v1.3
    [ 2.795877] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [ 2.795879] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 2.795881] thinkpad_acpi: ThinkPad BIOS 8DET54WW (1.24 ), EC unknown
    [ 2.795882] thinkpad_acpi: Lenovo ThinkPad X220, model 4290NL5
    [ 2.797236] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [ 2.797352] thinkpad_acpi: radio switch found; radios are enabled
    [ 2.797466] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
    [ 2.799752] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [ 2.800067] Registered led device: tpacpi::thinklight
    [ 2.800091] Registered led device: tpacpi::power
    [ 2.800106] Registered led device: tpacpi::standby
    [ 2.800120] Registered led device: tpacpi::thinkvantage
    [ 2.800192] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [ 2.800254] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 2.801077] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
    [ 2.801162] sdhci: Secure Digital Host Controller Interface driver
    [ 2.801164] sdhci: Copyright(c) Pierre Ossman
    [ 2.801707] Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    [ 2.801709] Copyright(c) 2003-2011 Intel Corporation
    [ 2.801744] iwlwifi 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    [ 2.801753] iwlwifi 0000:03:00.0: setting latency timer to 64
    [ 2.801789] iwlwifi 0000:03:00.0: pci_resource_len = 0x00002000
    [ 2.801791] iwlwifi 0000:03:00.0: pci_resource_base = ffffc90005abc000
    [ 2.801793] iwlwifi 0000:03:00.0: HW Revision ID = 0x34
    [ 2.801877] iwlwifi 0000:03:00.0: irq 49 for MSI/MSI-X
    [ 2.801913] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6205 AGN, REV=0xB0
    [ 2.801962] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 2.802045] sdhci-pci 0000:0d:00.0: SDHCI controller found [1180:e822] (rev 7)
    [ 2.802067] sdhci-pci 0000:0d:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 2.802107] sdhci-pci 0000:0d:00.0: setting latency timer to 64
    [ 2.802118] _regulator_get: 0000:0d:00.0 supply vmmc not found, using dummy regulator
    [ 2.802188] Registered led device: mmc0::
    [ 2.803329] mmc0: SDHCI controller on PCI [0000:0d:00.0] using DMA
    [ 2.815226] iwlwifi 0000:03:00.0: device EEPROM VER=0x715, CALIB=0x6
    [ 2.815229] iwlwifi 0000:03:00.0: Device SKU: 0X1f0
    [ 2.815231] iwlwifi 0000:03:00.0: Valid Tx ant: 0X3, Valid Rx ant: 0X3
    [ 2.815247] iwlwifi 0000:03:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    [ 2.845674] iwlwifi 0000:03:00.0: loaded firmware version 17.168.5.3 build 42301
    [ 2.845820] Registered led device: phy0-led
    [ 2.850630] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 2.862431] usb 1-1.2: new low-speed USB device number 3 using ehci_hcd
    [ 2.943648] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GT/s:Width x1) f0:de:f1:92:77:26
    [ 2.943651] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
    [ 2.943712] e1000e 0000:00:19.0: eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF
    [ 2.943734] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 2.943739] mei 0000:00:16.0: setting latency timer to 64
    [ 2.943817] mei 0000:00:16.0: irq 50 for MSI/MSI-X
    [ 2.944502] agpgart-intel 0000:00:00.0: Intel Sandybridge Chipset
    [ 2.945021] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 2.946341] watchdog: INTCAMT: cannot register miscdev on minor=130 (err=-16).
    [ 2.946452] watchdog: error registering /dev/watchdog (err=-16).
    [ 2.946523] mei: unable to register watchdog device.
    [ 2.946598] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
    [ 2.946692] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
    [ 2.946734] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 2.948359] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 2.948422] snd_hda_intel 0000:00:1b.0: irq 51 for MSI/MSI-X
    [ 2.948444] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
    [ 3.022245] usb 1-1.3: new full-speed USB device number 4 using ehci_hcd
    [ 3.172080] usb 1-1.4: new full-speed USB device number 5 using ehci_hcd
    [ 3.274597] Bluetooth: Core ver 2.16
    [ 3.274611] NET: Registered protocol family 31
    [ 3.274612] Bluetooth: HCI device and connection manager initialized
    [ 3.274614] Bluetooth: HCI socket layer initialized
    [ 3.274614] Bluetooth: L2CAP socket layer initialized
    [ 3.274618] Bluetooth: SCO socket layer initialized
    [ 3.275535] Bluetooth: Generic Bluetooth USB driver ver 0.6
    [ 3.276006] usbcore: registered new interface driver btusb
    [ 3.338454] usb 1-1.6: new high-speed USB device number 6 using ehci_hcd
    [ 3.444567] Linux media interface: v0.10
    [ 3.447387] Linux video capture interface: v2.00
    [ 3.448573] input: Logitech Trackball as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input6
    [ 3.448671] generic-usb 0003:046D:C404.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech Trackball] on usb-0000:00:1a.0-1.2/input0
    [ 3.448690] usbcore: registered new interface driver usbhid
    [ 3.448691] usbhid: USB HID core driver
    [ 3.449136] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b217)
    [ 3.450945] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input7
    [ 3.450987] usbcore: registered new interface driver uvcvideo
    [ 3.450988] USB Video Class driver (1.1.1)
    [ 3.484049] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input8
    [ 3.491137] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
    [ 3.491298] HDMI status: Codec=3 Pin=6 Presence_Detect=0 ELD_Valid=0
    [ 3.491486] HDMI status: Codec=3 Pin=7 Presence_Detect=0 ELD_Valid=0
    [ 3.491637] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 3.491709] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 3.491765] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 3.492050] i915 0000:00:02.0: power state changed by ACPI to D0
    [ 3.492053] i915 0000:00:02.0: power state changed by ACPI to D0
    [ 3.492059] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 3.492062] i915 0000:00:02.0: setting latency timer to 64
    [ 3.538056] mtrr: no more MTRRs available
    [ 3.538058] [drm] MTRR allocation failed. Graphics performance may suffer.
    [ 3.538266] i915 0000:00:02.0: irq 52 for MSI/MSI-X
    [ 3.538270] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 3.538271] [drm] Driver supports precise vblank timestamp query.
    [ 3.538292] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 3.664501] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.0, id: 0x1e2b1, caps: 0xd001a3/0x940300/0x120c00
    [ 3.664518] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
    [ 3.716317] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input12
    [ 4.407165] fbcon: inteldrmfb (fb0) is primary device
    [ 4.575259] Console: switching to colour frame buffer device 170x48
    [ 4.577042] fb0: inteldrmfb frame buffer device
    [ 4.577043] drm: registered panic notifier
    [ 4.607860] acpi device:01: registered as cooling_device4
    [ 4.607985] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input13
    [ 4.608039] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    [ 4.608122] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 4.757243] EXT4-fs (sda3): re-mounted. Opts: discard
    [ 4.765917] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: discard
    [ 4.776777] Adding 262140k swap on /dev/sda2. Priority:-1 extents:1 across:262140k SS
    [ 5.099467] NET: Registered protocol family 10
    [ 6.048650] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 6.098038] Bluetooth: RFCOMM TTY layer initialized
    [ 6.098055] Bluetooth: RFCOMM socket layer initialized
    [ 6.098057] Bluetooth: RFCOMM ver 1.11
    [ 6.278766] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 6.278893] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
    [ 6.568639] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 6.568775] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
    [ 6.684082] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 7.176563] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    [ 7.226662] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    [ 7.227110] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 10.229345] IBM TrackPoint firmware: 0x0e, buttons: 3/3
    [ 10.490618] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input14
    [ 10.817814] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
    [ 10.819315] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 11.186166] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 11.186292] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
    [ 11.313367] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 11.665342] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    [ 11.717591] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    [ 11.718042] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 11.964795] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    [ 12.017213] e1000e 0000:00:19.0: irq 48 for MSI/MSI-X
    [ 12.017720] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 13.811264] EXT4-fs (sda3): re-mounted. Opts: discard,commit=0
    [ 13.826031] EXT4-fs (sda4): re-mounted. Opts: discard,commit=0
    [ 15.178905] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
    [ 15.180472] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 25.663056] eth0: no IPv6 routers present
    Any hint for tracing the root of this problem? Thank you very much!

    Hi ...
    If you have moved the Safari application from the Applications folder, move it back.
    As far as the cache goes, there's a work around for that when you can't empty the Safari cache from the menu bar.
    Go to    ~/Library/Caches/com.aple.Safari.Cache.db.  Move the Cache.db file to the Trash.
    Try Safari.
    Mac OS X (10.7.2)   <  from your profile
    If that is corrrect, you need to update your system software. Click your Apple menu icon top left in your screen. From the drop down menu click Software
    Update ...
    ~ (Tilde) character represents the Home folder.
    For Lion v10.7x:  To find the Home folder in OS X Lion, open the Finder, hold the Option key, and choose Go > Library

  • Trying to install itunes on win 8.1.  keep getting error apple application support not found.  asks me to uninstall and install itunes.  i tried several times and keep getting same error.

    trying to install itunes on win 8.1.  keep getting error apple application support not found.  asks me to uninstall and install itunes.  i tried several times and keep getting same error.

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR suitable for your PC (there's a 32-bit Windows version and a 64-bit Windows version):
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, see if iTunes will launch without the error now.
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • IMac Retina has started shutting down several times a day, generating a "Panic Report".

    Although I have had a new iMac Retina since October, it is only within the past few weeks that I have started trying to use it for most purposes. Initially, it seemed to be working OK.  But during the past week, it has started to do peculiar things, such as:
    1. Now, several times a day, it shuts down unexpectedly.  When I boot it back up, it displays a message saying that it was shut down because of a problem.  Then, when I click on the window for a report of the problem, it generates a long “Panic Report”.
    2.  When it boots back up, it automatically opens several windows that I did not have open when it shut down — Safari, Firefox, Excel, Word, etc.
    3. I have 2 external 1gb drives connected for data, and 2 external 4gb drives connected for Time Machine backups.  All of the drives have been formatted Mac OS Extended (Journaled).  However, although Finder originally showed all 4 of those drives, Finder now always omits a particular one of the 1gb drives. Yet,  iDrive and Time Machine continue to recognize all 4 drives.
    4. Several times over the past week, it suddenly popped up a “Jabber" window containing a long transcript of a series of iPhone texts that I exchanged in January.  However, I never installed Jabber (to my knowledge), and it doesn’t show as currently installed on any of my devices.
    I just ran EtreCheck, and this is the report:
    Problem description:
    New iMac with Yosemite has started to shut down itself several times a day, generating a Panic Report.
    EtreCheck version: 2.1.8 (121)
    Report generated March 15, 2015 at 10:02:04 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (Retina 5K, 27-inch, Late 2014) (Technical Specifications)
        iMac - model: iMac15,1
        1 4 GHz Intel Core i7 CPU: 4-core
        32 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 0/DIMM1
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM1
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        AMD Radeon R9 M290X - VRAM: 2048 MB
            iMac spdisplays_5120x2880Retina
            Cintiq 22HD 1920 x 1080 @ 60 Hz
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Time since boot: 0:35:40
    Disk Information: ℹ️
        APPLE SSD SM0512F disk0 : (500.28 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 499.10 GB (226.65 GB free)
                Core Storage: disk0s2 499.42 GB Online
    USB Information: ℹ️
        VIA Labs, Inc. USB3.0 Hub
            VIA Labs, Inc. USB3.0 Hub
                U32 Shadow 1 TB
            EFI (disk5s1) <not mounted> : 210 MB
            PP C10 & BC (disk5s2) /Volumes/PP C10 & BC : 999.86 GB (765.41 GB free)
                VIA Labs, Inc. USB 3.0 SATA Bridge 1 TB
            EFI (disk6s1) <not mounted> : 210 MB
            FILES & PIX (disk6s2) /Volumes/FILES & PIX : 999.86 GB (388.27 GB free)
            Seagate Backup+  Desk M 4 TB
            EFI (disk3s1) <not mounted> : 315 MB
            4TB Backup 1 (disk3s2) /Volumes/4TB Backup 1 : 4.00 TB (906.69 GB free)
        VIA Labs, Inc. USB3.0 Hub
            Seagate BUP Fast HDD 4 TB
            disk4s1 (disk4s1) <not mounted> : 262 KB
            4TB Backup 2 (disk4s3) /Volumes/4TB Backup 2 : 4.00 TB (1.93 TB free)
            VIA Labs, Inc. USB3.0 Hub
        VIA Labs, Inc. USB3.0 Hub
            VIA Labs, Inc. USB3.0 Hub
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        VIA Labs, Inc. USB2.0 Hub
            PNY Technologies USB 3.0 FD 255.64 GB
            256K USB (disk2s1) /Volumes/256K USB : 255.64 GB (42.65 GB free)
        WACOM Cintiq 22HD HUB
            Tablet Cintiq 22HD Tablet
        VIA Labs, Inc. USB2.0 Hub
            USB2.0 External Mass Storage Device
            VIA Labs, Inc. USB2.0 Hub
        VIA Labs, Inc. USB2.0 Hub
            CPS CP 1500C
            Brother QL-550
            VIA Labs, Inc. USB2.0 Hub
                ATEN UC-10KM V1.3.121
                Initio SDRW-08D1S-U
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.1.4 28883 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.1.4 28883 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.1.4 28883 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.1.4 28883 - SDK 10.7) [Click for support]
            /Library/Application Support/Kaspersky Lab/KAV/Bases/Cache
        [loaded]    com.kaspersky.kext.kimul.44 (44) [Click for support]
        [loaded]    com.kaspersky.kext.mark.1.0.5 (1.0.5) [Click for support]
            /Library/Extensions
        [loaded]    com.kaspersky.kext.klif (3.0.5a45) [Click for support]
        [loaded]    com.kaspersky.nke (2.0.0a12) [Click for support]
        [not loaded]    com.wacom.kext.ftdi (1 - SDK 10.10) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.wacom.kext.wacomtablet (6.3.11 - SDK 10.10) [Click for support]
    Launch Agents: ℹ️
        [loaded]    com.acronis.acep.plist [Click for support]
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [running]    com.fujitsu.pfu.ScanSnap.AOUMonitor.plist [Click for support]
        [running]    com.kaspersky.kav.gui.plist [Click for support]
        [running]    com.wacom.wacomtablet.plist [Click for support]
    Launch Daemons: ℹ️
        [not loaded]    com.acronis.1_1.plist [Click for support]
        [unknown]    com.acronis.1_2.plist [Click for support]
        [loaded]    com.acronis.startup.plist [Click for support]
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [running]    com.kaspersky.kav.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2.Agent.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [running]    com.prosoftnet.idrivedaemon.plist [Click for support]
        [running]    com.prosoftnet.idsyncdaemon.plist [Click for support]
        [running]    com.prosoftnet.idwebdaemon.plist [Click for support]
        [loaded]    jp.co.canon.MasterInstaller.plist [Click for support]
    User Launch Agents: ℹ️
        [running]    com.acronis.monitor.plist [Click for support]
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Click for support]
        [loaded]    com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        ScanSnap Manager    Application  (/Applications/ScanSnap/ScanSnap Manager.app)
        Canon IJ Network Scanner Selector EX    Application Hidden (/Applications/Canon Utilities/IJ Network Scanner Selector EX/Canon IJ Network Scanner Selector EX.app)
        RoboFormIcon    Application  (/Users/[redacted]/Library/Application Support/RoboForm/RoboFormIcon.app)
        Google Chrome    Application  (/Applications/Google Chrome.app)
        Firefox    Application  (/Applications/Firefox.app)
        IDriveMonitor    Application  (/Library/Application Support/IDriveforMac/IDriveHelperTools/IDriveMonitor.app)
    Internet Plug-ins: ℹ️
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 Outdated! Update
        Default Browser: Version: 600 - SDK 10.10
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.6 - SDK 10.9 [Click for support]
    Safari Extensions: ℹ️
        RoboForm
        Virtual Keyboard
        URL Advisor
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        WacomTablet  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            FILES & PIX: Disk size: 999.86 GB Disk used: 611.59 GB
            Macintosh HD: Disk size: 499.10 GB Disk used: 272.45 GB
            PP C10 & BC: Disk size: 999.86 GB Disk used: 234.45 GB
        Destinations:
            Seagate Backup Plus Drive [Local]
            Total size: 4.00 TB
            Total number of backups: 51
            Oldest backup: 2015-02-15 13:35:27 +0000
            Last backup: 2015-03-11 14:53:20 +0000
            Size of backup disk: Adequate
                Backup size 4.00 TB > (Disk used 1.12 TB X 3)
            4TB Backup 2 [Local]
            Total size: 4.00 TB
            Total number of backups: 1
            Oldest backup: 2015-03-10 14:15:06 +0000
            Last backup: 2015-03-10 14:15:06 +0000
            Size of backup disk: Adequate
                Backup size 4.00 TB > (Disk used 1.12 TB X 3)
    Top Processes by CPU: ℹ️
            70%    kav
             4%    WindowServer
             1%    IDriveDaemon
             1%    launchservicesd
             1%    loginwindow
    Top Processes by Memory: ℹ️
        481 MB    WindowServer
        412 MB    Finder
        378 MB    mds_stores
        378 MB    Mail
        344 MB    kav
    Virtual Memory Information: ℹ️
        22.99 GB    Free RAM
        6.11 GB    Active RAM
        3.21 GB    Inactive RAM
        2.04 GB    Wired RAM
        12.16 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 15, 2015, 09:31:01 AM    /Library/Logs/DiagnosticReports/Microsoft Word_2015-03-15-093101_[redacted].hang
        Mar 15, 2015, 09:25:07 AM    Self test - passed
        Mar 15, 2015, 09:06:42 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-090642_[redacted].panic [Click for details]
        Mar 15, 2015, 08:37:25 AM    /Library/Logs/DiagnosticReports/kav_2015-03-15-083725_[redacted].cpu_resource.d iag [Click for details]
        Mar 15, 2015, 07:42:36 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-074236_[redacted].panic [Click for details]
        Mar 15, 2015, 07:21:34 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-072134_[redacted].panic [Click for details]
        Mar 15, 2015, 07:00:02 AM    /Library/Logs/DiagnosticReports/WacomTabletDriver_2015-03-15-070002_[redacted]. crash
        Mar 15, 2015, 06:59:57 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-065957_[redacted].panic [Click for details]
        Mar 15, 2015, 06:38:44 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-063844_[redacted].panic [Click for details]
        Mar 15, 2015, 06:17:17 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-061717_[redacted].panic [Click for details]
        Mar 15, 2015, 05:55:55 AM    /Library/Logs/DiagnosticReports/WacomTabletDriver_2015-03-15-055555_[redacted]. crash
        Mar 15, 2015, 05:55:50 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-055550_[redacted].panic [Click for details]
        Mar 15, 2015, 05:34:18 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-053418_[redacted].panic [Click for details]
        Mar 15, 2015, 05:12:32 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-051232_[redacted].panic [Click for details]
        Mar 15, 2015, 04:51:00 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-045100_[redacted].panic [Click for details]
        Mar 15, 2015, 04:29:31 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-042931_[redacted].panic [Click for details]
        Mar 15, 2015, 04:07:51 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-040751_[redacted].panic [Click for details]
        Mar 15, 2015, 03:46:28 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-034628_[redacted].panic [Click for details]
        Mar 15, 2015, 03:25:11 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-032511_[redacted].panic [Click for details]
        Mar 15, 2015, 03:03:55 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-030355_[redacted].panic [Click for details]
        Mar 15, 2015, 02:42:41 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-024241_[redacted].panic [Click for details]
        Mar 15, 2015, 02:21:26 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-022126_[redacted].panic [Click for details]
        Mar 15, 2015, 02:00:11 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-020011_[redacted].panic [Click for details]
        Mar 15, 2015, 01:38:57 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-013857_[redacted].panic [Click for details]
        Mar 15, 2015, 01:17:19 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-011719_[redacted].panic [Click for details]
        Mar 15, 2015, 12:55:57 AM    /Library/Logs/DiagnosticReports/Kernel_2015-03-15-005557_[redacted].panic [Click for details]
        Mar 15, 2015, 12:34:38 AM    /Library/Logs/DiagnosticReports/configd_2015-03-15-003438_[redacted].crash
        Mar 14, 2015, 06:13:08 PM    /Library/Logs/DiagnosticReports/kav_2015-03-14-181308_[redacted].cpu_resource.d iag [Click for details]
        Mar 14, 2015, 07:00:52 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/sips_2015-03-14-070052_[redact ed].crash
        Mar 14, 2015, 07:00:41 AM    /Library/Logs/DiagnosticReports/IDriveDaemon_2015-03-14-070041_[redacted].crash
        Mar 14, 2015, 07:00:39 AM    /Library/Logs/DiagnosticReports/idrive_ver_001_2015-03-14-070039_[redacted].cra sh
        Mar 13, 2015, 12:31:30 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/QuickLookSatellite_2015-03-13- 123130_[redacted].crash
        Mar 13, 2015, 11:44:21 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Mail_2015-03-13-114421_[redact ed].crash

    Here is the most recent Panic Report (the third one this morning).
    Any additional help anyone can provide will be greatly appreciated.
    Anonymous UUID: 60368288-2D9F-A921-3EFF-FAD932842BF8
    Sun Mar 15 13:22:20 2015
    *** Panic Report ***
    panic(cpu 0 caller 0xffffff800d41e80a): Kernel trap at 0xffffff800d5462cb, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x000000000000001c, CR3: 0x0000000008c6e03b, CR4: 0x00000000001626e0
    RAX: 0x0000000000000000, RBX: 0xffffff80598820f0, RCX: 0xffffff804d1bee90, RDX: 0x0000000000000080
    RSP: 0xffffff83b60e37a0, RBP: 0xffffff83b60e37d0, RSI: 0xffffff83b60e381c, RDI: 0xffffff80598820f0
    R8: 0x000000000098904a, R9: 0xffffff800da95730, R10: 0x0000019f00da4bdb, R11: 0x0000019f0041bb91
    R12: 0x0000000000000001, R13: 0xffffff8059882160, R14: 0xffffff83b60e381c, R15: 0xffffff800db10688
    RFL: 0x0000000000010206, RIP: 0xffffff800d5462cb, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x000000000000001c, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff83b60e3450 : 0xffffff800d33a811
    0xffffff83b60e34d0 : 0xffffff800d41e80a
    0xffffff83b60e3690 : 0xffffff800d43a443
    0xffffff83b60e36b0 : 0xffffff800d5462cb
    0xffffff83b60e37d0 : 0xffffff7f8dc262bb
    0xffffff83b60e3c60 : 0xffffff7f8dc1f0d4
    0xffffff83b60e3c90 : 0xffffff7f8dc20b46
    0xffffff83b60e3cc0 : 0xffffff800d7a2c66
    0xffffff83b60e3d20 : 0xffffff800d55f961
    0xffffff83b60e3d60 : 0xffffff800d55fb2e
    0xffffff83b60e3f50 : 0xffffff800d84d924
    0xffffff83b60e3fb0 : 0xffffff800d43a938
          Kernel Extensions in backtrace:
    com.kaspersky.kext.klif(3.0.5a45)[D0C16D87-B541-24CD-90A5-9E262A592215]@0xfffff f7f8dc1d000->0xffffff7f8dc30fff
    dependency: com.apple.iokit.IOStorageFamily(2.0)[8C420771-7171-3369-891C-6E24F60E569E]@0xff ffff7f8da47000
    BSD process name corresponding to current thread: IDriveDaemon
    Mac OS version:
    14B25
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide: 0x000000000d000000
    Kernel text base: 0xffffff800d200000
    __HIB  text base: 0xffffff800d100000
    System model name: iMac15,1 (Mac-42FD25EABCABB274)
    System uptime in nanoseconds: 1782415776511
    last loaded kext at 359287089502: com.apple.filesystems.msdosfs      1.10 (addr 0xffffff7f905e5000, size 69632)
    last unloaded kext at 91985318825: com.apple.driver.AppleFileSystemDriver           3.0.1 (addr 0xffffff7f8f7fc000, size 8192)
    loaded kexts:
    com.kaspersky.kext.mark.1.0.5        1.0.5
    com.kaspersky.kext.kimul.44           44
    com.kaspersky.nke    2.0.0a12
    com.kaspersky.kext.klif         3.0.5a45
    com.apple.filesystems.msdosfs        1.10
    com.apple.driver.AppleBluetoothMultitouch         85.3
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport           4.3.1f2
    com.apple.driver.AudioAUUC           1.70
    com.apple.iokit.IOUSBAttachedSCSI            1.1.0
    com.apple.iokit.SCSITaskUserClient            3.7.0
    com.apple.driver.ApplePlatformEnabler    2.1.0d1
    com.apple.driver.AGPM        100.14.37
    com.apple.driver.X86PlatformShim            1.0.0
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AppleOSXWatchdog        1
    com.apple.driver.AppleMikeyHIDDriver     124
    com.apple.iokit.IOBluetoothSerialManager            4.3.1f2
    com.apple.driver.AppleMikeyDriver           267.0
    com.apple.driver.AppleHDA 267.0
    com.apple.driver.AppleGraphicsDevicePolicy        3.7.7
    com.apple.driver.AppleUpstreamUserClient          3.6.1
    com.apple.kext.AMDFramebuffer    1.2.8
    com.apple.iokit.IOUserEthernet       1.0.1
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.driver.AppleIntelHD5000Graphics       10.0.0
    com.apple.AMDRadeonX4000         1.2.8
    com.apple.driver.AppleThunderboltIP       2.0.2
    com.apple.driver.AppleHWAccess   1
    com.apple.driver.AppleLPC  1.7.3
    com.apple.driver.AppleSMCLMU     2.0.4d1
    com.apple.driver.AppleHV    1
    com.apple.driver.AppleIntelFramebufferAzul       10.0.0
    com.apple.driver.AppleMCCSControl          1.2.10
    com.apple.kext.AMD7000Controller           1.2.8
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless      1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.BootCache            35
    com.apple.driver.AppleUSBHub      705.4.1
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage           2.6.5
    com.apple.driver.AppleSDXC           1.6.5
    com.apple.iokit.AppleBCM5701Ethernet   10.1.2b3
    com.apple.driver.AirPort.Brcm4360           901.19.10
    com.apple.driver.AppleAHCIPort     3.0.7
    com.apple.driver.AppleUSBXHCI     705.4.14
    com.apple.driver.AppleRTC  2.0
    com.apple.driver.AppleACPIButtons           3.1
    com.apple.driver.AppleHPET           1.8
    com.apple.driver.AppleSMBIOS       2.1
    com.apple.driver.AppleACPIEC        3.1
    com.apple.driver.AppleAPIC            1.7
    com.apple.nke.applicationfirewall   161
    com.apple.security.quarantine        3
    com.apple.security.TMSafetyNet     8
    com.apple.driver.AppleBluetoothHIDKeyboard    175.5
    com.apple.driver.AppleHIDKeyboard         175.5
    com.apple.driver.IOBluetoothHIDDriver    4.3.1f2
    com.apple.driver.AppleMultitouchDriver   260.30
    com.apple.iokit.IOBluetoothHostControllerUSBTransport            4.3.1f2
    com.apple.iokit.IOSCSIBlockCommandsDevice       3.7.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        3.7.0
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOUSBMassStorageClass     3.7.0
    com.apple.kext.triggers         1.0
    com.apple.iokit.IOSerialFamily         11
    com.apple.iokit.IOUSBUserClient     705.4.0
    com.apple.driver.DspFuncLib          267.0
    com.apple.kext.OSvKernDSPLib      1.15
    com.apple.iokit.IOAudioFamily         200.6
    com.apple.vecLib.kext           1.2.0
    com.apple.iokit.IOUSBHIDDriver     705.4.0
    com.apple.iokit.IOBluetoothFamily  4.3.1f2
    com.apple.iokit.IOSurface     97
    com.apple.driver.AppleGraphicsControl     3.7.21
    com.apple.iokit.IONDRVSupport      2.4.1
    com.apple.driver.AppleHDAController        267.0
    com.apple.iokit.IOHDAFamily           267.0
    com.apple.driver.AppleSMBusPCI   1.0.12d1
    com.apple.driver.AppleThunderboltEDMSink       4.0.2
    com.apple.iokit.IOAcceleratorFamily2         156.4
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.driver.AppleSMBusController    1.0.13d1
    com.apple.kext.AMDSupport            1.2.8
    com.apple.AppleGraphicsDeviceControl     3.7.21
    com.apple.iokit.IOGraphicsFamily    2.4.1
    com.apple.iokit.IOSCSIArchitectureModelFamily   3.7.0
    com.apple.driver.AppleUSBMergeNub       705.4.0
    com.apple.driver.AppleUSBComposite        705.4.9
    com.apple.driver.CoreStorage          471
    com.apple.driver.AppleThunderboltDPInAdapter            4.0.6
    com.apple.driver.AppleThunderboltDPOutAdapter         4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily    4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter     2.0.2
    com.apple.driver.AppleThunderboltNHI    3.1.7
    com.apple.iokit.IOThunderboltFamily         4.2.1
    com.apple.iokit.IOEthernetAVBController  1.0.3b3
    com.apple.iokit.IO80211Family       700.52
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily           3.2
    com.apple.iokit.IOAHCIFamily          2.7.0
    com.apple.iokit.IOUSBFamily            705.4.14
    com.apple.driver.AppleEFINVRAM  2.0
    com.apple.iokit.IOHIDFamily            2.0.0
    com.apple.driver.AppleEFIRuntime            2.0
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore     2
    com.apple.driver.AppleMobileFileIntegrity            1.0.5
    com.apple.driver.AppleCredentialManager           1.0
    com.apple.driver.DiskImages           389.1
    com.apple.iokit.IOStorageFamily      2.0
    com.apple.iokit.IOReportFamily       31
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform         3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto     1.0
    com.apple.kec.Libm   1
    com.apple.kec.pthread          1
    Model: iMac15,1, BootROM IM151.0207.B00, 4 processors, Intel Core i7, 4 GHz, 32 GB, SMC 2.22f16
    Graphics: AMD Radeon R9 M290X, AMD Radeon R9 M290X, PCIe, 2048 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x0000, 0x4158494F4D204D454D4F5259000000000000
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x0000, 0x4158494F4D204D454D4F5259000000000000
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1600 MHz, 0x0000, 0x4158494F4D204D454D4F5259000000000000
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1600 MHz, 0x0000, 0x4158494F4D204D454D4F5259000000000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x142), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE SSD SM0512F, 500.28 GB
    USB Device: USB3.0 Hub
    USB Device: USB3.0 Hub
    USB Device: Shadow
    USB Device: Backup+ Desk M
    USB Device: USB3.0 Hub
    USB Device: BUP Fast HDD
    USB Device: USB3.0 Hub
    USB Device: USB3.0 Hub
    USB Device: USB3.0 Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: USB2.0 Hub
    USB Device: CP 1500C
    USB Device: QL-550
    USB Device: USB2.0 Hub
    USB Device: UC-10KM V1.3.121
    USB Device: SDRW-08D1S-U
    USB Device: Cintiq 22HD HUB
    USB Device: Cintiq 22HD Tablet
    USB Device: USB2.0 Hub
    USB Device: USB 3.0 FD
    USB Device: USB2.0 Hub
    USB Device: Mass Storage Device
    USB Device: USB2.0 Hub
    Thunderbolt Bus: iMac, Apple Inc., 26.1

Maybe you are looking for

  • Battery heating up in Lumia920

    Hi have bought new lumia920 day ago. I have noticed that when ever I play games or charge it using my laptop the phone starts heating up. Is it normal or there is some issue with my phone.

  • I-tunes is not responding

    Whenever I open i-tunes it always freezes and comes up with the message 'not-responding' regardless if I have any of my apple devices plugged in.

  • Webservice calling through abap

    Hi! I need to know how to triger or call a webservice with abap? Imagine there is a webservice existing I need a way to call it via abap Thanks Ilhan ertas

  • ScrollTop(); functions not working in V5.0.1

    Reading article 1361668 by heathrowe on getting the scroll position does not work when creating a new document in Edge Animate V5.0.1 (2014.1): //"Text" on stage sym.$("Text").css("position","fixed"); $(window).scroll(function () {       var myScroll

  • Deploying forms and reports on Application Server 10g

    I had buit some forms,reports by using Oracle Developer Suite( Oracle Form developer, Report developer ) , I had run them on that tools. Now I want to deploy on Oracle Application Server. How can do it , any one can tell me step by step (because I'm