How to get rid of stuff from the hard drive

Our family iMac, with a 500GB hard drive, has only 5 GB of space left. Is there a quick, efficient way to get rid of duplicate stuff, large files, unused programs that just take up space?

take a look @ [WhatSize|http://www.id-design.com/software/whatsize>.
also, here's some reads to peruse:
Your Mac needs adequate hard drive space to operate normally. How full can a drive be before it's too full? There is no hard and fast rule that says “X” amount or “%” of free drive space is needed. A low amount of RAM requires more drive space for Virtual Memory’s swap files.
Problems from insufficient RAM and free hard disk space are discussed in this link
http://www.thexlab.com/faqs/lackofram.html
Here’s some general guidelines for minimum hard drive free space:
1. As a general rule, your available space should be 5GB as an absolute minimum as it generally requires that much free space to perform an Archive and Install of Mac OS X and still preserve some free space for VM swap files.
2. Some say that your hard drive should have at least 5% of it's capacity available for use. Still others say 10% to 15%. If you routinely process complex graphics and videos, even more space is required.
Look at these links about freeing up more space.
Where did my disk space go?
_*http://www.macfixitforums.com/showflat.php?Cat=&Board=Forum38&Number=770243*_
Download & use WhatSize described in this link or Disk Inventory X @ _*http://www.derlien.com/*_
Freeing space on your Mac OS X startup disk
_*http://www.thexlab.com/faqs/freeingspace.html*_
Amazing Disappearing Drive Space
_*http://www.pinkmutant.com/articles/TigerMisc.html*_
Increase HD Free Space
_*http://macosx.com/forums/howto-faqs/275191-how-easily-increase-hd-free-space-lap top.html*_
How to free up my disk space
http://www.macmaps.com/diskfull.html
JGG

Similar Messages

  • How can I erase deleted items from the hard drive?

    How can I erase deleted files from the hard drive?  Will my machine run faster?

    If you've already deleted the files and emptied the Trash they are already, in effect, erased. At least the disk space they occupied is now available.
    To be able to offer help we need more information about which Mac you have, which OS you are running, how much RAM you have installed, how much hard disk space you have available, etc.
    Go to the Apple Menu>About this Mac - copy and paste the contents of the report here (deleting the serial number of your machine). Once we have that info, I'm sure someone will have some suggestions.

  • Is there a way to get data to and from the hard drive of a Powerbook 180 without having to use the floppy drive?

    Howdy folks!
    I have an 20 year old Powerbook 180 with what I think is an unreliable floppy drive. Sometimes while accessing a diskette the screen flickers and usually power to the whole computer drops out.
    I'm not familiar with Mac connectivity. Is there a way to access the hard drive--to get data off of, and install files, etc onto, the hard drive? 3.5 inch drives are 20th century.
    But... I am happy because my old Powerbook still boots up just fine and I can look at my old files installed on the HD ok.
    Thanks,
    Hayward Matt

    Hi Hayward,
    This may be a power supply issue, not necessarily a problem with the floppy drive itself. Any change if you try removing the battery?
    Would it be correct to assume that it is a plain PowerBook 180 (not 180c)? Which power adapter are you using? It must have a 7.5 DC output, but is it capable of supplying at least 2.0 A?
    Unfortunately it is difficult to remove and connect the (2.5" SCSI) hard drive to a modern computer. Had it been 2.5" IDE, things would have been much easier.
    It is possible to set up a serial null-modem connection from a PowerBook 180 to another computer. See the following discussion for details:
    https://discussions.apple.com/thread/4974860
    If the PB 180 has an internal modem (or an external modem connected to the modem port), you could send files to another modem-equipped computer over the phone lines. With the proper software installed, the PB 180 can even use a dial-up Internet connection.
    Alternatively, another semi-old (pre-1998) Macintosh computer with built-in Ethernet could be used as an intermediary, You could use LocalTalk (or a plain Mac printer cable) for file sharing between the PB 180 and the semi-old Mac (the latter could then forward files over a local network or via the Internet). It is also possible to connect the PB 180 to the semi-old Mac in SCSI disk mode (see the user guide below for additional information).
    manuals.info.apple.com/en_US/0302674APB160180UG.pdf
    Jan

  • How do you remove photos permenantly from the hard drive using iPhoto 11?

    Was just wondering if this is possible as removing photos in iphoto leaves them on the hard drive and I don't want to waste disk space.

    btw it's set not to copy photos into the iphoto library
    This creates the problem.
    When you opted to run a Referenced Library you took on the resposibility for managing the files. You get the from the camera to wherever you store them, and if you want to delete them you get them from there to the trash after deleting them from iPhoto.
    iPhoto will not delete files it does not manage.
    Regards
    TD

  • How do I delete printer software from the hard drive on my iMac

    How do I remove the printer software completely from the harddrive on my iMac ?
    Thanks

    Double-click your boot volume's Desktop icon, put the Finder window into list view, and drill down into these three Library folders.

  • HT4906 How do I delete old mail from the hard drive on my mac 10.9.2?

    How do I delete old mail  with photoattchements
    before a certain date from my mail?

    Do they appear in Mail? That is are they listed in a Mail window? If so then scroll down to the target date, select the first email for that date. Hold down the SHIFT key and scroll to the last mesage you wish to delete and click on it. This should select all the messages between your start and end date. CTRL- or RIGHT-click on your selection and click on Delete in the context menu.
    Oh, be sure you have your messages sorted by Date Received.

  • How to delete SMS text from the hard drive of a IPhone 3gs

    How do I delete SMS text from the hard drive of a iPhone 3GS

    If you want to delete the messages from within the text app, swipe over the name or number of the sender and hit delete.
    If you are afraid that someone will be able to restore them by ckecking your HD, you will have to set up the phone "as new device" or choose "erase all content and Settings" in Settings/General/Reset. But this willerase the whole phone, not only your text messages.
    How to set up your iPhone or iPod touch as a new device
    Message was edited by: Ingo2711

  • Help reading a .txt file from the hard drive....

    Hi guys,
    Ok... I need to know how to read a .txt file from the hard drive... I have an example on how to read from a disk, but I don't have a disk drive. I could be confusing terminology, but I don't think I am. Here is the code I have for reading from a disk.. please let me know how I should change it to read from a hard drive.
    Also, when the error pops up, it says that it can't read another .txt file that is not specified in the code... any ideas how that is occuring? Please advise.
    import java.io.*;
    public class TEST {
    public static void main(String args[]) throws Exception{
    FileReader fr = new FileReader("customer.txt");
    BufferedReader bfr = new BufferedReader (fr);
    String s;
    while ((s=bfr.readLine())!= null){
    System.out.println (s);
    fr.close();
    }

    Ok... I need to know how to read a .txt file from the
    hard drive... I have an example on how to read from a
    disk, but I don't have a disk drive. I could be
    confusing terminology, but I don't think I am. Here
    is the code I have for reading from a disk.. please
    let me know how I should change it to read from a
    hard drive.The code will be the same, regardless of where the file is located. It's just the filename that will be different.
    Also, when the error pops up, it says that it can't
    read another .txt file that is not specified in the
    code... any ideas how that is occuring? Please
    advise.Probably becuase the class file (compiled version of the source code) is a different version to the source code, i.e. the source code hasn't been recompiled since the source code was changed.
    How does this relate to EJBs?

  • How do I get rid of BTFON from the service provider as it takes over everything??

    How do I get rid of BTFON from the service provider as it takes over everything??

    No idea what BTFON is or what "service provider" you mean, or what you mean by saying that it "takes over everything".  Is this a wireless network that you wish to stop connecting to?  If so, open System Preferences, click Network, then select AirPort, then click the Advanced button, then select the AirPort tab.  In the list that appears, select BTFON and click the '-' button.
    If that's not what you're talking about, you'll need to be more specific.

  • How you get rid of updater from actual Ipod?

    Usual new Jan 06 updater problem... After many restores, re-installings it recognises my ipod on itunes, and says its putting the music on it... 50 minutes later and actually my ipod is empty apart form 1 podcast.
    I want to go back to using the old version, but even after the restore i think my ipod is still on version 1.1.3 - the one the came with the jan 06 updater. How do you get rid of it from the actual ipod?????
    Any ideas appreciated,
    Beximo

    Yes, you do what Ivan Lara says

  • My hard drive crashed and i lost all my rippped cd songs from the hard drive. Luckily they are all in icloud but how do i get ripped music from icloud to redownload back to the PC all in one go???

    My hard drive crashed and i lost all my rippped cd songs from the hard drive. Luckily they are all in icloud but how do i get ripped music from icloud to redownload back to the PC all in one go???

    Hi,
    The simplest solution would to restore from your back up - https://discussions.apple.com/docs/DOC-4112
    If you do not have a back, you can select first track on list in song view, from menu > edit > select all. Next ctrl+click and select download from pop up. You may wish to do this in small batches as it will take some time to download.
    Jim

  • I have an app in my app store that is requiring an update but I never purchased the app and when I click update, another apple ID pops up that is not mine.  Now i keep getting reminders to update the app and I cant get rid of it from the app store.  Help.

    I have an app in my app store that is requiring an update but I never purchased the app and when I click update, another apple ID pops up that is not mine.  Now i keep getting reminders to update the app and I cant get rid of it from the app store.  Help.

    You installed a hacked app, originally from the Mac App Store. It contains the receipt for a different app, downloaded using an account that you don't control. You need to identify and remove the hacked app.
    Important: The app you need to remove is not necessarily the one named in the App Store notice. For example, if the App Store says you need to update "Twitter," the hacked app may be "Angry Birds" or something else entirely. Don't make any assumptions about which app you're looking for. To find it, you have to carry out a systematic search.
    Triple-click anywhere in the line of text below on this page to select it:
    kMDItemAppStoreHasReceipt=1
    Copy the selected text to the Clipboard (command-C).
    In the Finder, press the key combination command-F to open a search window, or select
    File ▹ Find
    from the menu bar. In the search window, select
    Search: This Mac
    from the row of tokens below the toolbar. Below that is a popup menu initially showing Kind. From that menu, select  Other...
    A sheet will drop down. In that sheet, select Raw Query and click OK or press return.
    Now there will be a text box to the right of popup menu. Click in that box and paste (command-V).
    The search window will show all the App Store products you've installed. Compare those search results with the list of your purchases from the App Store. To see the complete list, you may need to unhide hidden purchases. If any apps were download from the App Store using other Apple ID accounts that you control, sign in to the store under each of those ID's and check the purchases.
    At least one of the items listed in the search window is not among your purchases in the App Store. Move each such item to the Trash. You may be prompted for your administrator password. Empty the Trash.
    Log out and log back in. Test.

  • How do I put my photos from a hard drive to my mac using different versions of Iphoto?  It is saying I can't because of the updated version.

    Hello,
    I am trying to move photos from my hard drive to my mac.   Mac is using an updated version of Iphoto and is denying the transfer.
    How do I get around this?  Do I download the order version?  or can I not get my photos?  If anyone can help please do.
    You have made changes to your photo library using a newer version of iPhoto. Please quit and use the latest version of iPhoto.
    Thanks Carol

    I copied my photos onto my hard drive from my mac about 3 months ago.  I just plugged my hard drive in to put my pictures back onto my mac but it is giving me a message when trying to open up the photos from the hard drive that states
    Like I said we need to know exactly what you did
    THere are lots of totally different ways to "copy your photos" onto a hard drive
    Exactly how did you do that? The correct way to move an iPhoot library is to verify that the hard drive is formattted Mac OS extended (journaled) and then to drag the iPhoto library intact as a single entity to it - reverse to bring it back - just drag it from the EHD to the pictures folder (default location) on your computer
    Why are you doing this?
    you can try Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto library database - depending on what has been going on this might resolve things
    LN

  • Deleted iTunes Media off the Mac, Can i now get it to read from my Hard Drive ?

    I started looking into this as my Mac was using Roughly 500 of 750 gig on Music. But I've only recently noticed that this is due to duplicates in My Music folder and iTunes Media. Ive done Some reading up and can't seem to find a definitive answer to what to do.
    Ive Backed up My Music and iTunes media on a External Hard-drive, My Music folders are all neat and organised and would like it to stay that way, But I've noticed iTunes media folder was a mess, This is My fault as i had the make a copy to iTunes media ticked in preferences. And the other one De-selected ( Keep Music Organised )
    So to free up space  on the Mac I'm going to delete iTunes media as this is no use to me the way it is, I can't find anything in there and it looks a mess. The Problem with this is iTunes reads from iTunes media and i would rather it read form my organised Music files on the internal Hard-drive so i can keep ontop of it.
    All my Playlists are built within iTunes as i use them in Serato for DJ Purposes , So i would like to keep these playlists and just let iTunes read from the hard drive instead Is there a way once iTunes media is deleted i can highlight a 2014 playlist for example with 250 songs in and change where iTunes looks for them so i don't have to reload all the music? with iTunes media deleted there coming up saying can't Locate File , but i will have to manually show iTunes 25000 where they are manually , Can this be done per Playlist in one big Hit?
    Thank you and hope it all made sense

    Unfortunately it is not making enough sense for me to try to make real suggestions.
    If you are going to disable iTunes media preferences then you have to be 100% organized and know how iTunes works because from that point on iTunes will stop helping you maintain your files in any way.
    Yes, it may look a mess but the whole thing is designed so you should never need to look in your iTunes folder yourself, just at the iTunes application window.  Maybe you need to do this to use your Serrato thingy but that's because you're doing something special.
    If you add a file to iTunes and have the "copy to" preference set then it will place a copy of what you add in the correct folder inside iTunes Media folder.  The only way you should have media files actually directly in other folders is if you put them there yourself or you have residual structure from pre-iTunes version 9 before media was split into folders of different kinds.
    If you disable iTunes media preferences then iTunes is absolutely terrible at following media moved to other drives.  Moving to a different drive is not really moving, it is copying and then deleting the original, and that means iTunes sees the file as being gone.
    I really get lost on your fourth paragraph.
    What are the iTunes library files? - http://support.apple.com/kb/HT1660 More on iTunes library files and what they do - http://en.wikipedia.org/wiki/ITunes#Media_management What are all those iTunes files? - http://www.macworld.com/article/139974/2009/04/itunes_files.html Where are my iTunes files located? - http://support.apple.com/kb/ht1391 iTunes 9 [and later]: Understanding iTunes Media Organization - http://support.apple.com/kb/ht3847

  • I accidently deleated file from the Elements organizor and from the hard drive. Can I get it back?

    I accidently deleated a file from the Elements organizor and from the hard drive. Can I get it back? How to do it?

    There's a good chance that you can if you haven't done too much work after deleting it.  Typically files are not actually wiped from the hard drive, rather the space they take is marked as free to use by another file if needed.  So if it hasn't been used by another file it can be recovered.
    Try this program...  it will help if you know where the images were stored.
    http://www.piriform.com/recuva
    Colin

Maybe you are looking for

  • Sales Order Costing

    Hi friends In case of sales order costing i have few doubts mentioned below  can anybody help on same subject? 1. While raising the sale order it allow to save the sale order prior to sales order costing.             Is there any solution on same so

  • Add text to specified index in multicolumn listbox

    Hi! I have smal problem with multicolumn listbox. My application should create list of values where user can increase and decrease values of 1 or more tester at same time. e.g when user gives for tester 1 values 1 - 5, my vi creates list where values

  • Photos sync with PC computer instead of iCloud

    iTunes 12 is no longer sync photos with my PC computer using Windows 7.   I have very large photo collections to show my family, relatives and friends.  I don't want any photo on iCloud due family privacy.   also iCloud do not support folders on phot

  • High Noise Margin

    Hi there, It seems like my line has been changed to a different profile with the Downlink Noise Margin Target being set to 10dB. I'd like to have it back to 6dB as before.  I've lost over 0.6Mbps and my speeds weren't exactly that high to begin with!

  • Tip on "bogus" frm-42100

    I've had this happen to me a couple times. As soon as a form starts if you have an on error trigger that does display_error, you get frm-42100. So it appears like a bogus error, as if the on-error trigger were fired when there was no error. If you tr