15

MacOS Sierra has a helpful "Manage Storage" option in "About this Mac".

I noticed that my Mac uses 152 gigs of storage just for "system". I'm wondering if that's normal, because it seems outrageously high to me. I would imagine the OS would take up, certainly less than 100 gigs under normal circumstances.

Is there any way to cut down on how much storage is taken up by the system?

enter image description here

1

8 Answers 8

9

If you are on High Sierra then… it's TimeMachine fault.

That's the solution that worked for me.

Type this command in you terminal:

sudo tmutil listlocalsnapshots /

to check the snapshots of TimeMachine. You get some strings like these:

com.apple.TimeMachine.2017-10-02-132639
com.apple.TimeMachine.2017-10-02-175507
com.apple.TimeMachine.2017-10-02-200417
com.apple.TimeMachine.2017-10-02-235853
com.apple.TimeMachine.2017-10-03-112713
com.apple.TimeMachine.2017-10-03-112934
com.apple.TimeMachine.2017-10-03-113254

You need this command to delete TimeMachine mess:

tmutil deletelocalsnapshots 2017-09-27-112934

Type this command for each of those snapshots (changing the date) and you'll get a great amount of free space!

3
  • will these get deleted once I let time-machine sync with my harddrive again? Or does timemachine fail to delete these snapshots in general? In other words, I am a bit scared, that deleting these via terminal will screw with my backups. Or does this have no effect?
    – CrazyQwert
    Commented Mar 27, 2018 at 8:19
  • They are just snapshots of your system waiting to get uploaded in your TM disk. Every time you move/save files on your mac, TM will takes snapshots. IMO this is just an old bug. I think that they fixed it already, so just delete the older snapshots and run TM backup after that.
    – draern
    Commented Mar 28, 2018 at 12:53
  • Am on High Sierra with about 60GB worth of system files. I did not have any Time Machine snapshots cluttering up my drive.
    – Pieter
    Commented Mar 30, 2018 at 16:02
3

I believe that when I got my MBP, the size was around 16 GB.

One night the size of the 'System' section of my storage increased 40 GB in an hour (though, I am running the High Sierra Beta). I restarted a few times and nothing seemed to happen. I read an answer somewhere to an issue related to this that I could delete the com.apple.coresymbolicationd folder in /System/Library/Caches/. The system couldn't read the size of the directory so I figured it was a problem folder, so I deleted it, emptied the garbage, and restarted. Now my System section is 50 GB (used to be 120 GB).

Disk Inventory X gave me different sizes than the System Information window and it didn't find any problematically large files. Daisy Disk, however, did find a glob of ~75 GB that it couldn't scan because of permissions, even when scanning as admin. The com.apple.coresymbolicationd directory has restrictive permissions, so I assume that was the culprit.

Deleting that directory isn't harmful to the system as far as I know, and it regenerates when the OS needs it again.

You can also look at the built in Disk Utility. That gave me conflicting reports each restart but did inform me on one restart that ~100 GB of data was purgeable.

2
  • 2
    You can run this to see how big that folder is: sudo du -sh /System/Library/Caches/com.apple.coresymbolicationd
    – Paul Irish
    Commented Aug 17, 2018 at 23:33
  • 1
    Far warning, DaisyDisk trial will let you queue up files but requires a full license ($10) to actually delete them.
    – Samie Bee
    Commented Dec 2, 2018 at 6:12
1

I'm not entirely sure what Apple considers to be "System". Mine is using about 40GB. Apple's calculator seems a bit unclear and I'm unable to find an explanation of what is included in that breakdown. Here is my actual system usage:

enter image description here

I would suggest using a better application that does not use a generic breakdown, but will show you which large files are taking up so much space, perhaps something like Disk Inventory X.

1

I had the same problem. My System folder was 50 GB, my Applications folder was 20 GB, and my Downloads, Music, etc accounted for about 20 GB. And my "About this Mac" was showing "System" space used as 160 GB, thus showing that there was no disk space any more on my 256 GB mac.

So I spent some time found where this "160 GB" was being used. In the Users/<user>/Library folder, one of my application had created a directory and was storing some files over there which accounted for majority of the 160 GB. I removed that application and deleted this folder which resolved my problem.

Note that deleting anything in a system folder can be harmful, so only do it if you know w

1

Mainly, abnormal "system" size in macos is all about this path /private/var/folders/w3. Its some kind of system temporary folder, in which you can find xcode publishing archives of different versions(if you use xcode) and lots of data, that could be restored when needed.

Also you can clear the data, which is marked in storage preferences as Purgeable Data this way:

  • list your volumes by df -h
  • run secureErase for system volume by sudo diskutil secureErase freespace 0 /dev/disk1s1

Also delete unused simulator images in xcode/window/devices and simulators/simulators, you can easily install them again when needed from Xcode/Preferences/Components, and clear this folder /Users/your_user/Library/Developer/Xcode/iOS DeviceSupport This folder expands each time when new device connected, and could be easily erased.

1

the problem I found was that for years I had connection doctor in Mac Mail logging zillions of connection histories creating a giant txt files (more than one in fact). Once I found the files under logs (go to ~/Library/Containers/com.apple.mail/Data/Library/Logs/Mail) and deleted them I opened up 100gb of space on my drive. also turn off the logging under connection doctor in Mail. My system went from 130 to 43gb

0

I had the same issue and it was a pain to find what was eating the memory.

Then, I figured out that the System informationDocumentsFile Browser gives you all folders ordered by size, which is extremely handy.

Make sure to not delete essential files.

System information Screenshot

0

System probably includes /usr/local/bin — if you use homebrew you might have dozens of gigabytes in there.

In practice in can be anything, the only sure way is to inspect it with some disk visualizing apps, e.g. GrandPerspective, or you might prefer a console tool (faster and more convenient) such as ncdu which is available from homebrew:

## install ncdu if not already present
brew install ncdu

sudo ncdu /

ncdu allows deleting files and folders with the d key.

It might take a few minutes to complete, depending on how many files you have on the disk and how small they are (many tiny files will take longer to process than a few huge ones).

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .