So I have an OS X machine running desperately low on hard drive space. I ran DiskInventory X and found that
/private/var/sleepimage
is taking up 2GB of space. I understand that this file is used to hold the contents of RAM or some such thing, so in the event of sudden battery or power loss, no data will be lost.
If I start the machine up in Target mode, and wipe that file out, is there any bad repercussions outside of risking data loss in the event of a crash?
1 Answer
You can safely delete it without going into Target Disk Mode.
sudo rm /private/var/vm/sleepimageNote that this will be recreated when you sleep your computer again. To disable safe sleep altogether (something I don't recommend),
sudo pmset -a hibernatemode 0
sudo rm /private/var/vm/sleepimageDoing this may cause you to lose data if your computer loses power while sleeping.
2