I just came across this great post from Digg.com. Being a tech, I can’t help but share ideas. Even if you don’t run Linux, this is one of those “to remember” type things.
Install Wine:
WINE (Wine Is Not an Emulator) is an application layer for Linux that interprets the Windows API and DLLs into native Linux commands. This allows for programs made for Windows to be run in Linux!
In order to run Office 2007, Wine 1.1.9 (or newer) is required. It is currently in a development release. If you don’t have it installed already (this is very likely), go ahead and type the following commands, which will set it up for you:wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add –
sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/intrepid.list -O /etc/apt/sources.list.d/winehq.list
sudo apt-get update
sudo apt-get install wine cabextract
NOTE: On non-Debian based systems, this will not work. Please refer to this site for installation instructions.You should now have an installation of Wine 1.1.9 installed on your system. To confirm the version of Wine installed, type the following:
wine –version
Install winetricks:
Winetricks is a small SH script which will go on the internet and automatically fetch and install Microsoft DLLs and Libraries into Wine with almost no hassle at all! To download it directly, type the following commands:wget http://www.kegel.com/wine/winetricks
chmod +x ./winetricks
Utilize winetricks:
This will setup all necessary libraries and DLLs that Office 2007 will need to run properly:./winetricks gdiplus riched20 riched30 msxml3 msxml4 msxml6 corefonts tahoma vb6run vcrun6 msi2
Please be patient while the downloads complete. This script is working hard and is saving hours of your time.
Insert Office 2007 Disk and Run Setup!
Now that we have all of the DLLs necessary to run the Installer, let us do so!wine pathToCD/setup.exe
From here on out, you should be good to go! The installer should run and install everything just as if it was a Windows system!
The above information was found at http://www.programmerfish.com/ If you have not already discovered the site, you need to check it out!