Technology related solutions, tips, tricks, and other interesting topics
In: Apple
15 Mar 2008This script uses otool -L to determine and print all dynamic library dependencies of a given executable or library file recursively and you use it like this: $ checklibs.pl /bin/ls /bin/ls: /usr/lib/libgcc_s.1.dylib /usr/lib/libncurses.5.4.dylib /usr/lib/libSystem.B.dylib /usr/lib/libgcc_s.1.dylib: /usr/lib/libSystem.B.dylib /usr/lib/libncurses.5.4.dylib: /usr/lib/libgcc_s.1.dylib /usr/lib/libSystem.B.dylib /usr/lib/libSystem.B.dylib: /usr/lib/system/libmathCommon.A.dylib Here’s the script which was written by Marc Liyanage: #!/usr/bin/perl # # Written by [...]
To determine what daemon or program is listening on a port in Linux or OS X you can use the lsof command. You need to run the command while logged in as root or if your operating system supports sudo like OS X, you can use that. Command to run in Linux: lsof -i -nP [...]
Burn the DMG image file located in the “Resources” folder which is inside the Boot Camp Package. The Boot Camp package is in the utilities folder and is what you click on to run Boot Camp Assistant. Right-click over the Boot Camp Assistant app in the Utilities folder. Select “Show Package Contents” Open the Contents [...]
In: Apple
5 Feb 2008A clean install of MacOS X 10.5 Leopard will result in Apache 2 being the default version of Apache that starts up when you enable the web service. If you performed an upgrade to Leopard from a Tiger install then Apache version 1.3 will be the default version of Apache that starts up. MacOS X [...]
This blog is about technology related topics. It will primarily contain problems and solutions to IT problems that I encounter on a day-to-day basis. In addition interesting things I come across either on or off the internet will be posted here as well. I will also include step-by-step tutorials to common tasks people may need to do with their computers.