dglewis
2001-10-09 00:51:00
What goes on when the installer says it's 'optimizing system performance'? thx
marco
2001-11-29 18:41:00
very good question. this takes a very long time on my new 10.1.1/G4. very long means over 5 minutes ! what happen there ? show log says scanning disk for the most of the time.
[ November 29, 2001: Message edited by: Marco ]</p>
orange1
2001-11-29 23:37:00
i'm not sure, but my theory is:
update_prebinding
what i think that does is associate various system things so stuff like files will open in the right applications, but i really don't know.
and optimizing takes different amounts of times for different installs, too. system installs take forever, shtuff i get here doesn't normally take too long.
marco
2001-11-30 03:15:00
wow, i reinstalled with hfs+ instead of ufs and its a lot faster now! [img]images/icons/shocked.gif"%20border="0[/img]
i thought i had a unix system ..... i wonder why osx do so crappy with ufs?
I'm not sure what runs when one of the packages from this site is installed. Most packages from apple will have some interesting files in them;
<blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>
package.pkg/Contents/Resources/preflight
</pre>[/quote]
This is a script which runs before the package is installed.
<blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>
package.pkg/Contents/Resources/postflight
</pre>[/quote]
This runs after the pax archive is installed.
You can check these out to see what apples packages are doing. There are usually some other scripts in this directory which determine the osx version you are running and lots of other things.
You can run any of Apples installers manually like this:
<blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>
su
(enter root password)
cd package.pkg/Contents/Resources
cp package*gz /
cp postflight /
cd /
gunzip package*gz
pax -r -f package*pax
chmod 755 postflight
./postflight
</pre>[/quote]
This will let you install updates even if you have a beta osx version, are downgrading, etc.
[ January 03, 2002: Message edited by: apex ]</p>
orange1
2002-01-03 15:03:00
watching 'top' while the installer was optimizing. it sure was doing a lot of update_prebinding.
dglewis
2002-01-27 02:42:00
thx all for replying [img]images/icons/smile.gif"%20border="0[/img]