Sluggish iMac - should I reformat?

Is a reformat recommended or are there alternatives?
I use Time Machine to back up from, but am I likely to lose iCloud etc settings if I do a full reformat? Also, is there a need to reformat every 6 months as I remember I used to with the old PowerMac?

If you don't already have a current backup, back up all data before doing anything else. This procedure is a diagnostic  test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem. The backup is necessary on general principle, not because of anything suggested in this comment. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The procedure will help identify which such modifications you've installed, as well as some other aspects of the configuration that may be related to the problem.
Don’t be alarmed by the seeming complexity of these instructions — they’re easy to carry out. Here's a brief summary: In each of two steps, you copy a line of text from this web page into a window in another application. You wait about a minute. Then you paste some other text, which will have been copied automatically, back into a reply on this page. The sequence is copy; paste; paste again. That's all there is to it. Details follow.
You may have started the computer in "safe" mode. Preferably, these steps should be taken while booted in “normal” mode. If the system is now running in safe mode and is bootable in normal mode, reboot as usual. If it only boots in safe mode, use that.
Below are instructions to enter UNIX shell commands. They do nothing but produce human-readable output. However, you need to think carefully before running any program at the behest of a stranger on a public message board. If you question the safety of the procedure suggested here — which you should — search this site for other discussions in which it’s been followed without any report of ill effects. If you can't satisfy yourself that these instructions are safe, don't follow them.
The commands will line-wrap or scroll in your browser, but each one is really just a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then copy it.
If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. Step 1 should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply.
Launch the Terminal application in any of the following ways: 
☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
Step 1 
Triple-click anywhere in the line of text below on this page to select it:
PB=/usr/libexec/PlistBuddy; PR () { [[ "$o" ]] && o=$(sed 's/^/   /' <<< "$o") && printf '\n%s:\n\n%s\n' "$1" "$o"; }; PC () { o=$(grep [^[:blank:]] "$2"); PR "$1"; }; PF () { o=$($PB -c Print "$2" | awk -F'= ' \/$3'/{print $2}'); PR "$1"; }; PN () { [[ $o -eq 0 ]] || printf "\n%s: %s\n" "$1" $o; }; { system_profiler SPSoftwareDataType | sed '8!d;s/^ *//'; o=$(system_profiler SPDiagnosticsDataType | sed '5,6!d'); fgrep -q P <<< "$o" && o=; PR "POST"; o=$(($(vm_stat | awk '/Pageo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0));  PN "Pageouts (MiB)"; s=( $(sar -u 1 10 | sed '$!d') ); [[ ${s[4]} -lt 90 ]] && o=$( printf 'User %s%%\t\tSystem %s%%' ${s[1]} ${s[3]} ) || o=; PR "Total CPU usage"; [[ "$o" ]] && o=$(ps acrx -o comm,ruid,%cpu | sed '2!d'); PR "Max %CPU by process (name, UID, %)"; o=$(kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1); PR "Loaded extrinsic kernel extensions"; o=$(launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'); PR "Loaded extrinsic user agents"; o=$(launchctl getenv DYLD_INSERT_LIBRARIES); PR "Inserted libraries"; PC "cron configuration" /e*/cron*; o=$(crontab -l | grep [^[:blank:]]); PR "User cron tasks"; PC "Global launchd configuration" /e*/lau*; PC "Per-user launchd configuration" ~/.lau*; PF "Global login items" /L*/P*/loginw* Path; PF "Per-user login items" L*/P*/*loginit* Name; PF "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed 's/\..*$//;s/-[1-9]$//'; o=$(find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l); PN "Restricted user files"; cd; o=$(find -L /S*/L*/E* {,/}L*/{A*d,Compon,Ex,In,Keyb,Mail/Bu,P*P,Qu,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB -c 'Print :CFBundleIdentifier' "$d/Info.plist") || ID=; ID=${ID:-No bundle ID}; egrep -qv "^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|JMicron|microsoft\.MDI|print|SoftRAID" <<< $ID && printf '%s\n\t(%s)\n' "${d%/Contents}" "$ID"; done); PR "Extrinsic loadable bundles"; o=$(find /u*/{,*/}lib -type f -exec sh -c 'file -b "$1" | grep -qw shared && ! codesign -v "$1"' {} {} \; -print); PR "Unsigned shared libraries"; o=$(system_profiler SPFontsDataType | egrep "Valid: N|Duplicate: Y" | wc -l); PN "Font problems"; for d in {,/}L*/{La,Priv,Sta}*; do o=$(ls -A "$d"); PR "$d"; done; } 2> /dev/null | pbcopy; echo $'\nStep 1 done'
Copy the selected text to the Clipboard by pressing the key combination command-C. Then click anywhere in the Terminal window and paste (command-V). I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
The command may take up to a few minutes to run, depending on how many files you have and the speed of the computer. Wait for the line "Step 1 done" to appear below what you entered. The output of the command will beautomatically copied to the Clipboard. All you have to do is paste into a reply to this message by pressing command-Vagain. Please don't copy anything from the Terminal window. No typing is involved in this step.
Step 2 
Remember that you must be logged in as an administrator for this step. Do as in Step 1 with this line:
PR () { [[ "$o" ]] && o=$(sed 's/^/   /' <<< "$o") && printf '\n%s:\n\n%s\n' "$1" "$o"; }; { o=$(sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'); PR "Loaded extrinsic daemons"; o=$(sudo defaults read com.apple.loginwindow LoginHook); PR "Login hook"; o=$(sudo crontab -l | grep [^[:blank:]]); PR "Root cron tasks"; o=$(syslog -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|find tok|n Cause: -|NVDA\(|pagin|timed? ?o' | tail -n25 | awk '/:/{$4=""; print}'); PR "Log check"; } 2>&- | pbcopy; echo $'\nStep 2 done'
This time you'll be prompted for your login password, which you do have to type. Nothing will be displayed when you type it. Type it carefully and then press return. You may get a one-time warning to be careful. Heed that warning, but don't post it. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
You can then quit Terminal. Please note:
☞ Steps 1 and 2 are all copy-and-paste — type only your login password when prompted.
☞ When you type your password, you won't see what you're typing.
☞ If you don’t have a password, set one before taking Step 2. If that’s not possible, skip the step.
☞ Step 2 might not produce any output, in which case the Clipboard will be empty. Step 1 will always produce something.
☞ The commands don't change anything, and merely running them will do neither good nor harm.
☞ Remember to post the output of both steps (unless you had to skip Step 2.) It's already in the Clipboard after you complete each step. You don't have to copy it. Just paste into a reply    
☞ If any personal information, such as your name or email address, appears in the output of either command, anonymize it before posting. Usually that won't be necessary.
☞ Don't post what you see in the Terminal window. The output is copied automatically to the Clipboard.
☞ Don't paste the output of Step 1 into the Terminal window. Paste it into a reply.

Similar Messages

  • Sluggish iMac

    I have an iMac (24-inch, Early 2009),  Processor - 2.66 GHz Intel Core 2 Duo, Memory - 4 GB 1067 MHz DDR3,
    Hardware Information: ℹ️
        iMac (24-inch, Early 2009) (Verified)
        iMac - model: iMac9,1
        1 2.66 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1200
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 2:8:56
    Everything seems to be slow.  I quit using Safari because it takes 45 seconds (just timed it) to open.

    Problem description:
    Sluggish iMac
    EtreCheck version: 2.1.8 (121)
    Report generated February 14, 2015 at 9:37:31 AM CST
    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 (24-inch, Early 2009) (Verified)
        iMac - model: iMac9,1
        1 2.66 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1200
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 2:8:56
    Disk Information: ℹ️
        WDC WD6400AAKS-40H2B0 disk0 : (640.14 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 639.28 GB (77.65 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        OPTIARC DVD RW AD-5670S 
    USB Information: ℹ️
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Apple Inc. Built-in iSight
        Seagate GoFlex Mac 1 TB
            EFI (disk1s1) <not mounted> : 210 MB
            FreeAgent GoFlex Drive (disk1s2) /Volumes/FreeAgent GoFlex Drive : 999.86 GB (29.86 GB free)
        Mitsumi Electric Apple Optical USB Mouse
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.logmein.driver.LogMeInSoundDriver (1.0.0) [Click for support]
        [loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.67) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.67) [Click for support]
    Launch Agents: ℹ️
        [running]    com.hp.productresearch.plist [Click for support]
        [running]    com.logmein.logmeingui.plist [Click for support]
        [not loaded]    com.logmein.logmeinguiagent.plist [Click for support]
        [not loaded]    com.logmein.logmeinguiagentatlogin.plist [Click for support]
        [running]    com.rim.BBLaunchAgent.plist [Click for support]
        [running]    com.trusteer.rapport.rapportd.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [not loaded]    com.logmein.logmeinserver.plist [Click for support]
        [running]    com.rim.BBDaemon.plist [Click for support]
        [running]    com.trusteer.rooks.rooksd.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        apple-scc-20120306-133710    UNKNOWN  (missing value)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        apple-scc-20131029-133449    UNKNOWN  (missing value)
        AppTrap    Application  (/Users/[redacted]/Library/PreferencePanes/AppTrap.prefPane/Contents/Resources/ AppTrap.app)
        HPEventHandler    UNKNOWN  (missing value)
    Internet Plug-ins: ℹ️
        LogMeInSafari64: Version: 1.0.730 [Click for support]
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        LogMeIn: Version: 1.0.730 [Click for support]
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.730 [Click for support]
        iPhotoPhotocast: Version: 7.0
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0 [Click for support]
        WebEx64: Version: 1.0 - SDK 10.5 [Click for support]
        SlingPlayer: Version: Unknown [Click for support]
    Safari Extensions: ℹ️
        AdBlock
        iMedia Converter Deluxe 
    3rd Party Preference Panes: ℹ️
        AppTrap  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Paragon NTFS for Mac ® OS X  [Click for support]
        Trusteer Endpoint Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 639.28 GB Disk used: 561.63 GB
        Destinations:
            FreeAgent GoFlex Drive [Local]
            Total size: 999.86 GB
            Total number of backups: 71
            Oldest backup: 2014-04-21 13:40:51 +0000
            Last backup: 2015-02-14 14:48:47 +0000
            Size of backup disk: Too small
                Backup size 999.86 GB < (Disk used 561.63 GB X 3)
    Top Processes by CPU: ℹ️
             4%    WindowServer
             1%    launchd
             1%    LogMeInGUI
             0%    networkd
             0%    discoveryd
    Top Processes by Memory: ℹ️
        412 MB    softwareupdated
        369 MB    firefox
        90 MB    WindowServer
        82 MB    Finder
        77 MB    Dropbox
    Virtual Memory Information: ℹ️
        494 MB    Free RAM
        1.74 GB    Active RAM
        1.22 GB    Inactive RAM
        566 MB    Wired RAM
        2.24 GB    Page-ins
        29 KB    Page-outs
    Diagnostics Information: ℹ️
        Feb 14, 2015, 07:26:24 AM    Self test - passed
        Feb 11, 2015, 04:12:34 PM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-11-161234_[ redacted].cpu_resource.diag [Click for details]
        Feb 11, 2015, 04:09:09 PM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-02-11-160909_[ redacted].cpu_resource.diag [Click for details]
        Feb 11, 2015, 12:34:04 PM    /Library/Logs/DiagnosticReports/iTunes_2015-02-11-123404_[redacted].cpu_resourc e.diag [Click for details]
        Feb 11, 2015, 11:43:04 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/VLC_2015-02-11-114304_[redacte d].crash
        Feb 11, 2015, 11:42:49 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/VLC_2015-02-11-114249_[redacte d].crash
        Feb 11, 2015, 11:12:52 AM    /Library/Logs/DiagnosticReports/iTunes_2015-02-11-111252_[redacted].cpu_resourc e.diag [Click for details]

  • My first iMac should i go wireless or wired which is better

    first time user for imac should i use wireless or wired which would be better

    If you are close to your router, wired is always the fastest means of connection...and the most secure since there is not a radio signal being broadcast.

  • I have just purchased an iMac, Should I install any internet security software, if so what do you recommend ?

    I have just purchased an imac, should I install any internet security software ? , if so what do you recommend ?

    You may also find this User Tip on Viruses, Trojan Detection and Removal, as well as general Internet Security and Privacy, useful: The User Tip seeks to offer guidance on the main security threats and how to avoid them.
    https://discussions.apple.com/docs/DOC-2435
    More useful information can also be found here:
    www.thesafemac.com/mmg

  • I purchased keynotes for ipad.  Now that I have an iMac, should it be available? Or do I have to repurchase it for iMac?

    I purchased keynotes for ipad.  Now that I have an iMac, should that purchase be available?  Or do I have to repurchase it?

    Sadly, yes.  The iPad application and Mac application are different programs.  Buying Keynote for iPad does not also give you Keynote for MacOS.

  • IMac should have a battery

    iMac should have a little battery inside to prevent damages from power interruptions.

    LaSalamandra wrote:
    I think that a little economic battery should save the life of iMac hard disk.
    There is much more to it than just adding a battery.
    To begin with, it has to be able to supply enough power to run the iMac. Depending in the model that could be anywhere from about 50 to 300 watts. It also has to be large enough to supply that power long enough for the iMac to finish whatever it is doing, write any changes that requires back to the hard disk, close all files, & do an orderly shutdown.
    But since an iMac isn't designed to run on the low voltage batteries supply like a laptop is, you either have to include a few dozen of them wired in series to get the required voltage or include a voltage converter. Obviously, there is no room for dozens of batteries in any iMac so you have to include a voltage converter, one large enough to supply the 50 to 300 watts the iMac needs to run.
    You also have to include a built-in charger & all the safety mechanisms required to keep the battery from exploding while it is being charged. You can't use sealed lead-acid batteries like in conventional UPS's because they are way too heavy & bulky to supply the needed power in a small enough package, so you have to use expensive lithium chemistry batteries. That means you have to include a temperature & charging current monitoring system & use battery packs with the extra contacts that requires, just like with laptop batteries.
    Do you begin to see why everybody is telling you this isn't practical? The battery & associated circuitry would be neither little nor cheap. It would increase the cost, bulk, & weight of an iMac to levels most users would find unacceptable; particularly since compact, inexpensive UPS's are readily available & provide far longer run times than anything that could be built into an iMac.

  • Should i reformat My Cloud before using with my Mac?

    I purchased a WD My Cloud to use with my Macbook Air. Should I reformat it first to "Mac OS Extended (Journaled)" or should I just use the software that they recommend which is not in this format?

    Hi Benler44,
    I wrote with WD support, that said:
    "Unfortunately it is not possible to format the internal drive. What you can do however, is connect an external USB drive to the device.
    WD My Cloud device supports the following formats for externally attached USB drives:
     FAT32
     NTFS (read and write capability)
     HFS+J (MAC OS Extended (Journaled)
     Linux Ext2, Ext3/Ext4
     XFS
    Don't know if somebody can trick it into a MAC OS extended (journaled) format, but mine is working fine with my Macs, Itunes, Sonos, Time Machine etc... Only downside is, that you cannot use it for iPhoto because of the format. All macs on the network connects fine with a connected external MAC OS extended (jour.) drive, but I haven't tried to put iPhoto on that one.
    Hope this helps.

  • Should I reformat and clean install to my iMac?

    I have an 27" iMac that is about five years old. It was custom top of the line i7 hyper threading 16 GB of RAM yada yada but it's much slower to boot up and the 1 TB hard drive is almost full. I'm sure some of that is orphaned files and other junk. I'd like to think that reformatting the hard drive and doing a clean install of Yosemite followed by a Time Machine restore from an external disk would be helpful. Is there an article or something that can tell me how to do this safely? Any suggestions appreciated, thanks.

    HI ..
    Make sure your Mac can run Yosemite >  Apple - OS X Yosemite - How to Upgrade
    You can reformat (erase) the drive then restore OS X using OS X Recovery.
    Then upgrade to Yosemite.
    Yosemite requires 5.16Gb's of drive space.
    Click your Apple menu  top left in your screen. From the drop down menu click About This Mac > More Info > Storage
    Make sure there's at least 15% free disk space.

  • Super sluggish iMac G4

    A few days ago, my iMac became weirdly sluggish. For example, webpages are taking 15-20 seconds to render, programs take a minute or two to open (while the icon is bouncing in the dock), files take a long time to copy to a new folder, etc.
    Starting up from the CDs and running Disk Utility showed no problems, although it took a long time to process the hard drive.
    I've also tried resetting the pram, which did nothing.
    Any sugestions would be appreciated, thanks!

    Hello and Welcome to Apple Discussions. 
    Could you please single click on Macintosh HD and then choose Get Info from the File Menu. Please post back with the Capacity, Available and Used values.
    It's my experience that the most common cause of a sudden slowdown where nothing appears to have changed is the lack of free hard disk space.
    Any OS needs room to breathe and you should leave about 15% of your total free.
    mrtotes

  • Disk repair failed / should I reformat my drive / how to format and restore

    I have a MacBook Pro late 2011 model and upgraded to Yosemite. The performance on my MB is ok, but just out of curiousity I ran a disk verify, and was told I needed to reboot, hold down CMD / R and run disk repair. I did so and the repair failed. I was promoted to backup and reformat/restore.
    Now, I do backup everything using time machine (not sure though if Parallels image is backed up). I do not however have any install disks for Mac OS.
    My questions:
    1. Should I even bother reformatting my HD?
    2. How do I go about formatting the HD and then re-installing the OS and all of my apps, particularly given that I have no DVD
    Any thoughts are appreciated. Thank you

    If you have extra external HDD, make clone backup with Carbon Copy Cloner or SuperDuper!, then,
    1) boot from external clone backup drive.
    2) reformat internal HDD.
    3) restore from clone backup drive with Carbon Copy Cloner or SuperDuper!.

  • I am looking to buy an imac, should i wait a bit for a new version to come out soon?  I use it for photo and video editing

    I have a very old MBP it is almost too slow to edit large files and video on any more it does ok but I am a pro photographer and video guy and I edit a lot
    I would like to know if I should get a new imac right now or wait a few weeks incase a new one will come out soon, anyone have any insider info or help?  thanks   mac rumors says one may come in about 70 days but isk if i want to wait that long

    Regarding your dilemma about a new device or using current device i'd have to agree with
    please read the Terms of Use, they say:
    SubmissionsStay on topic. Apple Support Communities is here to help people use Apple products and technologies more effectively. Unless otherwise noted, do not add Submissions about nontechnical topics, including:
    Speculations or rumors about unannounced products.
    Discussions of Apple policies or procedures or speculation on Apple decisions.
    Now if you really nead advice about a certain product you already have and wish to compare it with a new product you could always ask advice of a sales advisor.
    Believe it or not sales advisors are not just for sales only =)
    Ask your personal sales advisor nearby your home or the closest apple store for advise about your dilemma.
    - so far what i can see is that you're a professional photographer looking for an improvement , now i'm quite positive that you will find your improvement sooner or later wich will make your work alot easier.

  • How should I reformat my external hard drive?

    I have just purchased a new 21.5" iMac and I will be moving from PC to iMac. I currently have a 2.5TB external hard drive which I have connected to my PC laptop that I use to store and watch movies. My question is how should I format/partition my external hard drive so that I can use it with my new iMac? The external hard drive will solely be used with my new iMac (it won't be connected/used with my laptop again) and I am ok with losing the data on the external hard drive as I have backed up the data currently on it onto another hard drive. I have tried to research what format to use but I am a little confused as to which one is the best and I am looking for some advice.

    Mac OS Extended (Journaled).
    (73546)

  • Should I reformat my mac? Getting a weird error.

    First of all, my 2012 15" rMBP on Yosemite 10.10.3 runs perfectly fine. I have very small issues here and there but it's rare. Every few months I do repair disk permissions and do a verify disk thing using the disk utility though. I don't remember the last time I actually verified the disk itself, maybe a year or so ago. Anyways, today during my rare check up, it said that I in fact did need to repair the disk, and I needed to restart the computer and go into the disk utility during the restart. Easy enough!
    Well, upon running that process for a few minutes, I get this error...
    Once again, my mac runs perfectly fine right now. Haven't had any issues. I backed it all up today too so I do have a very recent backup. Is it worth me reformatting the disk and restoring my files if I'm not having issues? Does this error somehow spell doom for my mac or something? Rather confused that it's asking me to perform such a serious task considering things are running well and have been for a while.
    Or should I just make sure I make backups pretty regularly and wait for something to actually happen before I reformat?

    Eventually, they may. Do as instructed. Backup the drive. Boot from the Recovery HD:
    Install or Reinstall OS X from Scratch
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
      1. Select Disk Utility from the main menu and click on the Continue button.
      2. After DU loads select your startup volume (usually Macintosh HD) from the
          left side list. Click on the Erase tab in the DU main window.
      3. Set the format type to Mac OS Extended (Journaled.) Optionally, click on
          the Security button and set the Zero Data option to one-pass. Click on
          the Erase button and wait until the process has completed.
      4. Quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Install button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
               because it is three times faster than wireless.
    This should install the version of OS X that you had installed. You can restore your data from the backup.

  • Should I reformat my time machine backup drive to GUID?

    I have been using a 500 GB LaCie firewire external drive for my Time Machine backups since March 28, 2008. It has recently come to my attention that this drive is formatted using the Apple Partition Map, rather than the GUID Partition Table, as recommended for Intel Macs. Will this render my backups useless should I need to restore from Time Machine? For the most part, it has worked without incident, except for a strange quirk: some of my backups seem to disappear. The most current backups are always there, as are the earliest. But it seems to purge some of the backups in between, as if the disk were full (however, there are 251 GB available). It also eventually collapses multiple backups done at different times throughout the day into a single backup for that day. I'm not sure how much of this is normal behavior for Time Machine; it was my understanding that nothing was to be purged until the disk was full, and then the earliest were the first to go. As long as I have my most recent backups, I am happy, but I'm not sure they are usable in the Apple Partition Map. Also... in the event I need to erase my LaCie and reformat it, is there any need to backup some of my current Time Machine files (say the first and most recent backups)? I would just burn them to DVD, but that might take awhile. Thanks so much for your help.

    Hello x:
    Welcome to Apple discussions.
    I run an Intel-based Mac and have an external LaCie firewire drive that I use for both TM backups and a bootable clone. The drive is formatted Apple Partition Map and the volumes are Mac OS X extended (journaled). I have used the TM backup to retrieve data and I have restored the bootable clone from the external drive. Everything worked well.
    In answer to your question, no.
    This information is from a knowledge base article:
    +Now that Time Machine is setup, you can forget about it until you need to restore files, folders, or even your entire system! Time Machine will continue making automatic backups for every hour of the last 24 hours, every day of the last month, and every week past that until your backup disk is full.+
    Barry

  • Which iMac should i buy?

    I have been using my laptop (compaq pesario CQ60, if your interested) for the last five years and it is getting old and slow. I want to invest in a new imac 21.5" but have no idea what spec i will need. the main things that i need it for are: internet browsing, CAD, video editing and various other document processing tasks. If anyone can help to recomend what i should get then you will have my thanks.

    CAD and video editting require a serious CPU and lots of memory.  I would be looking at the higher (highest) end models of iMac, if you don't want your system to run very slowly during those very computer intensive tasks.  I would suggest at "least" the base model shown below.  Any Upgrades you order will speed it up further.  Ultimately your wallet will determine how far you want to take it.  Good luck :
                           http://store.apple.com/us/configure/MD094LL/A?

Maybe you are looking for