Reputation: 174
I am in a bit of a pickle. I have a few Mac Minis that I am colocating at my ISP and only have shell access (via ssh for example) to administer the boxes. This is fine, but I just realized - after downloading some tar files for a couple of packages I needed - that I don't have the basic dev tools installed (such as make, for compiling source code). Is there a place I can download them from using curl?
Upvotes: 1
Views: 1076
Reputation: 101249
You should already have curl
(mine is at /usr/bin/curl
) which you can use to get the fink
or MacPorts
downloads. Then go from there.
I'm a fink guy myself. Fink will need the devtools DVD isntalled.
Upvotes: 0
Reputation: 21383
You can use fink to get yourself a copy of lynx (command line web browser) and then use that to download the OS X developer tools from Apple. Or you could just install a GNU tool chain from Fink iteslf.
Upvotes: 1
Reputation: 14195
install xcode off of the Mac OS install media (I think it's the second dvd or cd or whatever, but am unsure). That should do it
Upvotes: 2
Reputation: 994211
Install MacPorts. This will give you all the usual command line tools that you might need.
Upvotes: 1