Warning: A non-numeric value encountered in /home/matt/domains/geekprojects.org/public_html/wp-content/themes/Divi/functions.php on line 5611
Mac OS X doesn’t come with a sha1sum utility. Neither does fink. So what’s the quickest way to check a sha1sum on a Mac? Use openssl: openssl sha1 filename If you’d like to roll this sha1sum check into a simple bash script, create the following sha1sum script: #!/bin/bash /usr/bin/openssl sha1 $1 Then make the sha1sum script executable, and run it: chmod 755 sha1sum ./sha1sum...
Here’s how to use the dd utility to write a disk image to media under Mac OS X. I tested this with 10.5.2 with both a USB to CompactFlash adaptor, and a USB Imation USB SuperDisk. Plug the media into your Mac. If you get a message saying that the media cannot be read, click Ignore. Open Disk Utility (Applications -> Utilities -> Disk Utility). On the left-hand column, find that disk that you plan to write to. Select any partitions on that disk that are mounted, and click the Unmount button (not the Eject button). Once unmounted, the partitions should grey out. On the left-hand column, find that disk that you plan to write to, click it, then click on the Info button. In the window that pops up, note the Disk Identifier. It should be something like disk2 or disk3. Open up Terminal (Applications -> Utilities -> Terminal). Type in the following command, replacing diskx with the Disk Identifier found earlier, and image.img with the name of the image file that you wish to read from. sudo dd if=image.img...
The latest version of Vine Server (3.0) only officially works with Mac OS X 10.4 or later, but there’s a way to make it work with Mac OS X 10.3 (Panther). After installing Vine normally, just delete the following directory. It contains the offending OS X 10.5 (Leopard) specific files: /Applications/Vine Server.app/Content/Resources/TigerBundle.bundle That’s it! You should now be able to launch Vine’s VNC Server from the Applications Folder, configure it, and remotely control to your Mac OS X 10.3 system over the...
I was able to download a copy of the elusive Kismac r62 – the last version of Kismac to run on Mac OS X 10.3 (Panther). Kismac r62 is now running happily on my G4 iBook with OS X 10.3.9. I’ve mirrored Kismac r62 here in case anyone wants to download it:...
Here’s how I prevented my iBook G4 notebook from going to sleep when the lid is closed. This worked with Mac OS X 10.3.9 (Panther). YMMV. If you’re running a OS X 10.4 (Tiger) or newer, you might want to check out InsomniaX instead. InsomniaX should work with Mac OS X 10.4 and later. Download and decompress Insomnia.kext.tbz. I wasn’t able to retrieve a copy of from the Insomnia project’s home page, but I did grab a working copy off of the Internet Archive, which I mirrored here. I also mirrored a copy of the source code in the Insomnia.src.tbz file. Open a command prompt, switch to the directory that you decompressed Insomnia.kext.tbz to, and execute the following commands: sudo chown root:wheel Insomnia.kext # set the module to be owned by root mv Insomnia.kext /System/Library/Extensions # move the module to the kernel extensions directory cd /System/Library/Extensions # change to the kernel extensions directory sudo kextload Insomnia.kext # load the module Test the module by closing your notebook’s lid. If your Mac doesn’t go to sleep, you’re in business. You can unload the Insomnia.kext module at any time by executing the following commands: cd /System/Library/Extensions # change to the kernel extensions directory sudo kextunload Insomnia.kext # unload the...