Files
.com/how-to-run-microsoft-office-2007-in-ubuntu-linux-810.html
Kenneth Reitz 8f3f30005c content update
2011-01-03 00:33:11 -05:00

227 lines
7.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<title>How to Run Microsoft Office 2007 in Ubuntu Linux 8.10</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="./theme/css/main.css" type="text/css" />
<link href="./feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Kenneth's log ATOM Feed" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" media="all" href="./css/ie.css"/>
<script src="./js/IE8.js" type="text/javascript"></script><![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="all" href="./css/ie6.css"/><![endif]-->
</head>
<body id="index" class="home">
<a href="http://github.com/kennethreitz/">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" />
</a>
<header id="banner" class="body">
<h1>
<a href=".">Kenneth's log </a>
</h1>
<nav><ul>
<li >
<a href="./category/Life.html">Life</a>
</li>
<li class="active">
<a href="./category/Code.html">Code</a>
</li>
<li >
<a href="./category/projects.html">projects</a>
</li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header> <h1 class="entry-title"><a href="how-to-run-microsoft-office-2007-in-ubuntu-linux-810.html"
rel="bookmark" title="Permalink to How to Run Microsoft Office 2007 in Ubuntu Linux 8.10">How to Run Microsoft Office 2007 in Ubuntu Linux 8.10</a></h1> </header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2009-03-16T19:12:00">
Mon 16 March 2009
</abbr>
<p>In <a href="./category/Code.html">Code</a>.
</p>
</footer><!-- /.post-info -->
<p><img alt="ms-office-2007" src="http://www.programmerfish.com/wp-content/uploads/2009/03/msoffice2007.gif" /> Wouldn't it be lovely to have a nice, clean
installation of Microsoft's Office 2007 Suite to run on your Ubuntu
Linux Distribution? For some people, this is the only thing that
truly holds them back from an all-Linux environment... But not
anymore! We have compiled a nice, concise set of instructions to
help guide you along. ### Install Wine:</p>
<p>WINE (<strong>W**ine **I**s **N**ot an **E**mulator) 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.</strong> It is currently in a development release. If you
dont have it installed already (this is very likely), go ahead and
type the following commands, which will set it up for you: wget -q
<a class="reference external" href="http://wine.budgetdedicated.com/apt/387EE263.gpg">http://wine.budgetdedicated.com/apt/387EE263.gpg</a> -O- | sudo
apt-key add -</p>
<pre class="literal-block">
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
</pre>
<p><strong>NOTE</strong>:
<em>On non-Debian based systems, this will not work. Please refer to</em>
<a class="reference external" href="http://www.winehq.org/site/download-deb">*this site*</a>
<em>for installation instructions.</em> 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</p>
<div class="section" id="install-winetricks">
<h2>Install winetricks:</h2>
<p><a class="reference external" href="http://www.kegel.com/wine/winetricks">Winetricks</a> 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 <a class="reference external" href="http://www.kegel.com/wine/winetricks">http://www.kegel.com/wine/winetricks</a></p>
<pre class="literal-block">
chmod +x ./winetricks
</pre>
</div>
<div class="section" id="utilize-winetricks">
<h2>Utilize winetricks:</h2>
<p>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</p>
<p>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!</p>
<p>Now that we have all of the DLLs necessary to run the Installer,
let us do so! wine pathToCD/setup.exe</p>
<p>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! If
you have any problems, ask, and we'll try to help you out as much
as possible! UPDATE: Lost your CD?
<a class="reference external" href="http://www.programmerfish.com/free-direct-download-microsoft-office-2007">Download the installer</a>
for free!</p>
</div>
</div><!-- /.entry-content -->
<div class="comments">
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = "how-to-run-microsoft-office-2007-in-ubuntu-linux-810.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://kennethreitz.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
</div>
</article>
</section>
<section id="extras" class="body">
<div class="blogroll">
<h2>Links</h2>
<ul>
<li><a href="http://github.com/kennethreitz">GitHub Repos</a></li>
<li><a href="http://flickr.com/kennethreitz">Photography (Flickr)</a></li>
<li><a href="http://twitter.com/kennethreitz">Latest Tweets</a></li>
<li><a href="http://www.linkedin.com/in/kennethreitz">R&eacute;sum&eacute;</a></li>
<li><a href="http://pick.im/kenneth-reitz">Design Portfolio</a></li>
<li><a href="http://laterstars.com/kennethreitz">Later Stars</a></li>
</ul>
</div><!-- /.blogroll -->
<div class="social">
<ul>
<li><a href="./feeds/all.atom.xml" rel="alternate">atom feed</a></li>
<li><a href="http://facebook.com/kennethreitz">Facebook</a></li>
</ul>
</div><!-- /.social -->
</section><!-- /#extras -->
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
&copy; 2011 Kenneth Reitz &amp; co. All Rights Reserved.
</address><!-- /#about -->
</footer><!-- /#contentinfo -->
<script type="text/javascript">
var disqus_shortname = 'kennethreitz';
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
<script type="text/javascript" charset="utf-8">
var disqus_developer = 1;
</script>
</body>
</html>