Help with product differences: Subscription vs. Non-Subscription

Hello!  I have searched through the FAQs and read the product comparisons fairly extensively, yet I am still trying to wrap my head around the differences in product types.
My main question:  Is every Adobe product now subscription based?  I am looking to purchase CS 6 Design Standard as a student.  I see a price for $349.99, but no indication as to whether this is subscription based. 
I then visit the "Buying Guide" section, and see a price for CS 6 Design Standard as $1,299 amongst the comparisons of the other Packages.  I would prefer a full downloadable version of CS 6 Design Standard as opposed to a Cloud-based subscription.  I just don't like the idea of a monthly/annual charge for my design software. 
I am a current user of CS 2, but I really need to upgrade to enjoy the new features of the software. 
Thanks for the help!

The $349 price is for the Student and Teacher edition of the software.  This is a prepetual edition of the software and is not subscription based.  The $1299 price is the full version price for users who do not qualify for the Student and Teacher edition of the software and do not qualify for upgrade pricing.

Similar Messages

  • Help with production jvm issues at customer site

    Following is a brief overview of two production issues experienced by an Oracle customer. Customer is currently running 32 bit Java 1.5_20 on Solaris 64 bit OS.
    1)     OOM heap issues – SR #3-2611053901 – Recently we have been seeing OOM errors due to heap space. What we have seen is that some of the instances are not able to free up any memory space even after full GC, which results into a series of full GC’s back to back and eventually leads to OOM. During this time when continuous full GC is going on, we have seen the TCP connections and active JDBC connections shoot up and also lots of stuck threads. This error occurs during peak hours.
    This is the output just before OOM. Just to be clear, this line is printed as last line of Full GC which meant that OOM happened right after Full GC:
    [PSYoungGen: 111616K->82323K(172544K)] [PSOldGen: 1865727K->1865727K(1865728K)] 1977343K->1948051K(2038272K) [PSPermGen: 209111K->209061K(210944K)] GC time is exceeding GCTimeLimit of 98%, 13.3644395 secs]
    2)     OOM swap space- SR: #3-1724941721 – From time to time, we get Exception in thread "CompilerThread0" java.lang.OutOfMemoryError: requested 32756 bytes for ChunkPool::allocate. Out of swap space?’ error in our production. Mostly this error occurs during off hours or off-peak hours. When this happen, there is plenty of heap and perm memory available which indicates that this is a native memory error. We already put two workarounds suggested by Oracle i.e. -XX:CodeCacheMinimumFreeSpace=8m -XX:ReservedCodeCacheSize=128m but still running into this problem.
    What we are looking for:
    1)     Recommendations on tuning our config parameters -
    These are some recommendations we discussed internally. Please validate these recommendations and provide us the recommended values. We would also welcome any new recommendation on updating other parameters if that will help with our issues.
    •     Change Xmx to 2048m and MaxPermSize to 512m
    •     Specify ratio of young generation to old generation (-XX:NewRatio), and possibly survivor spaces.
    •     Use Concurrent old generation collector (-XX:+UseConcMarkSweepGC), with a compatible parallel young generation collector (-XX:+UseParNewGC)
    Our current config settings are:
    JAVA Memory arguments: -Did=chaserels-cm21 -Xms1024m -Xmx2048m -XX:MaxPermSize=1024m -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:CodeCacheMinimumFreeSpace=8m -XX:ReservedCodeCacheSize=128m -verbose:gc -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=1641 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Djava.awt.headless=true -Dfile.encoding=ISO646-US
    In a subset of servers, the settings are same as above but for MaxPermSIze, which is set to -XX:MaxPermSize=512m
    2)     Diagnostic help in how to further narrow down to the problem and what tool to use to gather heap dumps
    We have tried to take heap dump using jmap on our production servers when OOM occurs due to heap but most of the time, we run into an exception (attached - which is probably an unresolved jvm bug). While we researched some alternatives to jmap for taking heap dumps, most of these require changing the start-up scripts or installing the tool on production system which may have a performance overhead. What we want is a least intrusive tool which could provide us heap dumps/snapshots without much overhead and could be preferably used remotely. If there are other ways of collecting data than heap dump, we could also use them.
    Let me know if you have any questions or need any data.
    Thanks for your help.
    Error from heap dump :
    Exception in thread "main" sun.jvm.hotspot.debugger.UnalignedAddressException: Trying to read at address: 0xfec080a7 with alignment: 4
    at sun.jvm.hotspot.debugger.DebuggerUtilities.checkAlignment(DebuggerUtilities.java:40)
    at sun.jvm.hotspot.debugger.proc.ProcDebuggerLocal.readCInteger(ProcDebuggerLocal.java:309)
    at sun.jvm.hotspot.debugger.DebuggerBase.readAddressValue(DebuggerBase.java:425)
    at sun.jvm.hotspot.debugger.proc.ProcDebuggerLocal.readOopHandle(ProcDebuggerLocal.java:326)
    at sun.jvm.hotspot.debugger.proc.ProcAddress.getOopHandleAt(ProcAddress.java:96)
    at sun.jvm.hotspot.oops.Oop.getKlassForOopHandle(Oop.java:198)
    at sun.jvm.hotspot.oops.ObjectHeap.newOop(ObjectHeap.java:346)
    at sun.jvm.hotspot.runtime.JavaThread.getThreadObj(JavaThread.java:333)
    at sun.jvm.hotspot.utilities.AbstractHeapGraphWriter.writeJavaThreads(AbstractHeapGraphWriter.java:113)
    at sun.jvm.hotspot.utilities.AbstractHeapGraphWriter.write(AbstractHeapGraphWriter.java:98)
    at sun.jvm.hotspot.utilities.HeapHprofBinWriter.write(HeapHprofBinWriter.java:399)
    at sun.jvm.hotspot.tools.JMap.writeHeapHprofBin(JMap.java:133)
    at sun.jvm.hotspot.tools.JMap.writeHeapHprofBin(JMap.java:143)
    at sun.jvm.hotspot.tools.JMap.run(JMap.java:71)
    at sun.jvm.hotspot.tools.Tool.start(Tool.java:204)
    at sun.jvm.hotspot.tools.JMap.main(JMap.java:126)

    1)     OOM heap issues – SR #3-2611053901 – Recently we have been seeing OOM errors due to heap space. What we have seen is that some of the instances are not able to free up any memory space even after full GC, which results into a series of full GC’s back to back and eventually leads to OOM. Which would be exactly what would happen if there were many objects which were not eligible for collection.
    Causes would be either a bug (something not releasing something it should) or because the server is overloaded.
    If there were no code changes it could still be a bug that has now only become apparent due to changes in usage patterns.
    If that is the case then such bugs can usually be made more apparent by reducing the maximum heap. Doing that will cause it to occur faster.

  • Living in Uruguay-Help with buying CC subscription

    Hello fellows, pls, I need some help to buy the CC subscription, which I can't due to the fact I live in Uruguay! How to???????? No chat available, telephone call is endless, and Adobe is awful with "contact help"-.... You are my last resource to solve this issue. I thank in Advance any idea you can have.
    Best wishes for the season--
    E&I Kennel.

    Adobe Resellers http://adobedealreg.force.com/PartnerSearch?lang=en
    -http://www.adobe.com/content/dam/Adobe/en/products/creativecloud/cc/pdfs/cc-availability-m atrix.pdf

  • Urgent HELP with Unlimited World subscription rene...

    Hi Skype gurus,
    Is there any way i can contact the Skype team to run the auto debit for Unlimited World subscription again ?
    I guess when the auto debit happened last time there was not enough money on the account,
    Now i transferred some one to the nominated accout to have my subscription renewed, and i really don't want my Unlimited World subscription to get cancelled i have been using it for years.
    Please help, and my skyp ID is zs.85128 mobile is +61 431 292 888.

    zhengjx_3333 wrote:
    I think my account may be linked to chinese Tom skype
    Did you first register your Skype account in China? If so you will be automatically routed to our Chinese partner tom.com (We have a legally binding agreement with them).
    The only way to break this link is to create a new account.
    If you did NOT first register in China please file here:
    contact customer service
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Help with starting my subscription on cs5?  Says they're unable to start my subscription?

    My serial code is valid but it says (quote) "We are unable to start your subscription for Adobe Photoshop CS5.1 Extended Subscription Edition".  Please help!  I'm eager to try this photoshop considering many people have recomended it over CS6!!

    Photoshop CS5.1 (12.1) was the first version which supported subscription licensing.
    http://feedback.photoshop.com/photoshop_family/topics/what_is_the_difference_between_photo shop_cs5_and_the_version_of_photoshop_that_comes_with_creative_suite_5_5
    I can't recall how the activation was handled back then though. Where did you purchase the subscription? Do you have access to the current Photoshop CC subscription version, and does it launch?
    regards,
    steve

  • Need help with File Share Subscription in SSRS 2008

    Hi,
         I have a requirement where  I have to deliver a SSRS report in csv format to a windows shared location. I know how to create a File Share Subscription to get this done, but the problem arises with the frequency of the report
    requested. It is like following..at 23:00, 23:30, 23:35, 23:40, 23:45, 23:50, 23:55, 24:00, 00:10, 00:20, 00:30, 03:00, 06:00, 09:00, 12:00, 15:00, 18:00, 21:00
    Now because the hourly pattern is not in a periodic format I am not able to get this scheduled in a single subscription. To achieve this one approach could creating multiple subscription. But I was wondering
    if there is a way to pass on the schedule information programmatically to a subscription, so that I can achieve this by creating just one subscription.
    Any expert ideas...

    Hi Mtiwari,
    Generally, we cannot create such an irregular execution time schedule. However, we can insert the execution time into a table and customize the steps on the job as a workaround. I have tested it on my local environment, the steps below are for your
    reference.
    Create a table and add the execution time to it using the query below.
    Use TestDB
    Create table [CustomeSchedule]([ExecuteTime]    Date)
    Insert into [CustomeSchedule]
    values('23:00'),('23:30'),('23:35'),('23:40'),('23:45'),('23:50'),('23:55'),('24:00'),('00:10'),('00:30'),('03:00'),('06:00'),('09:00'),('12:00'),('15:00'),('18:00'),('21:00')
    Create a subscription to execute erery Minute.
    Connect to SSMS>expand SQL Server Agent>expand Jobs, double-click the Jop.
    Select Steps on the left pane on the Job Properties window.
    Click Edit button and then use the query for on the command.
    IF exists(SELECT [ExecuteTime]FROM [TestDB].[dbo].[CustomeSchedule3] WHERE
    LEFT([ExecuteTime],5)=LEFT(CONVERT (time, SYSDATETIME()),5))
    BEGIN
    exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='9be28f07-3784-4070-802a-b7ca0aec4c7c'
    END
    Change the @EventType and @EventData to the values in your Job.
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    Charlie Liao
    TechNet Community Support

  • Could someone please help with two differences between CS and CS4?

    Hello, I just moved from Photoshop CS to CS4 and have a couple of questions regarding some differences I'm seeing in the two versions.
    (1) When opening files, I'm used to them opening in a smaller view as individual windows.  CS4 opens all images in the expanded view.  Is there a way to prevent this from happening?  I create massive sports photo galleries (often more than 100 images) and usually open 25-30 images at a time, then minimize all images and work on them one at a time in chronological order.  The was CS4 opens these images in full screen mode, it prevents me from doing this in a timely manner - PS never opens a group of photos up in a true chrono order.  It misplaces the first image to the end.
    (2) In CS, I used to be able to Right-Mouse-Click on the image's title bar to change Image and Canvas sizes.  Any way to get this to work in CS4?  CTL+ALT and either I or C is a three-key process and takes considerably longer than right clicking my mouse and choosing the correct option.
    Thanks for any help you can provide.  And apologies for being such a newbie to the latest and greatest Photoshop version.  I've been living in CS for years
    Mike

    You are a life saver. Thanks!  I looked in the INTERFACE area about three times and never understood that TABBED meant that it was opening them full screen.
    Any idea how to deal with question #2?  Cannot set up an ACTION for this as the action makes me have to choose an image size.  I just want to have the Image or Canvas size windows open with one click, rather than holding down three keys.
    Thanks again.  You have been rewarded with a CORRECT ANSWER click
    Mike

  • Help with product installation

    Hi,
    I am trying to install adobe products through the student creative cloud monthly subscription. Adobe download manager keeps telling me that these products are installed, however they are not. Adobe download manager won't let me attempt to install again.
    What should i do?
    Also, as i have a student subscription to creative cloud, what exactly does this entitle me to?
    Thanks

    Hi Kr83,
    Are you on a Windows or Mac computer? How are you confirming that the programs are not installed?
    Are the programs listed in Control Panel>Programs and Features? or in the Start menu (if on Windows)
    Are the programs listed in Mac HD > Applications > Utilities > Adobe Installers or in the Applications folder (if on Mac)
    I would first try to uninstall, run the cleaner tool and then reinstall from a new admin account
    http://www.adobe.com/support/contact/cscleanertool.html
    -Dave

  • Help with product category assignment please

    Hi experts,
    I need to do a modificacion in my R3 downloaded products to CRM. Because a
    product catalog fulfitment, I need to modify the assigned product hierarchy
    in CRM but I don't know where can I do it this mapping between an R3 product
    hierarchy and CRM product hierarchy.
    I explain, if product A belongs in R3 to product category A, I need to modify
    this assignment in CRM, for exmaple, product A in CRM will belong to product category
    B.
    Modifications/creations on product master are only downloaded to CRM, never upload
    from CRM to R3.
    Any help in this issue please? Is possible to get a behaviour like this?
    Thanks to all.
    Javier

    Hi Javier,
       You can always do a RFC data upload of the changed product from CRM to R/3. I guess you do know how to trigger a OLTP data transfer in product master maintenance transaction COMMPR01.
    Thanks,
    Sudipta.

  • Help with Product Selection

    I currently use Phtoshop 7 (XP).  I am going to convert to Windows 8 soon.  I use my Photoshop 7 to crop & to correct brightness and contrast & to reduce or ncrease MB size of the photo.  I don't use all of the other bells and whistles.   What Windows 8 Photoshop product best matches my needs (plus fixes red eye) ??

    Hi mschall,
    You might take a look at photoshop elements 11 and adobe has a thirty day fully functionally try/buy trial.
    http://www.adobe.com/products/photoshop-elements.html
    Also photoshop 7 may run fine on windows 8 provided you don't get a hardrive bigger than 1 TB (terabyte).
    I've been testing windows 8 and have photoshop 7 running on the 64 bit version of windows 8.

  • Need help with student verification

    My daughter bought Adobe Acrobat XI Pro on Amazon new and then we followed the directions on Adobe to verify she is a student in high school.  It has been 3 days and we still have not recieved the activation code to use our product?  The Adobe support is horrible (I have been on the phone for hours with no one ever answering) and there is nowhere to submit a ticket.

    Unfortunately there is no one in the forums that can do much to help you since most of us are product users like your daughter, and any employees here do not have much ability to process anything in your favor beyond possibly checking a status.
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Get chat help with orders, refunds, and exchanges (non-CC)
    http://helpx.adobe.com/x-productkb/global/service-b.html ( http://adobe.ly/1d3k3a5 )
    Another good resource for getting information is the student and teacher edition information forum:
    http://forums.adobe.com/community/download_install_setup/student_and_teacher_edition_infor mation_?view=discussions

  • I need help with photoshop cs5.1 extended subscription edition

    it say's that i must put the Adobe ID but after I do that the program don't accept it ind say´s that a mistake has been occur try again...please I need help...

    I checked under your Adobe ID (the E-mail with which you are posting here) but didn't find any product or subscription registered.
    So , I have you bought the subscription from the same ID which you entering ?

  • Problem description: My MacBook Pro is running really slow. Applications won't open or take up to 10 min.  EtreCheck version: 2.1.5 (108) Report generated December 27, 2014 at 9:15:58 PM CST  Click the [Support] links for help with non-Apple products

    Problem description:
    My MacBook Pro is running really slow. Applications won’t open or take up to 10 min.
    EtreCheck version: 2.1.5 (108)
    Report generated December 27, 2014 at 9:15:58 PM CST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.4 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: one day 6:55:8
    Disk Information: ℹ️
      TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      HD (disk1) /  [Startup]: 498.88 GB (5.04 GB free) (Low!)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.epson.driver.EPSONProjectorUDAudio (1.30 - SDK 10.4) [Support]
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.6 - SDK 10.4) [Support]
      /System/Library/Extensions/Seagate Storage Driver.kext/Contents/PlugIns
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.6 - SDK 10.4) [Support]
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.6 - SDK 10.5) [Support]
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.6 - SDK 10.4) [Support]
    Problem System Launch Agents: ℹ️
      [killed] com.apple.CallHistoryPluginHelper.plist
      [killed] com.apple.coreservices.appleid.authentication.plist
      [killed] com.apple.icloud.fmfd.plist
      [killed] com.apple.telephonyutilities.callservicesd.plist
      4 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
      [killed] com.apple.ctkd.plist
      [killed] com.apple.icloud.findmydeviced.plist
      [killed] com.apple.ifdreader.plist
      [killed] com.apple.nehelper.plist
      [killed] com.apple.wdhelper.plist
      [running] com.seagate.TBDecorator.plist [Support]
      5 processes killed due to memory pressure
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.carbonite.launchd.carbonitealerts.plist [Support]
      [running] com.carbonite.launchd.carbonitestatus.plist [Support]
      [loaded] com.coupons.coupond.plist [Support]
      [loaded] com.hp.help.tocgenerator.plist [Support]
      [loaded] com.trendmicro.itis.dca.plist [Support]
      [running] com.trendmicro.itis.uimgmt.agent.plist [Support]
    Launch Daemons: ℹ️
      [failed] com.adobe.fpsaud.plist [Support]
      [running] com.carbonite.launchd.carbonitedaemon.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [running] com.trendmicro.icore.av.plist [Support]
      [running] com.trendmicro.icore.main.plist [Support]
      [running] com.trendmicro.icore.wp.plist [Support]
      [running] com.trendmicro.itis.plugin.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [invalid?] com.jdibackup.JustCloud.autostart.plist [Support]
      [invalid?] com.jdibackup.JustCloud.backupstart.plist [Support]
      [loaded] com.trendmicro.itis.uninstaller.plist [Support]
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      bomgar-scc-20130819-104735 UNKNOWN (missing value)
      bomgar-scc-20130905-143949 UNKNOWN (missing value)
      USB Display Agent Application (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
      WDDriveUtilityHelper Application (/Applications/WD Drive Utilities.app/Contents/Resources/WDDriveUtilityHelper.app)
      WDSecurityHelper Application (/Applications/WD Security.app/Contents/Resources/WDSecurityHelper.app)
      USB Display Agent Application (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
      bomgar-scc-20130819-104735 UNKNOWN (missing value)
      bomgar-scc-20130905-143949 UNKNOWN (missing value)
      HP Scheduler Application (/Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app)
      HP Product Research Application (/Library/Application Support/Hewlett-Packard/Customer Participation/HP Product Research.app)
    Internet Plug-ins: ℹ️
      SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 [Support]
      CouponPrinter-FireFox_v2: Version: 5.0.5 - SDK 10.6 [Support]
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.235
      QuickTime Plugin: Version: 7.7.3
      Default Browser: Version: 600 - SDK 10.10
    User internet Plug-ins: ℹ️
      npBcsMcTcIO: Version: Unknown [Support]
    Safari Extensions: ℹ️
      Trend Micro Toolbar [Installed]
    3rd Party Preference Panes: ℹ️
      Carbonite  [Support]
      Flash Player  [Support]
      Paragon NTFS for Mac ® OS X  [Support]
      Seagate Dashboard for Mac OSX  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: ON
      Auto backup: YES
      Volumes being backed up:
      HD: Disk size: 498.88 GB Disk used: 493.84 GB
      Destinations:
      Jens Seagate Backup [Local]
      Total size: 999.86 GB
      Total number of backups: 6
      Oldest backup: 2014-06-24 10:33:56 +0000
      Last backup: 2014-12-17 17:14:18 +0000
      Size of backup disk: Too small
      Backup size 999.86 GB < (Disk used 493.84 GB X 3)
      My Passport for Mac [Local]
      Total size: 2.00 TB
      Total number of backups: 14
      Oldest backup: 2013-08-21 19:19:35 +0000
      Last backup: 2014-12-19 11:44:23 +0000
      Size of backup disk: Excellent
      Backup size 2.00 TB > (Disk size 498.88 GB X 3)
    Top Processes by CPU: ℹ️
          6% coreaudiod
          5% CarboniteDaemon
          4% iMovie
          3% JustCloud
          3% Wondershare Player
    Top Processes by Memory: ℹ️
      335 MB iPhoto Library Manager
      180 MB Finder
      142 MB iMovie
      70 MB Preview
      51 MB Microsoft Word
    Virtual Memory Information: ℹ️
      149 MB Free RAM
      1.04 GB Active RAM
      897 MB Inactive RAM
      1.17 GB Wired RAM
      30.53 GB Page-ins
      1.42 GB Page-outs
    Diagnostics Information: ℹ️
      Dec 26, 2014, 05:17:12 PM /Library/Logs/DiagnosticReports/iPhoto_2014-12-26-171712_[redacted].cpu_resourc e.diag [Details]
      Dec 26, 2014, 03:47:17 PM /Library/Logs/DiagnosticReports/CarboniteDaemon_2014-12-26-154717_[redacted].cp u_resource.diag [Details]
      Dec 26, 2014, 02:22:01 PM Self test - passed
      Dec 26, 2014, 11:48:03 AM /Library/Logs/DiagnosticReports/CarboniteDaemon_2014-12-26-114803_[redacted].cp u_resource.diag [Details]

    You have nearly run out of disk space.  Either purchase a larger one or start cleaning out the one you have?

  • EtreCheck version: 2.1.5 (108) Report generated 4 January 2015 14:29:26 GMT  Click the [Support] links for help with non-Apple products. Click the [Details] links for more information about that line. Click the [Adware] links for help removing adware

    My Mac is very slow and applications take a long time to load, especially Safari and iTunes.  Please help.    I have run the Etrecheck report and these are results.
    Thanks Pat
    EtreCheck version: 2.1.5 (108)
    Report generated 4 January 2015 14:29:26 GMT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (21.5-inch, Mid 2011) (Verified)
      iMac - model: iMac12,1
      1 2.7 GHz Intel Core i5 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      AMD Radeon HD 6770M - VRAM: 512 MB
      iMac 1920 x 1080
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:32:50
    Disk Information: ℹ️
      ST31000528AS disk0 : (1 TB)
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 999.35 GB (717.51 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      OPTIARC DVD RW AD-5690H 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Seagate Expansion Desk 2 TB
      EFI (disk1s1) <not mounted> : 210 MB
      Seagate Expansion Drive (disk1s2) /Volumes/Seagate Expansion Drive : 2.00 TB (1.66 TB free)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. iPhone
      Apple Internal Memory Card Reader
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) [Support]
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (2.0 - SDK 10.9) [Support]
    Problem System Launch Agents: ℹ️
      [failed] com.apple.syncservices.SyncServer.plist
    Launch Agents: ℹ️
      [loaded] com.avast.userinit.plist [Support]
      [running] com.epson.Epson_Low_Ink_Reminder.launcher.plist [Support]
      [loaded] com.epson.esua.launcher.plist [Support]
      [running] com.epson.eventmanager.agent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [running] com.trusteer.rapport.rapportd.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.avast.init.plist [Support]
      [loaded] com.avast.uninstall.plist [Support]
      [failed] com.avast.update.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [running] com.trusteer.rooks.rooksd.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
      [invalid?] com.avast.home.userinit.plist [Support]
      [running] com.microsoft.LaunchAgent.SyncServicesAgent.plist [Support]
    User Login Items: ℹ️
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 [Support]
      DivXBrowserPlugin: Version: 2.2 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      OVSHelper: Version: 1.1 [Support]
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    Safari Extensions: ℹ️
      wrc [Installed]
    3rd Party Preference Panes: ℹ️
      DivX  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      GoToMyPC Preferences  [Support]
      Java  [Support]
      Trusteer Endpoint Protection  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 281.84 GB
      Destinations:
      Seagate Expansion Drive [Local]
      Total size: 2.00 TB
      Total number of backups: 78
      Oldest backup: 2013-07-28 18:09:06 +0000
      Last backup: 2015-01-04 14:29:38 +0000
      Size of backup disk: Adequate
      Backup size 2.00 TB > (Disk used 281.84 GB X 3)
    Top Processes by CPU: ℹ️
          2% WindowServer
          1% mds
          0% fontd
          0% mds_stores
          0% com.avast.daemon
    Top Processes by Memory: ℹ️
      120 MB Safari
      112 MB com.avast.daemon
      94 MB com.apple.WebKit.WebContent
      56 MB spindump
      52 MB mds_stores
    Virtual Memory Information: ℹ️
      479 MB Free RAM
      1.56 GB Active RAM
      1.11 GB Inactive RAM
      904 MB Wired RAM
      5.37 GB Page-ins
      75 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 4, 2015, 01:57:18 PM Self test - passed
      Standard users cannot read /Library/Logs/DiagnosticReports.
      Run as an administrator account to see more information.

    patbythesea wrote:
    Can I assume that with my Mac I do not need any additional virus protection software?  If I do, what should I use?
    See my Mac Malware Guide for help on protecting yourself from malware. You generally don't need anti-virus software.
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • Before i buy the complete creative cloud, how many computers can i install it on with the one subscription? i have a macbook pro laptop and a iMac desktop, which i both need it on.

    before i buy the complete creative cloud, how many computers can i install it on with the one subscription? i have a macbook pro laptop and a iMac desktop, which i both need it on.

    Creative Cloud Help | Creative Cloud / Common Questions
    "Can I use the software I download from Creative Cloud on more than one machine?
    Yes. Creative Cloud desktop applications can be downloaded and installed on multiple computers, regardless of operating system. However, activation is limited to two machines per individual associated with the membership. See the terms of use for more information. Learn how to deactivate a Creative Cloud license on a machine."

Maybe you are looking for

  • How do i arrange deleted files (in trash) in order of deletion time/date?

    I accidentaly deleted several files (not sure of their files names, at least not all of them) so went to the trash to recover them and i didn't find a way to arrange or sort them by date of deletion. Given that they were just deleted it would have be

  • How do I transfer my iTunes library back from an external hard drive?

    Hi. Today, I bought a 1TB external hard drive, and I was very excited to transfer my music over to it. It worked fine for a couple of hours, but then, tragedy struck. Right in the middle of listening to a song, it stopped and Windows told me the devi

  • LR and Surface Pro 3

    Adobe made a big play about how well PS worked on the Surface Pro 3, but I have just got a SP3 and I find that LR (and PS) has serious failings. Background: I have a CC subscription for LR and PS, and I have the i7, 8mb, 512gb version of the SP3. In

  • Problem sending output directly to a shared printer

    Hi. I am having problems in generating character reports output directly to my printers, my situation is as follows: We have a Windows 2003 server running an application server 10g and a forms and reports application, if I connect a printer directly

  • Intercompany returns

    Hi All, As per SAP standard  scenario for intercompany returns flow 1. RE(return order type ) to RE( Invoice) - possible 2. LR(returns delivery type )  to IG(intercompany return invoice type)  But we need --based on delivery  both invoices means - 1.