Feed on
Posts
Comments

Monthly Archive for January, 2008

Uninstall Apache

So, I’m sure many others have made the same mistake. You downloaded the latest Apache, did the 3 step:

configure –prefix=/usr/local –enable-mods-shared=all –enable-ssl –enable-proxy
make
sudo make install

Doh! That’s probably not what you wanted. Now you have stuff like

/usr/local/build
/usr/local/icons

You’d have been better off going with Apache 2’s default prefix which is /usr/local/apache2. The problem […]

Read Full Post »

Autotest CPU Fix

Update 1/15/2008
Autotest and rspec both posted updates today. Now, the way to fix this issue is slightly different:

Autotest.add_hook :run do |autotest|
  autotest.add_exception(/^\.\/vendor/)
  autotest.add_exception(/\.svn/)
end

Thanks Ryan and David for the updates!

I've been noticing in my current project that running autotest was constantly consuming about 25-30% of my cpu and causing my macbook pro to run really [...]

Read Full Post »