tomclegg.net |
Xcode remote installation Posted January 30, 2006 In order to compile and install unix software on your Mac OS X server, you need to install the Apple developer toolkit, "Xcode Tools". Download XcodeSet up an Apple Developer Connection account. Log in to http://connect.apple.com/. In the "downloads" box, click "developer tools". Locate a suitable version of Xcode and download it.
Mount the disk imageIf you do this from a reattached screen session, you'll get "unable to set up framework server: device not configured." Detach from your screen and start a new one, if you're using a reattached screen. cd /tmp mv -i xcode_tools_1.5_cd.dmg{.bin,} hdutil attach xcode_tools_1.5_cd.dmg mount Install the packagecd /Volumes/Xcode\ Tools installer -verbose -pkg XcodeTools.mpkg -target / The installer will install the tools, then optimize your system performance for a while. In my case, the installation took 11 minutes. I don't know what kind of server this is; I've never seen it. It seems to have a 40 GB hard disk and 384 MB of RAM. Unmount the imageumount /Volumes/Xcode\ Tools Use itNow you can compile C programs. Hurray! Thanksafp548 story about installing the toolsFascinating OS X 10.3.9 outputsh-2.05b# hdiutil attach xcode_tools_1.5_cd.dmg Initializing... Verifying... Checksumming DDM... DDM: verified CRC32 $C5ACB490 Checksumming Apple (Apple_partition_map : 0)... Apple (Apple_partition_map : 0): verified CRC32 $B04DBA08 Checksumming disk image (Apple_HFS : 1)... .............................................................................. disk image (Apple_HFS : 1): verified CRC32 $0EC5249D Checksumming (Apple_Free : 2)... (Apple_Free : 2): verified CRC32 $00000000 Verification completed... verified CRC32 $3788FF77 Attaching... Finishing... Finishing... /dev/disk3 Apple_partition_scheme /dev/disk3s1 Apple_partition_map /dev/disk3s2 Apple_HFS /Volumes/Xcode Tools |