Disk Space Usage on my Mac Mini

Where has all my disk space gone?
Info on my Mac Mini drive is as follow;
Capacity: 74.21 GB
Available: 9.68 GB
Used: 64.53 GB
Doing the info on all folders visible in Finder;
Applications: 5.29 GB
Developer: 160kB
Library: 10.75 GB
System: 2.53 GB
Users: 13.8 GB
I don't even have to try and add these up as they are nowhere near the total of 64 GB used, so what directories/files are not visible? Or what is using more than 30 GB of space that I cannot see?
I trying to free space up and or move things of this drive because is is dog slow right now and it.
Any insight would be appreiciated.
Warren

OK, So I dl'd that and ran it and it only showed an additional swap file directory called "Private" that had about 3 gigs, still about 27 gig's missing.....
In this program the bottom bar shows 74.2 capacity, 61.5 used, 12.6 available
Big directories (anything over 1gig)
13.7 users
10.7 Lib
5.28 Apps
2.53 System
2.93 Private
About 35 gigs
then a bunch under 1 gig that total less than 1 gig,
so say around 25.5 unaccounted for ?????????????
nice program but still wondering where my hard drive space has gone.....
Warren

Similar Messages

  • SQL AGENT JOB FOR DISK SPACE USAGE ALERT

    Hello Experts
    what is the best way to set up a disk space usage alert for my sql server 2008r2 databases. i want to get a notification or alert whenever the disk usage is >80%, thank you as usual.

    Hi
    You can use sql server job for same. I am using below procedure configured with sql job running every 15 mins
    Example: EXEC [DBA_DiskSpaceMntr]
    @mailto = 'team mail',
    @CDrivethreshold = 1024,
    @OtherDrivethreshold = 10240
    CREATE PROCEDURE [dbo].[DBA_DiskSpaceMntr]
    @mailto nvarchar(4000),
    @CDrivethreshold INT,
    @DDrivethreshold INT,
    @YDrivethreshold INT,
    @OtherDrivethreshold INT
    AS
    BEGIN
    declare @count int;
    declare @DiskFreeSpace int;
    declare @tempfspace int;
    declare @tempdrive char(1);
    declare @mailbody nvarchar(4000);
    declare @MailSubject nvarchar(1000);
    declare @AlertMessage nvarchar(4000);
    declare @altflag bit;
    declare @sub nvarchar(4000);
    declare @cmd nvarchar(4000);
    set @count = 0;
    SET @mailbody = '';
    SET @cmd = '';
    set nocount on
    IF EXISTS(select * from sys.sysobjects where id = object_id('#driveinfo'))
    drop table #driveinfo
    create table #driveinfo(id int identity(1,1),drive char(1), fspace int)
    insert into #driveinfo EXEC master..xp_fixeddrives
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('C')
    IF @DiskFreeSpace < @CDrivethreshold
    Begin
    SET @MailSubject = 'Drive C: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive C: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    --select * FROM #driveinfo where drive in ('L')
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'SQLDBA_Support',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('D')
    IF @DiskFreeSpace < @DDrivethreshold
    Begin
    SET @MailSubject = 'Drive D: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive D: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'SQLDBA_Support',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    SELECT @DiskFreeSpace = fspace FROM #driveinfo where drive in ('Y')
    IF @DiskFreeSpace < @YDrivethreshold
    Begin
    SET @MailSubject = 'Drive Y: free space is low on ' + cast(Serverproperty('Machinename') as nVarchar)
    SET @mailbody = 'Drive Y: on ' + cast(Serverproperty('Machinename') as nVarchar) + ' has only ' + CAST(@DiskFreeSpace AS VARCHAR) + ' MB left. Please free up space on this drive. '
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'profile_name',
    @recipients= @mailto,
    @subject = @MailSubject,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    End
    set @mailbody='';
    while (select count(*) from #driveinfo ) >= @count
    begin
    set @tempfspace = (select fspace from #driveinfo where id = @count and drive not in ('C','Q','D','Y'))
    set @tempdrive = (select drive from #driveinfo where id = @count and drive not in ('C','Q','D','Y'))
    if @tempfspace < @OtherDrivethreshold
    BEGIN
    SET @altflag = 1;
    SET @mailbody = @mailbody + '<p>Drive ' + CAST(@tempdrive AS NVARCHAR(10)) + ' has ' + CAST(@tempfspace AS NVARCHAR(10)) + ' MB free</br>'
    --SET @cmd = 'dir /s /-c ' + @tempdrive + ':\ > ' + @logfile
    --EXEC xp_cmdshell @cmd
    END
    set @count = @count + 1
    end
    IF (@altflag = 1)
    BEGIN
    SET @sub = 'Monitor Space on ' + cast(Serverproperty('Machinename') as nVarchar)
    set @mailbody = 'The below drives on ' + cast(Serverproperty('Machinename') as nVarchar) + ' have low disk space then threshold limit ' + CAST(@OtherDrivethreshold as VARCHAR(10)) +' Please free up the space in below specified drives <p>' + @mailbody
    --print 'Space on ' + @tempdrive + ': is very low: ' + str(@tempfspace)+ 'MB'
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'Profile name',
    @recipients= @mailto,
    @subject = @sub,
    @body = @mailbody,
    --@file_attachments = @logfile,
    @body_format = 'HTML'
    END
    drop table #driveinfo
    set nocount off
    END
    Thanks Saurabh Sinha
    http://saurabhsinhainblogs.blogspot.in/
    Please click the Mark as answer button and vote as helpful
    if this reply solves your problem

  • Videos Disk Space Usage

    Good morning,
    When I go to 'About this Mac' I see it says I've got 81 GB of videos on my Mid 2013 MacBook Air (OS X Yosemite 10.10.1), but I am sure I don't have that many, also because when I click on the videos folder in Finder it shows I've got about 10 GB of videos. I've deleted all my iTunes movies, even the folders on iTunes Media. How can I free this space?
    Thank you,
    Luis García

    marco wrote:
    Hi all,
    how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • MacBook Disk Space Usage

    Hi,
    Has anyone found a utility that can be used to locate disk space usage on the MacBook? I would like to find out what files are eating up my disk space and would prefer to not have to use UNIX commands to accomplish this. I need to delete something off my computer but need help to locate the culprit. Any help is appreciated.
    Thanks

    Use a program such as WhatSize or Disk Inventory X to determine where the space is being used.
    (38758)

  • Disk space usage by table

    Hi all,
    how do I determine disk space usage by table1, table2 ?

    marco wrote:
    Hi all,
    how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Checking the schema-wise disk space usage

    hi
    can we get the disk space usage for every individual schema separately ?

    What about this:
    select OWNER, sum(BYTES) from DBA_SEGMENTS group by OWNER

  • Graphical disk space usage analysers

    anyone got any suggestions for other disk space usage analysers?
    it's nice that on ncdu's site a few "similar projects" are mentioned.
    treesize is a lovely little gui app, does what it needs to, clean n no fuss.
    ~but it's not in pacman or the AUR.
    i'm not really interested in filelight, since it will want to drag along half of kde, and similarly i expect baobab is a bloater for the same reason with gnome.  no sign of philesight in the repo either though.
    anyone got any suggestions for other disk space usage analysers?
    perhaps a lighterweight, less DE-dependent, ring-style one?  ...if such a thing exists yet.
    or is xdiskusage the best i'll find in the arch repos?

    Just for the record, you don't have to go to ncdu or treesize webpage to look for alternatives, we have (some of) them listed in our wiki: https://wiki.archlinux.org/index.php/Co … y_Programs
    Maybe you can ask sb to put treesize in the AUR: https://bbs.archlinux.org/viewforum.php?id=38 ?

  • Host disk space usage

    Is there a way to get a report of available disk space for a host?
    We do not autoextend our tablespaces, so whenever we need to add more space
    , we have to shell into the OS (Unix) and run a "df -k" to see what mount points have space available.
    Is it possible to have the OEM Grid send us this info via notification and how?
    Thanks.
    Message was edited by:
    kaapie
    I found an answer: Table/View for Filesystem Space Available Metric?

    marco wrote:
    Hi all,
    how do I determine disk space usage by table1, table2 ?Use the _SEGMENTS views for this. Make sure to include dependent objects such as indexes if you're wanting to get an idea of the "total" size of the table. Perhaps you could give us more information on your requirements and what you're seeking to accomplish.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How much space to backup my mac mini

    My mac mini was running on 512 GB's
    I've increased to 2GB
    How much space do I need to do a full backup before upgrading?
    I thought  2GB usb would be enough, but I obviously figured wrong....
    advice?

    "Backup" requires as much space on your Hard Disk Drive (and NOT your RAM Memory).
    Your HDD is probably something like 80GB? 120GB? 250GB? 500GB? - depending on how old it is, and if the hard disc has been upgraded.
    Select your hard disc drive (top right of your desktop? - often called "Macintosh HD") and in the Finder go "File:Get Info...." 
    What does it say under "Capacity"?
    And you won't be able to backup to a USB stick - not big enough!  You'll need an external hard disc drive, like this:

  • Photos disk space usage

    I don't quite understand what Photos does: it uses 3 times as much disk space as Aperture for the same library.
    My Aperture library with some 53k photos (~200GB on external SSD) and a few hundred videos (~100GB on external SSD) uses around 40GB disk space for thumbnails in various sizes, database and so on.
    After a few hours of importing, the same library in Photos has grown to 119.9GB.
    Settings are: do not copy images to library, no use of iCloud Photo Library (and thus no "optimize Mac space usage").
    Inside the library file, the Thumbnails directory uses a sane-looking 16.66GB, Previews is 7.29GB, and Masters uses only 1.35GB, since almost all images are still stored in Aperture referenced masters on external SSD.
    The largest directory inside the library is Resources > model resources, with a whopping 86GB for 147k objects (images).
    I'm almost sure these are a result of my trying and then disabling iCloud Photo Library during import yesterday afternoon.
    Since Photos does not delete those resources for some reason (disk space and RAM are always cheap and plentiful for Apple, I guess) – is there a way for me to get rid of it if I don't want iCloud Photo Library? Would Photos be smart enough to start culling images here when my system disk space, a paltry 256GB SSD, dwindles towards zero?

    graigsmith wrote:
    it could be because the side bar images are square, maybe it caches the square cropped images.  Theres a setting to not crop the thumbnails on the sidebar.
    wonder if that does anything.
    i have noticed that it's way faster now than in beta.   The cache probably helps speed it up a lot.
    I'm sure that speed is the reason they went with this heavy-handed way of handling faces. This will help a lot when people start having their masters library in the cloud.
    However, when Photos simply fills up my system SSD to the point of OSX complaining that it can't work reliably anymore for lack of space, as it did on the first Aperture library import here and was about to do again hours ago, this really is besides the point somewhat.

  • Cannot see my shared USB hard disk's connected on my Mac-mini on my Macbook

    As you all can see, I'm a Mac user since 1989, i've don't like working on a windows-computer.
    But i've got a problem since I'm using Mac os X 10.5. If i try to make a connection with my Macbook pro to my Mac-mini (my Mac-mini has two USB hard disks) i cannot select the USB hard disks. But my WIDOWS computer has no problem to approche these disks???? Can anyone help me????

    Hi WillemH777-NL and welcome to the discussion forums.
    On the MacMini open system preferences-->sharing
    then select 'File Sharing' from the Service column. Then under Shared Folders make sure your 2 usb drives are listed, if not click the + sign and add them.
    then click the 'options' button
    make sure Share files and folders using AFP is checked
    make sure Share file and folders using SMB is checked
    Then switch on the names of the users and the mac can use the smb service.
    then click Done
    Now see if you can access the mini's sharepoints.

  • HT201612 When I installed Windows on my Macbook I allocated too much disk space to Windows, thus reducing the disk space available for MAC OS 10.6. Can I reallocate disk space without damaging existing Mac aplications, files, etc?  Thank you.

    n I use Boot Camp (Assistant) to change the percentage of disk space allocated to each, without damaging existing MAC applications, files, etc.?  Thanks in advance.

    make sure Windows will also have the room for updates, cache, page, hibernation, and growth with 20% free space; and Mac should also have 20% or more after accounting for growth.
    Spend the $19 and save the headaches with CampTune but backup both - CampTune should help with that chore also but also TimeMachne and clone OS X.
    Paragon CampTune for Mac

  • Out of disk space when exporting a 10 min video!

    I am trying to export a FCPX project that is roughly 10 mins long. It has transitions, text, music etc. I have a MBA 4gb, 120gb SSD, Intel i5.
    The problem is, about half way through it crashes saying that the startup disk is nearly full, even though I have 40gb free before starting.
    I have even tried moving all the events and project to an external drive and exporting the file to the same drive but it doesnt make any difference.
    The confusing thing is, I exported another file a week early, about 10 mins long and that worked fine. I have the same amount of free disk space as I did then.
    Any ideas? Is there a way to set FCP to use the external drive exclusively and not the startup disk?
    I am trying to export using the following compressor settings: (It still fails if I use a lower quality export)
    Name: High Quality
    Description: No description
    File Extension: m4v
    Estimated size: 2.25 GB/hour of source
    Device: Apple TV HD
    Frame sync rate: 5 seconds
    Video Encoder
              Width and Height: Automatic
              Pixel aspect ratio: Default
              Crop: None
              Padding: None
              Frame rate: (100% of source)
              Frame Controls: Automatically selected: Off
              Codec Type: H.264
              Multi-pass: On, frame reorder: On
              Pixel depth: 24
              Spatial quality: 50
              Min. Spatial quality: 50
              Temporal quality: 50
              Min. temporal quality: 50
              Average data rate: 5 (Mbps)
              Maximum data rate: 14 (Mbps)
    Audio Encoder
              Sample Rate: 44.100kHz
              Channels: 2
              Bits Per Sample: 16
              AAC encoder quality: high
              Data rate: 128 Kbps

    The problem was an effect I had on one clip. I delted all the effects on all clips and exported without any issues. I then re-applied all the effects and this worked fine also. It was just a correupted effect on one clip that was causing the problem.

  • Reporting of free disk space improper for my Mac SSD

    Frequently I find that the reported free disk space shown on the desktop for my Mac SSD is wrong since I upgraded to 10.10.3
    This is just a reporting issue since the disk utilities I have checked show the correct amount of free space.
    To fix it I go to preferences and open Time Machine and turn it off, and then back on.....this has corrected the issue.
    Just reporting this in case others are having the same issue.

    OK, So I dl'd that and ran it and it only showed an additional swap file directory called "Private" that had about 3 gigs, still about 27 gig's missing.....
    In this program the bottom bar shows 74.2 capacity, 61.5 used, 12.6 available
    Big directories (anything over 1gig)
    13.7 users
    10.7 Lib
    5.28 Apps
    2.53 System
    2.93 Private
    About 35 gigs
    then a bunch under 1 gig that total less than 1 gig,
    so say around 25.5 unaccounted for ?????????????
    nice program but still wondering where my hard drive space has gone.....
    Warren

  • Insufficient disk space using server103linux32 on Mac OSX

    I am trying to install Oracle Workshop for Weblogic 10.3 on Mac OSX using the Linux version of the application. After extracting and executing "java -jar installer.jar", the GUI installer opens and appears to run fine, but after the last dialog, I get the following error:
    Insufficient disk space! The installer requires:
    617MB for the BEA Home at /Users/cburleson/bea,
    548MB for the product at /Users/cburleson/bea/tools/eclipse_pkgs/2.0...
    867MB temporary work space at /Users/cburleson/Downloads/server103linux32
    There is only 868MB available at /.
    "df" command in my terminal shows that I have only used 60% capacity on my volume. I clearly have more than 868MB available. Does anybody know what the deal is or how to get around this?

    jlarechiga, it does not work on my snow leopard system.
    tried to install using : Erwin Morales' Blog
    http://blogs.oracle.com/emorales/2009/06/weblogic_over_mac_os_x.html
    server103_generic.jar gives the similar error stating only 1MB free (even when you run : sudo java to start installer)
    rik

Maybe you are looking for

  • Security - How to set up auto email on IP change for stolen unit recovery

    I know most smart thieves will not put a system online until they have control of it, but for those who don't... Can anyone point me to a script that would email our office when the IP changes in the background? It would really help as we have had a

  • Where should a put FCP?

    I have been reading FCP for dummies, watching tutorials and reading the directions before installing the program. Now that I am about to install I remembered reading or hearing to install it in a certain place. Should I install the application on my

  • Capturing mini-DVs 2 questions

    I rented a DVX 100a to shoot some stuff and now need to capture the footage. I of course don't want to rent the camera just to digitize the media and was hoping I could use my little Sony camcorder. 1- Will that affect the quality of the digitizing?

  • Functional Image Update 15540 CPU ?

    I have 4 spare cpu cards with 1.25 version if the functional image, and I am trying to update them to 1.27. I have a spare shelf, that I powered up. I would to do this in the office, as opposed to in the field, after the cpu is installed on the activ

  • Specific Exchange rate type for Purchase order transactions

    Hello, Is there any transaction in customizing where we can default a specific exchange rate type to be used for specific transactions. To explain in more detail, I am setting up a new exchange rate type which will be maintained by Treasury. We want