|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#1 |
|
What is this "Other" in the storage tab? What is eating my space
![]() 49 GB? What is eating up my precious hard drive space? This question is asked on a daily basis in the Hardware subforums. The usual explanation is that it's the time machine local backups. This isn't completely true. You'll have "Other" even if time machine is completely disabled. Other is everything else that does not fit into the categories that are shown in the graphics. So, it can be stuff like your word files, your powerpoint files, the OSX system files and so forth. In some cases the local snapshots can form part of this because everything needs to be stored somewhere. All that graphic does is tries to categorize files based on the spotlight index, my hard drive contents and the operating system's understanding of what files fall into what category. So photos will be files that are png, jpeg, gif and so forth. The screenshot above is the drive on my MBA and my time machine is disabled. Just to double check I also disabled the local backups separately in Terminal. Code:
sudo tmutil disablelocal Open up your Terminal (Applications --> Utilities) or type Terminal into the spotlight window in the top right (or cmd + space if you don't feel like clicking all the way over there on the search icon) Type in the commands as shown in the screenshot below ![]() This is the contents of your home folder, including the hidden directories. You'll see that I have quite a lot of stuff in the Music folder but I have no music on this computer. Yet the graphic shows that I have 789 MB of Audio. Why is that? It's because somewhere on my hard drive I do have audio files and the program that displays the graphic found them. They are not music files. They are audio files from applications and the system audio files that make the beeps and gongs when I do things like empty the trash. The Music folder is where your iTunes media folder is by default. I have a couple of movies and series in there, hence why it's that size. You'll note that there is another big folder called Library. This is where various things get stored that pertain to the user logged in. For example, if you use iMail, this is where your mail is. It's also where your application settings are and many other things that are beyond the scope of this discussion. Now follow the steps in the next screenshot. ![]() This is the root of your volume and you see folders like System, Private and Library. I am simplifying a lot, but you can think of those folders as where your operating system is. The Library folder has a similar job to the Library folder in your user folder discussed above, except this is now more generic stuff for ALL users, not just for you. There are things like system fonts in there and even sounds for Garageband. All of this stuff takes space. To follow this example back onto the topic: system fonts will be in the "Other" category. So what's that big Users folder? That's where all of the home directories for the users on this computer are. That's where my home directory is, which has MY movies, documents and so forth are. You can check it out if you want ![]() type in Code:
cd Users/<username> Code:
cd Users cd <username> cd .. goes back a level - if I am at Users/sebastianp then cd .. will take me back to Users/ ls - lists the contents of the directory. This is basically what you see in Finder, except that I've added the a and l flags which allow me to see the hidden files and folders and also shows the info in particular format. Try ls without the flags. Don't be afraid of your computer people. It's how you will learn. Take a back up and don't be afraid to see what makes it tick and tock. You can also explore your computer's hidden directories and files in Finder by typing this in the command line: Code:
defaults write com.apple.finder AppleShowAllFiles TRUE killall Finder Code:
defaults write com.apple.finder AppleShowAllFiles FALSE killall Finder http://forums.macrumors.com/showthread.php?t=1300195 And one last tip for Finder. If you want to see the total size that a bunch of files and directories take up then highlight then or multi select them using cmd and then push cmd + alt + I and you will have one info screen for everything you have selected. Depending on how many files/directories you have selected, it may immediately calculate the total size or you may need to click "Calculate" If you've done all of this and the figures you are seeing do not make sense, then run Disk Utility and Verify Disk. Last edited by theSeb; Jan 5, 2012 at 01:03 PM. Reason: Added disk utility note |
|
|
|
11
|
|
|
#2 | |
|
Quote:
Thanks for this very informative post. I'm familiar with the "du" command, however I find tools like DiscInventoryX more useful to quickly identify large files and folders. |
||
|
|
2
|
|
|
#3 | ||
|
Quote:
Quote:
|
|||
|
|
0
|
|
|
#4 | |
|
Quote:
"du" correctly tells me that the directory has 1.9 GB of content, which seems to agree with the 1.87 GB that "About This Mac" reports. Although, to be precise, du says there are 2037 million bytes, while "About This Mac" only acknowledges the existence of 1870 million bytes. That's about a 10% difference, which might end up in "other." A du on .Mobilebackups with depth 2 reveals the backups with time stamps: Code:
$ sudo du -h -d2 .MobileBackups/ 1.4G .MobileBackups//Computer/2011-12-27-182037 131M .MobileBackups//Computer/2011-12-28-221756 11M .MobileBackups//Computer/2011-12-30-012429 126M .MobileBackups//Computer/2011-12-31-025031 70M .MobileBackups//Computer/2012-01-01-033350 16M .MobileBackups//Computer/2012-01-02-035345 3.7M .MobileBackups//Computer/2012-01-02-165454 3.8M .MobileBackups//Computer/2012-01-02-175554 2.8M .MobileBackups//Computer/2012-01-02-185653 3.0M .MobileBackups//Computer/2012-01-02-195736 3.4M .MobileBackups//Computer/2012-01-02-220003 2.0M .MobileBackups//Computer/2012-01-02-220636 4.4M .MobileBackups//Computer/2012-01-02-221735 4.3M .MobileBackups//Computer/2012-01-02-230636 3.3M .MobileBackups//Computer/2012-01-02-235341 3.1M .MobileBackups//Computer/2012-01-03-000804 11M .MobileBackups//Computer/2012-01-03-001638 3.3M .MobileBackups//Computer/2012-01-03-005827 3.2M .MobileBackups//Computer/2012-01-03-011509 5.8M .MobileBackups//Computer/2012-01-03-012455 3.9M .MobileBackups//Computer/2012-01-03-021508 3.5M .MobileBackups//Computer/2012-01-03-031508 12M .MobileBackups//Computer/2012-01-03-100308 4.1M .MobileBackups//Computer/2012-01-03-102649 5.1M .MobileBackups//Computer/2012-01-03-113818 3.4M .MobileBackups//Computer/2012-01-03-122559 2.1M .MobileBackups//Computer/2012-01-03-132558 10M .MobileBackups//Computer/2012-01-03-142558 3.9M .MobileBackups//Computer/2012-01-03-152558 2.4M .MobileBackups//Computer/2012-01-03-162658 1.9G .MobileBackups//Computer 1.9G .MobileBackups/ Once I connect the external backup (on thursday probably) my expectation is that the big weekly snapshot will be deleted. I'll let you know. Bottom line: The unix way of doing things is most accurate
|
||
|
|
2
|
|
|
#5 |
|
Nice work and good findings.
Whilst we're on the topic of HD space and backups... if you're backing up your iDevice to your computer then your backups will be found at: /Users/<username>/Library/Application Support/MobileSync/Backup Even if you switch off backups to your computer and start using iCloud to back up, the files normally remain. I am currently wasting 2.3 GBs of space in there. ---------- And another point: Versions. Hopefully by now most users will know what it does and it can be quite handy since it's basically another time machine like feature that runs entirely on your local storage independently of your time machine. If you're working with large documents, making changes and saving with the likes of Pages, Keynote and Numbers, your versions folder can grow quite large. I wonder if anyone knows the algorithm for when Lion decides to start freeing up the space taken by versions? The folder itself where versions of your documents are stored is /.DocumentRevisions-V100 |
|
|
|
0
|
|
|
#6 |
|
How do you get that screen showing the "Other" category?
__________________
MacBook Pro 15" Late 2011, 2.2GHz, 16GB Patriot RAM, 240GB Intel 335 SSD; Mac Mini 2011 Base model 8GB RAM, stock 500GB Toshiba HD |
|
|
|
0
|
|
|
#7 |
|
Good info.
And note that versions stored as a result of auto-saving and such in the applications that use it are really just the deltas, like in TM. In other words, it isn't a folder full of saved-as type documents, but a database of changes to that document, keeping the size down. And I have no idea how long stuff is kept there or under what rules; it came up in a discussion of security because some employers don't want versions stored on a mobile computer, for example. But you seem to have little control over this, other than not using an application that uses that feature. Rob |
|
|
|
0
|
|
|
#8 | |
|
Quote:
|
||
|
|
0
|
|
|
#9 |
|
Just a little update: The big december 27 file in my backups folder vanished last night. So the local backups really get deleted after 7 days. Note that I did not perform an external backup in the meantime.
@davidlv In Lion, you click on , select "About This Mac", click on "More Info" and then on "Storage."In previous versions, I think disc utility shows something like that, I'm not sure. |
|
|
|
0
|
|
|
#10 | |
|
Quote:
__________________
MacBook Pro 15" Late 2011, 2.2GHz, 16GB Patriot RAM, 240GB Intel 335 SSD; Mac Mini 2011 Base model 8GB RAM, stock 500GB Toshiba HD |
||
|
|
0
|
|
|
#11 |
|
great post. as a new user i asked this question as well. then i downloaded OmniDiskSweeper and realized that it wasnt just local snapshots. but still i dont use time machine automatically and i disabled local snapshots.
__________________
| Mac Mini | MBP | |
|
|
|
0
|
|
|
#12 | |
|
Quote:
__________________
What is Other on my HDD? Upgrading to Mountain Lion? Check out my free iBook with video tutorials on iTunes 2012 iMac comparison chart |
||
|
|
3
|
|
|
#13 |
|
Thanks, nice post! Yet again I learned a lot from this forums
__________________
No Nonsense! |
|
|
|
0
|
|
|
#14 |
|
Interesting, when I use your terminal comands, it shows that I have over 200GB of pictures, whereas in about this mac, it only shows about 50GB of pix and 250GB of "other." I have a fairly large aperture library (100+GB) and my iPhoto library is probably about 50GB, so maybe the Aperture library is included in "other" as well?
__________________
Mac Pro 3,1: 8 Core 2.8 GHz|16GB|Radeon 5870|2TB+120GB SSD
MacBook Pro 8,2: 2.5 GHz i7|16GB|750GB+240GB SSD iPhone 5, iPad 4, 11" Macbook Air, 12" Powerbook G4 |
|
|
|
0
|
|
|
#15 |
|
Wow, i have been searching and searching why there's that "other" storage on the bar status of MacBooks no wi've foun amy answers,
|
|
|
|
0
|
|
|
#16 |
|
no point turning time machine local backups off.
if you run out of space, they will be reclaimed by the OS automatically. if you don't need the space, having the option to restore files you screw up or accidentally corrupt/delete is a good thing. when you plug into your time machine storage (or it becomes available over the network) these local backups are rolled up to your backup location.
__________________
MBP (early 2011) - Core i7 2720 2.2ghz, Hires Glossy, 16GB, Seagate Momentus XT 750GB Mac Mini (mid 2007) - Core2 Duo 1.8, 2gb, 320gb 7200 rpm iPhone 4S, iPad 4 |
|
|
|
0
|
|
|
#17 |
|
i accidentally placed this "sudo tmutil disable local" onto my terminal. how do i fix it? how do i know what my password is for what they are asking? i' tried every password it doesn't work? how do i fix it?
|
|
|
|
0
|
|
|
#18 |
|
its the password you would use to log in to your mac
__________________
15" i7 Quad Core MBP (Early 2011) 2.0GHz, 16GB RAM, 1TB HD, AMD Radeon HD 6490M(Intel HD Graphics 3000) OSX Lion 10.7.3 16GB Samsung Galaxy SIII with 32GB microSD |
|
|
|
0
|
|
|
#19 |
|
my terminal does not accept the command...sudo tmutil disablelocal
Hi, I have the problem of too much space taken from the hard drive memory by other..and I try to apply the command sudo tmutil disablelocal
but after writing it on..the computer asks me for the pasword but is stuck and does not let me write it on... I have too much space taken by other... and inside when I look through what size there are lik 5G taken by a file called private!!!! what is this???? need helppppp thanks ---------- Hi, when I check my hard disk with what size there are 5G taken by a file called private Any ideas what can it be? also I am trying to introduce in terminal the command sudo tmutil disablelocal and after write it in the computer ask me for the passoword but does not let me write it in the terminal really desperate with this..thanks!!! |
|
|
|
0
|
|
|
#20 |
|
I have a similar problem, if anyone can please help it would be much appreciated!
http://forums.macrumors.com/showthre...6#post16337986 Thanks! |
|
|
|
0
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| thread | Thread Starter | Forum | Replies | Last Post |
| Weird numbers in the storage tab in 'About This Mac' | hesselmid | Mac Basics and Help | 2 | Dec 2, 2011 03:09 PM |
| What does this button in the Mail app do? [Answered] | M-5 | iPad | 6 | Mar 27, 2011 01:55 PM |
| MacBook pro really slow...what is eating my memory up? | ToddJ | MacBook Pro | 6 | Mar 13, 2011 07:54 AM |
| What is Airport Express? | chain752 | Mac Basics and Help | 9 | Dec 7, 2010 07:19 AM |
| What is eating my SSD space? | lbeck | Mac OS X | 9 | Nov 24, 2010 06:12 PM |
All times are GMT -5. The time now is 05:33 PM.











, select "About This Mac", click on "More Info" and then on "Storage."

Linear Mode

