Posts Tagged ‘Tiger’

Comments Off

Finding Big files on the Mac


2008
09.18

If you are using leopard and don’t mind the CPU times, then go to Finder and choose View/View Options and click on “All Sizes” This calculates the size of all files within a folder. Very useful to see why you suddenly have 14MB of /Library files. If you have Tiger then…

MostOfMyMac.com » How To Find The Largest Files On Your Hard Drive

If you are like me, occasionally (actually most of the time in my case) you run out of disk space on your hard drive and you wonder what is eating up so much space. Well in order to make some space in your hard drive you need to delete some files.

I am going to show you a quick way to find the files that take the most space on your machine. Here is how we begin:

# First of all, we need to find the biggest files in your computer and start by deleting the ones that are no longer important.
In order to do this let’s use one of the great and powerful features of Tiger called “Smart Folders“. So from Finder, choose File/New Smart Folder and then choose “+” on the right and then “+” again and choose Other… and look for Size and pick greater than 1GB and choose Save. Name this “1GB+ Files”
# This appears on the left bar of Finder and when you click, it search for a 1GB files
#

Comments Off

Sim City, The Sims 3 and Tiger Woods


2008
09.08

!<http://www.9to5mac.com/files/image/iPhoneSimCity.jpg! “EA”:http://www.9to5mac.com/EA-Games-announced is going to town on the iPhone. I like these games, hope they don’t crash too much. My favorite will be Sim City and the golf game!

Comments Off

MDworker bogging Mac


2008
08.06

Like Windows, the Mac has lots of processes running. My current nemesis is something called mdworker which stands for metadata worker. That means nothing to me. But, apparently, this is the process that indexes files for Spotlight. So you can get it to go crazy after bad shutdowns where the Spotlight data indexes are screwed up. It should spike a little, but mine is constantly running at 50-80% of CPU (for a dual core that is alot!) and disk activity is crazy.

100% CPU use on One Core Process mdworker – Mac Forums

I’ve been getting serious CPU spikes with a process called mdworker. Seemingly randomly, it will start using 100% of one core on my Macbook Pro 2.4ghz. This is on OS 10.5.1.

As a fix,http://www.macintouch.com/tiger12.html suggests stopping mdworker, deleting all the indexes and reindexing everything to get it to normal. Mac OS X 10.4 Tiger (Part 12)

1) Using the mdutil command-line utility in Terminal, turn off indexing for each of your drives. example:

$ sudo mdutil -i off /Volumes/your_hard_drive_name_1
$ sudo mdutil -i off /Volumes/your_hard_drive_name_2

2) Then use mdutil to remove the indexes from each drive

$ sudo mdutil -E /Volumes/your_hard_drive_name_1
$ sudo mdutil -E /Volumes/your_hard_drive_name_2

3) Physically remove the .Spotlight directories from the root of each drive.

$ cd /
$ sudo rm -fr .Spotlight-V100

(do the same for your second or third drive) BE CAREFUL WITH THAT RM COMMAND! One typo could ruin your day.

4) Use mdutil again to turn indexing back on for each drive

$ sudo mdutil -i on /Volumes/your_hard_drive_name_1
$ sudo mdutil -i on /Volumes/your_hard_drive_name_2

5) Spotlight will now re-index all drives and should behave in a normal fashion. (No longer uses 60%-80% of your CPU)