Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mac OS counterpart to Sysinternals and Powertoys

Tags:

macos

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?

like image 780
Abdullah Jibaly Avatar asked Jan 07 '09 14:01

Abdullah Jibaly


3 Answers

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.

like image 148
stevex Avatar answered Sep 21 '22 14:09

stevex


Top 10 DTrace scripts for Mac OS X is an article that describes ten really useful tools that are Mac equivalents of some of the Sysinternals tools such as ProcessMon, FileMon, etc.

The post's author created some of the scripts when he made the DTraceToolkit, which he says Apple then customized and enhanced for inclusion by default in Mac OS X.

Some script names look like they end with the word "noop," which might be a bit confusing--it's actually "snoop." As in spying on system activity.

like image 31
Brian Morearty Avatar answered Sep 19 '22 14:09

Brian Morearty


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

like image 32
neesh Avatar answered Sep 20 '22 14:09

neesh