I went to Launchpad then "Other", then to "Terminal". When that opens, you'll see a prompt after your user name. Then type this:
sudo tmutil listlocalsnapshots /
Be sure to include the spaces and the "/" at the end.
It will ask for your password which is the same password you use to unlock your Mac.
Then it will list the snapshots you have on your system. The rest is explained in JamBeats post from earlier in this thread. I'll paste it here:
Sep 29, 2017 7:09 AM in response to rafaelalvesgb
Turned to our good friend Google and I found that Time Machine local backups were the reason and 'sudo tmutil disablelocal' command was supposed to help, if only "disablelocal" verb had not been removed from High Sierra. So back to square one.
Did some digging a.k.a. opened the manual for tmutil. I found that there were two useful verbs "listlocalsnapshots" and "deletelocalsnapshots". Used the first one to get the exact date stamps required for the second one and deleted all local snapshots manually.
Result: "System" went from 158GB to 20GB.
Step by step I went as following:
Code:
sudo tmutil listlocalsnapshots /
This resulted:
Code:
com.apple.TimeMachine.2017-09-27-005259
com.apple.TimeMachine.2017-09-27-104645
com.apple.TimeMachine.2017-09-27-114218
com.apple.TimeMachine.2017-09-27-124220
I took these four date stamps and followed the next command with each as following:
Code:
tmutil deletelocalsnapshots 2017-09-27-005259
So in the end if i double checked with
Code:
sudo tmutil listlocalsnapshots /
there were no snapshots and after checking "About This Mac -> Storage" I was overjoyed!
Hope this helps!
Credits to Mac Rumors user: lainvoo
=====
I had about 8 snapshots in my original listing. After doing this procedure, my system storage size went from over 1.2TB to just over 20gb.
Hope that helps! Thanks again to JamBeats for posting the process.