I searched around on how to do this in 10.6, but the only things I could find were references to mdimport -f, which from what I understand is now obsolete. Any other ways to do this?
If Spotlight indexes the drive, that includes the system/hidden files. To search them, just add that criteria to your search.
Hmmm...I don't see that little System Files option...is that screenshot from 10.5 or 10.6? And in any case, ~/Library isn't hidden. I'm talking about folders like ~/var, ~/usr, etc.
Hmmm...I don't see that little System Files option...is that screenshot from 10.5 or 10.6? And in any case, ~/Library isn't hidden. I'm talking about folders like ~/var, ~/usr, etc.
Yup there is but it's still pretty annoying. Apple should have it on by default.
Step 1: Go to the Finder Search (Command + F or File > Find)
Step 2: Click on the "Kind" drop-down menu and click on other.
Note: If you don't see this pop up button, then make click on the "+" button right after Save.
Step 3: You'll see a dialog pop up and find System files. Once there, select the checkbox. Now go back to the search Window by clicking on the OK button.
Step 4 Make sure that the System files is selected in the first drop down menu. Now proceed to the Second drop down menu and select "include".
Now you can search for all your system files but don't expect for this to work with spotlight. Furthermore, you'll have to manually do this every time (only step 4 actually) you wish to search for something in your system. Hope this helps!
Hmmm...I don't see that little System Files option...is that screenshot from 10.5 or 10.6? And in any case, ~/Library isn't hidden. I'm talking about folders like ~/var, ~/usr, etc.
It's the same in 10.5 and 10.6, as xUKHCx said. The steps xUKHCx quoted will enable you to find system files in a search. If you're talking about showing the hidden files and folders in Finder, type the following in Terminal, pressing Enter after each line:
defaults write com.apple.Finder AppleShowAllFiles TRUETo hide them again, repeat the process, replacing TRUE with FALSE
killall Finder
this looks like it should solve my 50-gig mystery, but it didn't work with a simple cut and paste into the terminal window. sorry, newb here, any details i'm missing?
You may have better luck using the form that specifies the type of the data:It's the same in 10.5 and 10.6, as xUKHCx said. The steps xUKHCx quoted will enable you to find system files in a search. If you're talking about showing the hidden files and folders in Finder, type the following in Terminal, pressing Enter after each line:
defaults write com.apple.Finder AppleShowAllFiles TRUETo hide them again, repeat the process, replacing TRUE with FALSE
killall Finder
this looks like it should solve my 50-gig mystery, but it didn't work with a simple cut and paste into the terminal window. sorry, newb here, any details i'm missing?
You may have better luck using the form that specifies the type of the data:
defaults write com.apple.finder AppleShowAllFiles -bool TRUE
[otherwise 'TRUE' might get written as a string ("true") instead of a boolean (1).]
Edit: if that doesn't "work" immediately, try relaunching Finder.
Historically true.The command will work, with or without the -bool