Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'RE: Long Install' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
RE: Long Install
Authored by: kerim on Jun 17, '02 10:29:07AM

I don't think it is a Fink Commander issue, but I did a "Funk update-all" command in it and it took two full days (36 hours) to complete. I remember it taking nearly as long when I did the same thing in the terminal. Actually, Fink Commander sped things up by its ability to "assume default" whenever a promt came up, thus keeping things moving along. But I don't understand why UNIX apps take so much longer to install than mac apps. Even a full system update for OSX doesn't take anywhere near as long as updating GNOME ...



[ Reply to This | # ]
RE: Long Install
Authored by: vasi on Jun 17, '02 10:50:01AM

Fink packages only take long to install if you compile them from source (ie: 'fink install packagename'). If you did that for Mac apps like Photoshop, that would take several days too--but you can't anyhow, since Photoshop and the rest aren't open source.

Happily, Fink also has 'binaries' for most packages, these are basically the Fink equivalent of just downloading normal Mac apps. There are two standard ways to use the binary distribution, apt-get and dselect. And of course you can just use the "Binary" menu in FinkCommander.

Dselect has something resembling a GUI, it lets you browse packages. Apt-get is good when you want just one package, and you know what it is already. Suppose you want to get a web browser--typical usage of apt-get is like this:

# Make sure you have the newest version of Fink
> fink selfupdate
> sudo apt-get update
# Make sure your packages are all the newest versions
> sudo apt-get dist-upgrade
> fink update-all
# Look for browsers
> fink apropos browser
dillo               Small simple web browser
links               Lynx-like text WWW browser with tables
lynx               Console based web browser
mozilla               Web browser and mail reader
# Install what you like
> sudo apt-get install dillo

And then it will just download, and install, it shouldn't take any longer than it would take you to download any other program.

Dave



[ Reply to This | # ]