vote up 1 vote down star
3

As a developer coming from a Windows background, I'd always find the different Powertoys and Sysinternals apps as invaluable tools in aiding programming. Is there something similar for a developer to watch for in the Mac world?

flag

52% accept rate

3 Answers

vote up 3 vote down check

A lot of those types of tools are included with the Mac OS, and some are available separately from Apple.

There's no Mac equivalent of the registry - everything goes in the file system somewhere - and you can use fs_usage to watch that. In a terminal:

sudo fs_usage

Check out Instruments, part of the Apple developer tools distribution.

link|flag
Not entirely true -- OSX inherits the netinfo database from NextStep which is similar in some ways to the registry. – Adam Lassek Jan 7 at 14:42
Instruments looks awesome, how do I run it? – Abdullah Jibaly Jan 7 at 14:55
Thanks for 'fs_usage'. I had read Amit Singh OSX internals, and couldn't remember what it was. – Jonathan Jan 7 at 15:41
Instruments can be run from within Xcode: in the Run menu goto the Start with Performance Tool, and anything under Instruments Templates will run Instruments. It can also be found in /Developer/Applications. – Nathan Kinsinger Jan 8 at 0:08
vote up 0 vote down

Mac OS X comes with a lot of unix tools like sar, top, etc. What metrics are you looking for specifically?

link|flag
Some of the Powertoys I use are Open Command Window Here and Image Resizer, and DiskMon and Process Explorer + AutoRuns for Sysinternals. – Abdullah Jibaly Jan 7 at 14:51
vote up 0 vote down

Not as such. Some of the Powertoys implement features that are built-in to the OS, some are available as various utility programs.

As for Sysinternals, there are quite a lot of them. If you want specifics I'd need a better idea of what you use, but you could probably duplicate 90% of the functionality just from a terminal window. Learning how to use bash and the normal Unix utilities would be a very good skill to have.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.