# Calendar
November 2006
M T W T F S S
« Oct   Dec »
 12345
6789101112
13141516171819
20212223242526
27282930  
You are currently browsing the Stan’s List weblog archives for the day Friday, November 3rd, 2006.
Info End -->
You are currently browsing the Stan’s List weblog archives for the day Friday, November 3rd, 2006.

MacFixIt has front page coverage of this problem. The workaround is to downgrade to AirPort Base station firmware to version 5.5.1. To quote MacFixIt, “Emerging as the most commonly successful solution for this issue is a downgrade of AirPort Base station firmware to version 5.5.1. Reverting (or updating to) this edition of the firmware has eliminated dropouts for a surprisingly high number users. The current AirPort Extreme firmware version, with which many users are experiencing dropouts, is 5.7.”

Macmini has a detailed transformation of a G4 Cube to a Mac mini Cube running a Core Duo Intel CPU. What gets sacrificed is a Intel Mac mini. A very exciting project. More …

The problem is the included Vera fonts.

The offending fonts are named:

Vera.ttf VeraBd.ttf VeraSeBd.ttf
VeraBI.ttf VeraSe.ttf

You can move these to another folder and OpenOffice will open.

Those comfortable with the Terminal can easily accomplish this.

Open the /Applications/Utilties/Terminal application and execute the following two commands (you can avoid typing errors by copy and past the codes below). Note that you will be asked for your password as these commands require administrative privileges:

Code:
sudo mkdir -p /usr/X11R6/lib/X11/fonts/TTF.bad

Code:
sudo mv /usr/X11R6/lib/X11/fonts/TTF/Vera*.ttf /usr/X11R6/lib/X11/fonts/TTF.bad

The second code should be selected in one single string. There is a space between the ttf and the forward slash. More …