<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux and Open Source Blog &#187; guides</title>
	<atom:link href="http://linewbie.com/category/guides/feed" rel="self" type="application/rss+xml" />
	<link>http://linewbie.com</link>
	<description>News, Reviews, Thoughts and Trends in Linux and Open Source World.</description>
	<lastBuildDate>Wed, 09 May 2012 15:44:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>How to Password Protect Redmine using mod_perl, Apache and Redmine.pm &#8211; HOWTO</title>
		<link>http://linewbie.com/2011/12/how-to-password-protect-redmine-with-apache-mod_perl-and-redmine-pm.html</link>
		<comments>http://linewbie.com/2011/12/how-to-password-protect-redmine-with-apache-mod_perl-and-redmine-pm.html#comments</comments>
		<pubDate>Sun, 18 Dec 2011 16:36:35 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/?p=527</guid>
		<description><![CDATA[Currently I was required to password-protect some sort of Redmine setting up. I’ve commonly used mod_auth_mysql intended for similar initiatives, but Redmine relies on a salted code format that’s incompatible having mod_auth_mysql. And so, I taken on Apache/Perl authentication, a &#8230; <a href="http://linewbie.com/2011/12/how-to-password-protect-redmine-with-apache-mod_perl-and-redmine-pm.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Currently I was required to password-protect some sort of Redmine setting up. I’ve commonly used mod_auth_mysql intended for similar initiatives, but Redmine relies on a salted code format that’s incompatible having mod_auth_mysql. And so, I taken on Apache/Perl authentication, a first in my opinion (When i rarely hint Perl) and could make the item work.<br />
<span id="more-527"></span></p>
<p>1.Install mod_perl, and the DBI, MySQL, and Digest (SHA1) Perl modules.</p>
<pre class="brush: bash; title: ; notranslate">$ apt-get install libapache-dbi-perl libapache2-mod-perl2 libdbd-</pre>
<p>2. Copy Redmine.pm to the relevant Perl location.</p>
<pre class="brush: bash; title: ; notranslate">$ cd /path/to/redmine
$ mkdir -p /usr/lib/perl5/Apache/Authn
$ cp extra/svn/Redmine.pm /usr/lib/perl5/Apache/Authn/</pre>
<p>3. Maybe I’m not using Redmine’s projects/members/permissions right, but I had to patch Redmine.pm to get it to function for me. I simplified the SQL statement used to auth a user. There’s no sense of permissions; it’s pretty much a yes/no for authed users.</p>
<pre class="brush: bash; title: ; notranslate">
--- Redmine.pm  2011-11-12 17:33:10.000000000 -0700
+++ Redmine.richardkmiller.pm   2011-11-12 17:37:26.000000000 -0700
@@ -148,16 +148,11 @@
   my ($self, $parms, $arg) = @_;
   $self-&gt;{RedmineDSN} = $arg;
   my $query = &quot;SELECT
-                 hashed_password, salt, auth_source_id, permissions
-              FROM members, projects, users, roles, member_roles
+                 hashed_password, salt
+              FROM users
               WHERE
-                projects.id=members.project_id
-                AND member_roles.member_id=members.id
-                AND users.id=members.user_id
-                AND roles.id=member_roles.role_id
-                AND users.status=1
-                AND login=?
-                AND identifier=? &quot;;
+                    users.status=1
+                AND login=?&quot;;
   $self-&gt;{RedmineQuery} = trim($query);
 }

@@ -336,11 +331,12 @@
   }
   my $query = $cfg-&gt;{RedmineQuery};
   my $sth = $dbh-&gt;prepare($query);
-  $sth-&gt;execute($redmine_user, $project_id);
+  $sth-&gt;execute($redmine_user);

   my $ret;
-  while (my ($hashed_password, $salt, $auth_source_id, $permissions) = $sth-&gt;fetchrow_array) {
-
+  while (my ($hashed_password, $salt) = $sth-&gt;fetchrow_array) {
+      my $permissions = &quot;:commit_access&quot;;
+      my $auth_source_id = 0;
       unless ($auth_source_id) {
                my $method = $r-&gt;method;
           my $salted_password = Digest::SHA1::sha1_hex($salt.$pass_digest);
</pre>
<p>4. Configure and restart Apache.</p>
<pre class="brush: bash; title: ; notranslate">

    ServerName example.com
    DocumentRoot &quot;/var/www/sites/example.com/public&quot;
    RailsEnv production

    PerlLoadModule Apache::Authn::Redmine

        AuthType basic
        AuthName &quot;Private Area&quot;
        Require valid-user
        PerlAccessHandler Apache::Authn::Redmine::access_handler
        PerlAuthenHandler Apache::Authn::Redmine::authen_handler
        RedmineDSN &quot;DBI:mysql:database=my_database;host=localhost&quot;
        RedmineDbUser my_db_user
        RedmineDbPass my_db_password
</pre>
<p>Also note that, I’m running Ubuntu 11.10 (oneiric), Apache 2.2, MySQL 5.1, and Redmine 1.2.2.</p>
<p>random friendly ad link:<br />
<a href="http://treadmilllube.jimdo.com/" title="read more">clicky</a><br />
<a href="http://treadmilllube.orbs.com/" title="read more">clicky</a><br />
<a href="http://treadmilllube.webs.com/" title="read more">clicky</a><br />
<a href="http://treadmilllube.posterous.com/treadmill-lube" title="read more">clicky</a><br />
<a href="http://treadmilllube.weebly.com/" title="read more">clicky</a><br />
<a href="http://treadmilllube.yolasite.com/" title="read more">clicky</a>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2011/12/how-to-password-protect-redmine-with-apache-mod_perl-and-redmine-pm.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Dual Boot Windows 8 and Linux Mint on the Same PC &#8211; Howto</title>
		<link>http://linewbie.com/2011/12/how-to-dual-boot-windows-8-and-linux-mint-on-the-same-pc-howto.html</link>
		<comments>http://linewbie.com/2011/12/how-to-dual-boot-windows-8-and-linux-mint-on-the-same-pc-howto.html#comments</comments>
		<pubDate>Sat, 17 Dec 2011 17:17:51 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/?p=525</guid>
		<description><![CDATA[In the event you’re an serious operating process geek, you may need to test available both Microsoft windows 8 in addition to Linux Mint. Here’s learn to get the very best of both equally by dual-booting Linux Mint with all &#8230; <a href="http://linewbie.com/2011/12/how-to-dual-boot-windows-8-and-linux-mint-on-the-same-pc-howto.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In the event you’re an serious operating process geek, you may need to test available both Microsoft windows 8 in addition to Linux Mint. Here’s learn to get the very best of both equally by dual-booting Linux Mint with all your Windows 8 setting up.</p>
<p>Before most of us start there may be a few things that you&#8217;ll need:</p>
<p>10GB connected with free space with your drive<br />
This Linux Mint DISC, from in this article (x86) or maybe here (x64), burnt into a DVD.<br />
About half-hour of time to yourself<br />
<span id="more-525"></span><br />
Note: There are a variety of ways to make this happen, and since there is no just one correct strategy to dual booting Microsoft windows and Linux, we&#8217;re going to take simplest way to help those fresh to Linux, whilst getting the full experience of installing some sort of Linux OS IN THIS HANDSET.</p>
<p>So why don&#8217;t we get started–since i am dual-booting Mint together your witout a doubt existing Microsoft windows 8 setting up, the first thing we should do is usually boot in place Windows in addition to create an empty partition with the Mint setting up. The simplest way to make this happen is to help press this Windows + 3rd r key combo and form diskmgmt. msc into your run pack and attack enter, and you could try to find Disk Management from the Start Menu likewise.</p>
<p>When this Disk Managing MMC unit opens in place right simply click your get containing Microsoft windows 8 and select Shrink Volume… on the context food list.</p>
<p>You will probably now ought to enter the quantity of megabytes you wish to shrink this partition by means of, we recommend at least 10GB. Remember there is 1024MB within a gigabyte, so multiply the volume of gigabytes that you&#8217;d like your completely new partition for being by 1024.</p>
<p>Now embed your Mint DISC and boot your computer or laptop from this DVD get, this will probably normally call for a pushing of any key for the POST screen–every motherboard takes a different approach but it will eventually normally possibly be F11 or maybe F12.</p>
<p>This DVD really should automatically footwear into it is Live manner, however when you bump an essential and usually are prompted simply want to start the item.</p>
<p>Once booted, you&#8217;ll be ready the setting up by double simply clicking on the Mount Linux Mint shortcut within the desktop.</p>
<p>You can certainly click go on until you&#8217;re free to the setting up type portion, here you have got to change radio stations button towards something more option.</p>
<p>Upon having clicked within the continue button you might now should pick the place to mount Mint, scroll down soon you see some sort of partition termed “free space”.</p>
<p>Double simply click it to bring up this format food list, here accept each of the defaults except the bracket point, where it is best to enter 1 forward decrease, then press ok.</p>
<p>It&#8217;s simple to click within the install at this point button.</p>
<p>A comfortable touch towards installation practice is so it starts asking only a few configuration settings while OS is usually busy the installation of.</p>
<p>You must reboot your computer or laptop when this installation is finished, as you will observe we are now able to easily opt for our OS IN THIS HANDSET at start-up.</p>
<p>Note: Grub picks up our Microsoft windows 8 setting up, the entry in the bottoom, as Microsoft windows Recovery Setting, this will be your Microsoft windows 8 installation along with the display name can potentially be modified by picking out it on the menu in addition to hitting this “e” critical, this is for state-of-the-art users.</p>
<p>Ones default OS IN THIS HANDSET will at this point be Linux Mint, but you have the number of switching here we are at Windows 8 on the Grub footwear menu whenever they want.</p>
<p>friendly ads<br />
<a href="http://en.q-bpm.org/mediawiki/index.php?title=User:EstevonLatton3153">friendly link</a><br />
<a href="http://www.antepenultimate.org/mediawiki/index.php?title=User:DoloresPlayfair2724">other</a><br />
<a href="http://www.homeworkriches.com/wikka/MillicenteByfield438">clicky</a><br />
<a href="http://kalevan.moonlancer.net/index.php?title=User:CaseBickersteth3437">other</a><br />
<a href="http://computing.ed-coll.ac.uk/wikka/DigbyCusick3468">read more</a><br />
<a href="http://www.weiss-ro.net/mediawiki/index.php?title=User:ZanetaLightbody2087">friendly link</a><br />
<a href="http://www.ajedrezplus.net/mediawiki/index.php?title=User:OtaktayHayman1125">click here</a><br />
<a href="http://www.t55.net/wiki/index.php?title=User:AdalizWempel1291">other</a><br />
<a href="http://wiki.darkwave.us/index.php?title=User:DaceErskine1847">click here</a><br />
<a href="http://cyrilchateau.fr/wikka/JessicaChanning1560">friendly link</a><br />
<a href="http://nourishinternational.org/wiki/index.php?title=User:ArkwrightDale2966">read more</a><br />
<a href="http://armoursedge.com/medievalcombatwiki/LouieTrue802">clicky</a><br />
<a href="http://awos.wilcox-tech.com/wiki/index.php?title=User:AlfieOllendorff1778">click here</a><br />
<a href="http://www.fonboard.nl/w/index.php?title=User:WinemaCadogan1868">other</a><br />
<a href="http://rondepping.net/mediawiki/index.php?title=User:CecilieGillman2764">click here</a><br />
<a href="http://encyclopedia.kristianthalai.com/index.php?title=User:DulcineaBanvard3054">read more</a><br />
<a href="http://misawikien.michaelbrabec.cz/index.php/index.php?title=User:MaskaMenai3798">other</a><br />
<a href="http://www.elextion.net/mediawiki/index.php?title=User:EnapayMather3789">clicky</a><br />
<a href="http://www.jorgebarrientos.net/mediawiki/index.php?title=User:JenayaSeaforth1250">friendly link</a><br />
<a href="http://www.lynnscullyllc.com/wiki/NolenePancost2763">read more</a><br />
<a href="http://wiki.dyle.org/index.php?title=User:AshiaDelamater2301">read more</a><br />
<a href="http://net.prenticew.com/eweek10/LoreeneTwing3795">click here</a><br />
<a href="http://global-perspectives.org/index.php?title=User:EileneWadsworth787">click here</a><br />
<a href="http://thecostumersmanifesto.com/index.php?title=User:IsrealDonovan3467">read more</a><br />
<a href="http://www.twistwiki.com/index.php?title=User:SkenaHungerford964">clicky</a><br />
<a href="http://jagger.cc/wiki/DollySpoor45">other</a><br />
<a href="http://medical.wikijutsu.info/RyleyHurst1153">clicky</a><br />
<a href="http://evlgaming.com/wiki/index.php?title=User:GiselaRynders2576">clicky</a><br />
<a href="http://wiki.ifsc.edu.br/mediawiki/index.php?title=User:SelinaThomlin3526">other</a><br />
<a href="http://www.azrul.com/wiki/index.php?title=User:MikaelChanning2300">friendly link</a><br />
<a href="http://musicalskates.com/mediawiki/index.php?title=User:BradigBain2545">other</a><br />
<a href="http://www.legend-clan.net/wiki/index.php?title=User:KallyButler40">other</a><br />
<a href="http://uncoveryoureyes.com/mediawiki/index.php?title=User:HassanFrank898">click here</a><br />
<a href="http://fcrl.mae.wvu.edu/mediawiki/index.php?title=User:RawleyPierpont2794">other</a><br />
<a href="http://palaungic.org/mediawiki/index.php?title=User:BizahalaniEnnis1900">clicky</a><br />
<a href="http://lwig.tk/MikhailPendleton3756">other</a><br />
<a href="http://www.williamlang.net/wiki/index.php?title=User:SiobhanBrisban2164">read more</a><br />
<a href="http://ecoschools.terravertis.com/index.php?title=User:LoughlinAppleby1330">clicky</a><br />
<a href="http://www.allnewsislocal.com/wiki/index.php?title=User:GarrityClara252">friendly link</a></p>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2011/12/how-to-dual-boot-windows-8-and-linux-mint-on-the-same-pc-howto.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Introduction to Linux Operating System</title>
		<link>http://linewbie.com/2008/03/an-introduction-to-linux-operating-system.html</link>
		<comments>http://linewbie.com/2008/03/an-introduction-to-linux-operating-system.html#comments</comments>
		<pubDate>Mon, 31 Mar 2008 06:20:41 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[general topics]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/2008/03/an-introduction-to-linux-operating-system.html</guid>
		<description><![CDATA[An easy to read, accurate and in plain language guide to the linux operating system. Preface Some of my readers today will be aware of a beautiful operating system that goes by the name of Linux. For those who are &#8230; <a href="http://linewbie.com/2008/03/an-introduction-to-linux-operating-system.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An easy to read, accurate and in plain language guide to the linux operating system.</p>
<p align="center"><img src="http://techwarelabs.com/articles/software/linux-introduction/images/linux.jpg" alt="What is Linux" height="122" width="102" /></p>
<h3 align="left">Preface</h3>
<p>Some of my readers today will be aware of a beautiful operating system that goes by the name of Linux. For those who are not already familiar, here is a brief introduction: Linux is a free open-source alternative to Windows and Macintosh. Based off of Unix, Linus Torvalds laid the framework for the kernel many years ago and then made the source code open to all. He still works on the kernel today, but he&#8217;s not alone; millions of programmers around the world work to improve Linux with their free time. They&#8217;ve worked hard to bring Linux to maturity, and as of the past couple years, it has reached a mature stage where the average computer user is more than capable of using it. In other words, you no longer need to know how a computer works or how to program in order for Linux to be useful to you.</p>
<p>So why am I bringing up this topic? Quite frankly, there aren&#8217;t enough Linux users accessing TechwareLabs, and I believe this needs to change.</p>
<p><span id="more-465"></span></p>
<p>Whether it&#8217;s because you&#8217;ve never heard of Linux, have an interest, or tried it years ago when it was still young and was disappointed, one thing is certain: you&#8217;re missing out. I&#8217;ll be elaborating further into Linux in future articles, but for now, here is a nice introduction.</p>
<h3 align="left">What do you mean by open-source?</h3>
<p>The source code is freely available on the internet per the GPL license. You are more than welcome to view the code, edit it, and republish a new product (assuming you know a thing or two about programming). The only catch is that you have to release your product under the very same GPL license.</p>
<p>This approach to software truly throws the concept of &#8220;proprietary&#8221; out the window, and is no doubt confusing to anybody who is business-minded. It&#8217;s a foreign concept for many as to why one would develop a product and not claim intellectual property rights. The Linux community, in general (though there are exceptions), does not seek to gain profit. Rather, they put their time into Linux for pride and the occasional &#8220;thank you.&#8221;</p>
<h3 align="left">There are companies that sell Linux, though.</h3>
<p>This is partially true. They&#8217;re still licensed under the GPL, which means they are required to release the source code to the general public. What companies such as Red Hat and Novell are doing is not selling the operating system, but rather they are selling support, primarily for servers. Even so, you can use their products for free. Red Hat Enterprise Linux has fees attached to it, but Red Hat sponsors an open-source community around Fedora, which is the free alternative, developed by programmers in their spare time. Similarly for Novell SUSE Linux Enterprise, there is a free alternative in openSUSE.</p>
<h3 align="left">Windows works fine. Why should I use something else?</h3>
<p>Here, we get to the heart of the matter. Why switch, you ask? What&#8217;s the point? Simply put, Linux is faster, more stable and above all, easier to use. The speed is due to higher efficiency in storing/retrieving information. The issue of stability isn&#8217;t even questioned by [knowledgeable] die-hard Windows fans. Ultimately, the most controversial claim I&#8217;ve made is that it&#8217;s easier to use.</p>
<p>This is where the argument rages on within the desktop market. There are many long-time Windows users who try Linux, and are scared off, upon which they claim that Linux is hard to use. The fact is, Linux is different, but I would argue that this is a good thing. There is definitely a learning curve, as there always is when you try something new, but the more you just play around with Linux, the more you&#8217;ll find it is simply better.</p>
<h3 align="left">How is it better? What makes it easier?</h3>
<p>Everything is better organized. For starters, you know that little program on Windows, Add/Remove Programs? Raise your hand if you&#8217;ve ever actually &#8220;added&#8221; a program using it.</p>
<p>I see a few hands from people who have via a NT system or something similar, but other than that, it is unlikely you&#8217;ve used Add/Remove for anything other than &#8220;remove&#8221; (though Vista does allow for the user to download programs directly from Microsoft, a feature suspiciously appearing long after Linux started doing the exact same thing). In Linux, this little program is called the &#8220;package manager&#8221;, and this is where you both add AND remove your programs. Everything that&#8217;s currently installed, as well as everything you&#8217;re able to install from the supplied servers appears in an easy-to-use catalog. For the most part, everything you need is right there in one place. Want to install an office suite? How about an IM program? Or how about a game? Just go to the respective section and choose the program you want. Check the boxes for everything you want to change (install/uninstall) and push the appropriate button to update your system (specifics will differ depending on the package manager used by the distribution).
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2008/03/an-introduction-to-linux-operating-system.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install VMware Server On OpenSUSE Linux 10.3</title>
		<link>http://linewbie.com/2008/03/how-to-install-vmware-server-on-opensuse-linux-103.html</link>
		<comments>http://linewbie.com/2008/03/how-to-install-vmware-server-on-opensuse-linux-103.html#comments</comments>
		<pubDate>Thu, 27 Mar 2008 12:55:51 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[applications/software]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/2008/03/how-to-install-vmware-server-on-opensuse-linux-103.html</guid>
		<description><![CDATA[bold writing are command that you need to enter red letting are command that you need to issue as root click on Computer &#62; More Applications &#62; YaST Put in root password for YaST Scroll down until you see Software &#8230; <a href="http://linewbie.com/2008/03/how-to-install-vmware-server-on-opensuse-linux-103.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>bold writing are command that you need to enter</strong></p>
<p style="margin-bottom: 0in"><font color="#ff0000">red letting are command that you need to issue as root</font></p>
<ol>
<li>
<p style="margin-bottom: 0in">click on Computer &gt; More 	Applications &gt; YaST</p>
</li>
<li>
<p style="margin-bottom: 0in">Put in root password for YaST</p>
</li>
<li>
<p style="margin-bottom: 0in">Scroll down until you see Software 	Management and single click on it</p>
</li>
<li>
<p style="margin-bottom: 0in">Check for the following software. 	If you don&#8217;t have it installed, install it</p>
<ol>
<li>
<p style="margin-bottom: 0in">kernel-source</p>
</li>
<li>
<p style="margin-bottom: 0in">gcc</p>
</li>
<li>
<p style="margin-bottom: 0in">gcc-c++</p>
</li>
<li>
<p style="margin-bottom: 0in">make (This is most likely already 		installed, but just to double check)</p>
</li>
</ol>
</li>
<p><span id="more-464"></span></p>
<li>
<p style="margin-bottom: 0in">Once you have installed that 	software, lets head over to the command line. Right click on the 	desktop and select â€œopen terminalâ€</p>
</li>
<li>
<p style="margin-bottom: 0in">Once you get into the terminal, 	you want to log in as a super user or root. You can do this by using 	the su command</p>
<table border="1" bordercolor="#000000" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td valign="top" width="100%"><a href="mailto:clmowers@linux-box"><font color="#000000"><span>clmowers@linux-box</span></font></a><span>:~&gt;</span><strong> 				SU</strong>Password:<font color="#ff0000"><strong>linux-box:/home/clmowers #</strong></font></td>
</tr>
</table>
</li>
<li>
<p style="margin-bottom: 0in">Next you want 	to run the following command. This will check for the needed 	software and it will also show you the kernel modules that are 	installed. You <strong>MUST </strong>have the same kernel numbers though out, 	or you will have issues later down the road</p>
<table border="1" bordercolor="#000000" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td valign="top" width="100%">rpm -qa kernel* gcc* make</td>
</tr>
</table>
<p style="margin-bottom: 0in">It will look like 	this when the command is run</p>
<table border="1" bordercolor="#000000" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td valign="top" width="100%"><font color="#ff0000">linux-box:/home/clmowers #</font> <font color="#000000"><strong>rpm 				-qa kernel* gcc* make </strong></font>gcc-c++-4.2-24make-3.81-66kernel-source-<font color="#280099"><strong>2.6.22.17-0.1 </strong></font>gcc42-c++-4.2.1_20070724-17</p>
<p>kernel-default-<font color="#280099"><strong>2.6.22.17-0.1 </strong></font></p>
<p>gcc-4.2-24</p>
<p>gcc42-4.2.1_20070724-17</td>
</tr>
</table>
<p style="margin-bottom: 0in">Notice that both 	of the kernels are the same. If these numbers are diffent then you 	need to run the online updates to get the lastest ones and to make 	sure everything matches. ***Just remember that these numbers change, 	This was the latest kernel when I wrote this, yours might be 	different from mine.</p>
</li>
<li>
<p style="margin-bottom: 0in">OK, lets move 	on. Next we want to change the directory to /usr/scr/linux. We can 	do that by this command</p>
<table border="1" bordercolor="#000000" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td valign="top" width="100%"><font color="#ff0000">linux-box:/home/clmowers #</font> <strong>cd 				/usr/src/linux</strong></td>
</tr>
</table>
</li>
<li>
<p style="margin-bottom: 0in">next we want 	to issue these commands. Don&#8217;t worry, we are almost done in the 	command line for the time being.</p>
<table border="1" bordercolor="#000000" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td valign="top" width="100%"><font color="#ff0000">linux-box:/home/clmowers # </font><font color="#000000"> 				</font><font color="#000000"><strong>make mrproper; make cloneconfig; 				make modules_prepare</strong></font><font color="#000000">You will notice that it is done when you 				get back to this line</font><font color="#ff0000">linux-box:/home/clmowers #</font></td>
</tr>
</table>
</li>
<li>
<p style="margin-bottom: 0in"> YEA!!! The 	moment we all have been waiting for, installing vmware server. But 	we are not done yet. Once vmware server is installed we will need to 	configure it. Then you can start adding all the VM that your heart 	desires.</p>
</li>
<li>
<p style="margin-bottom: 0in">Next you want 	to go to where you have downloaded the file and right click and 	select install software</p>
</li>
<li>
<p style="margin-bottom: 0in">Once the 	windows closes we are ready to configure it. I know I know, but we 	are almost done. Just 2 more minutes.</p>
</li>
<li>
<p style="margin-bottom: 0in">open up a new 	terminal window (or open the one you already had) and issue this 	command</p>
<table border="1" bordercolor="#000000" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td valign="top" width="100%"><font color="#ff0000">linux-box:/home/clmowers # </font><font color="#000000"> 				</font><font color="#000000"><strong>cd /usr/bin</strong></font><font color="#ff0000">linux-box:/usr/bin 				#</font></td>
</tr>
</table>
</li>
<li>
<p style="margin-bottom: 0in">This will 	bring you to the /usr/bin directory. Next we want to run the pl 	script the vmware was so kind of to provide us. This will let us 	configure the server</p>
<table border="1" bordercolor="#000000" cellpadding="4" cellspacing="0" width="100%">
<tr>
<td valign="top" width="100%"><font color="#ff0000">linux-box:/usr/bin 				# </font><font color="#000000"> </font><font color="#000000"><strong>vmware-config.pl</strong></font></td>
</tr>
</table>
</li>
<li>
<p style="margin-bottom: 0in">We will start 	out by reading the EULA. Hit space or enter to go through the 	agreement. Once you are done reading hit Q and then type yes. Now 	what I did was just accept all the defaults. This will give you a 	very good install of vmware. My only suggestion would be to create a 	folder under your /home/username/ directory called vms. When you get 	to the question asking you where you want to have your virutual 	machine saved, type in that location.</p>
</li>
<li>
<p style="margin-bottom: 0in">You will be 	ask for your license key, so make sure that you have one. Type it in 	and press eneter.</p>
</li>
</ol>
<p style="margin-bottom: 0in">&nbsp;</p>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2008/03/how-to-install-vmware-server-on-opensuse-linux-103.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: Create a Linux Box for Your Mom (50+ Resources)</title>
		<link>http://linewbie.com/2008/03/howto-create-a-linux-box-for-your-mom-50-resources.html</link>
		<comments>http://linewbie.com/2008/03/howto-create-a-linux-box-for-your-mom-50-resources.html#comments</comments>
		<pubDate>Fri, 07 Mar 2008 14:16:58 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[guides]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[linux resources]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/2008/03/howto-create-a-linux-box-for-your-mom-50-resources.html</guid>
		<description><![CDATA[Here is a great article from virtualhosting.com discussing some good resources for &#8220;getting your mom on linux&#8221;. Great idea! By Jessica Hupp For most computer literate children, a request from mom to get her set up on â€œthis web thingâ€ &#8230; <a href="http://linewbie.com/2008/03/howto-create-a-linux-box-for-your-mom-50-resources.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is a great article from <a href="http://www.virtualhosting.com/">virtualhosting.com</a> discussing some good resources for &#8220;getting your mom on linux&#8221;. Great idea!</p>
<p><strong>By Jessica Hupp</strong></p>
<p>For most computer literate children, a request from mom to get her set up on â€œthis web thingâ€ is met with panic and a feeling of drudgery. Are you about to expose your sweet mother to spam, phishing, viruses, or worse? Or perhaps more frightening, sign your life away as a 24/7 tech support center? Perhaps, but thereâ€™s a better way. By setting your mom up on a Linux machine, you can give her a safe, lean computing experience that will let her do all of the things she wants to do without giving you a nervous breakdown. Here, weâ€™ve compiled over 50 of the best resources to help you get your mom on Linux without a whole lot of trouble.</p>
<p><strong>Systems &amp; Environments</strong></p>
<p>With these systems and environments, you can get your mom set up with low maintenance and friendly interfaces.</p>
<ol>
<li><strong><a href="http://www.mepis.org/">SimplyMEPIS</a></strong>: SimplyMEPIS is low-maintenance and great for Linux beginners.</li>
<li><strong><a href="http://www.linspire.com/">Linspire</a></strong>: Linspire is the â€œWorldâ€™s Easiest Desktop Linux,â€ with a familiar look and feel for Windows users.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Mandriva_Linux">Mandriva</a></strong>: Mandriva Linux was specifically designed to offer ease of use for new users.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Ubuntu_%28Linux_distribution%29">Ubuntu</a></strong>: One of the most popular Linux distributions, Ubuntu is stable and easy to use.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Kde">KDE</a></strong>: The K Desktop Environment is easy to use, and offers basic desktop functions.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Ximian">Ximian Desktop</a></strong>: Ximian offers a simple layout, with large icons that are great for elderly users.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Lycoris_%28company%29">Lycoris</a></strong>: This distribution looks a lot like windows, and offers great ease of use.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Suse">SuSE</a></strong>: With SuSE, youâ€™ll got lots of popular open source software like OpenOffice, Kaffeine, and more.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/GNOME">GNOME</a></strong>: In this desktop environment, youâ€™ll find an extremely usable GUI.</li>
</ol>
<p><span id="more-463"></span></p>
<p><strong>Tools &amp; Applications</strong></p>
<p>Put these tools to work to give your mom the functionality she wants while still keeping things safe and simple.</p>
<ol start="10">
<li><strong><a href="http://en.wikipedia.org/wiki/Fluxbox">Fluxbox</a></strong>: This X window manager makes it easy to customize the view of your momâ€™s machine.</li>
<li><strong><a href="http://linux.about.com/cs/linux101/g/rfbdrake.htm">Rfbdrake</a></strong>: Set up rfbdrake to create a pathway for remote support.</li>
<li><strong><a href="http://www.tatanka.com.br/">IEs4Linux</a></strong>: With this handy tool, you can make MSN groups and other Internet Explorer applications play properly for your game-addicted mom.</li>
<li><strong><a href="http://www.icewm.org/">IceWM</a></strong>: This window managerâ€™s goal is to stay out of the userâ€™s way while offering speed and simplicity.</li>
<li><strong><a href="http://www.openantivirus.org/">OpenAntiVirus</a></strong>: Although a Linux machine isnâ€™t likely to run into virus problems, this antivirus program is better safe than sorry.</li>
<li><strong><a href="http://www.winehq.org/">Wine</a></strong>: Wine makes it easy to run Windows software and applications on your Linux box.</li>
<li><strong><a href="http://www.fs-security.com/">Firestarter</a></strong>: For an easy, simple firewall, consider Firestarter.</li>
<li><strong><a href="http://phpgacl.sourceforge.net/">phpGACL</a></strong>: Keep your mom safe by implementing this access control list for applications.</li>
<li><strong><a href="http://www.codeweavers.com/">CrossOver Office</a></strong>: With CrossOver, you can run lots of Windows-based applications.</li>
<li><strong><a href="http://cnr.com/index.seam">CNR</a></strong>: This tool makes it easy for your mom to install applications, even if sheâ€™s clueless about putting things on her computer.</li>
<li><strong><a href="http://www.kde-look.org/content/show.php?content=8341">KDE Crystal</a></strong>: KDE Crystal offers an icon set with recognizable images, which is great for remote support so you can tell your mom exactly what to press.</li>
<li><strong><a href="http://www.simonzone.com/software/guarddog/#introduction">Guarddog</a></strong>: Guarddog is an ideal firewall for novices because it offers a goal-oriented, non-technical GUI.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Blackbox">Blackbox</a></strong>: Blackbox offers a clean, light environment for a Linux system.</li>
<li><strong><a href="http://www.ipcop.org/">IPCop</a></strong>: Create a more secure home network with this simple firewall designed for novice users.</li>
<li><strong><a href="http://www.realvnc.com/products/free/4.1/winvnc.html">vncserver</a></strong>: Utilize vncserver to run remote support on your momâ€™s Linux machine.</li>
<li><strong><a href="http://www.openoffice.org/">OpenOffice</a></strong>: With OpenOffice, your mom will be able to do all of the word processing she wants.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Evolution_%28software%29">Evolution</a></strong>: This personal information manager offers email, addresses, tasks, and more in an interface much like Microsoft Outlook.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Kmail">KMail</a></strong>: Set your mom up on KMail for email with excellent spam filtering, cryptographic support, and more.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Kate_%28text_editor%29">Kate</a></strong>: With this lightweight editor, your mom can do simple word processing with automatic backup.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Gnomemeeting">Ekiga</a></strong> With Ekiga, formerly Gnomemeeting, your mom can video chat with you.</li>
<li><strong><a href="http://www.firetrust.com/en/products/mailwasher-pro">MailWasher Pro</a></strong>: With this program, you can make sure that spam email will never hit your momâ€™s inbox.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Abiword">Abiword</a></strong>: Give your mom simple word processing with AbiWord.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Kopete">Kopete</a></strong>: Use Kopete to get your mom set up on chat programs like AIM, ICQ, and IRC.</li>
<li><strong><a href="http://blogs.adobe.com/acroread/2007/09/adobe_reader_811_on_linux_and_1.html">Adobe Reader</a></strong>: Put Adobe Reader for Linux on your momâ€™s computer so she can enjoy PDFs.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Gaim">Pidgin</a></strong>: Pidgin, formerly known as Gaim, makes it easy for your mom to log into a number of different messaging systems at once.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Konqueror">Konqueror</a></strong>: With Konqueror, your mom can browse the web safely.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Mozilla_Thunderbird">Thunderbird</a></strong>: Use Thunderbird to offer your mom a clean email interface.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/Firefox">Firefox</a></strong>: Get your mom set up on the wildly popular Firefox for safe and easy web browsing.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/GIMP">GIMP</a></strong>: Give your mom GIMP for Photoshop functionality.</li>
<li><strong><a href="http://en.wikipedia.org/wiki/GIMP">No-Script</a></strong>: Use No-Script to make your momâ€™s Firefox browsing safe from harmful Javascript and Flash.</li>
</ol>
<p><strong>Guides &amp; Articles</strong></p>
<p>For even more help, check out these guides and articles that will walk you through creating a Linux box for your mom.</p>
<ol start="40">
<li><strong><a href="http://www.knightwise.com/content/view/154/9/">Ubuntu for your grandmother</a></strong>: One helpful grandchild walks his grandmother through creating a Ubuntu laptop in this article.</li>
<li><strong><a href="http://www.reallylinux.com/docs/basicconfig.shtml">Post Installation Configuration Basic Help</a></strong>: Get help with basic hardware and network configuration here.</li>
<li><strong><a href="http://www.linux.com/articles/31189">Is Linux ready for mom?</a></strong>: This article discusses some of the trials and advantages of Linux for novice users.</li>
<li><strong><a href="http://www.reallylinux.com/docs/windowstolinux.shtml">Windows to Linux: A Beginnerâ€™s Guide</a></strong>: Let your mom check out this article to get familiarized with Linux when coming from a Windows environment.</li>
<li><strong><a href="http://www.reallylinux.com/docs/linuxvirustop10.shtml">Top 10 Ways to Protect Your Linux Home System</a></strong>: Follow this guide to keep your momâ€™s computer safe.</li>
<li><strong><a href="http://www.linux.com/articles/21661">Setting up Linux for Mom and Dad</a></strong>: See how one person set up a parent version of Mandrake Linux in this article.</li>
<li><strong><a href="http://www.iredale.net/articles/desktop-adapted-dad-1.html">Desktop Adapted for Dad (DAD)</a></strong>: This writer gave his father a computer with carefully installed and configured software.</li>
<li><strong><a href="http://www.geek.com/moving-a-beginner-to-linux/">Moving a Beginner to Linux</a></strong>: Learn how to make the switch with this article.</li>
<li><strong><a href="http://whdb.com/2008/the-top-50-proprietary-programs-that-drive-you-crazy-and-their-open-source-alternatives/">The Top 50 Proprietary Programs that Drive You Crazy-and Their Open Source Alternatives</a></strong>: In this resource, youâ€™re sure to find lots of programs that will help your mom convert.</li>
<li><strong><a href="http://forums.fedoraforum.org/archive/index.php/t-30375.html">Linux distro for mom?</a></strong>: In this thread, youâ€™ll find lots of excellent advice for creating a Linux setup for a computer illiterate mom.</li>
<li><strong><a href="http://www.reallylinux.com/docs/kdeintro.shtml">Beginnerâ€™s Introduction to the KDE Desktop</a></strong>: This guide offers a look at KDE for non-techies.</li>
<li><strong><a href="http://desktoplinux.com/articles/AT8221013471.html">A Senior Citizenâ€™s Introduction to Linux</a></strong>: See how one person set up a simple Linux system for an elderly woman in this article.</li>
<li><strong><a href="http://forevergeek.com/linux/7_reasons_you_should_switch_grandma_to_linux.php">7 Reasons you should switch Grandma to Linux</a></strong>: This article touts security, stability, and more for Linux.</li>
</ol>
<p>from <a href="http://www.virtualhosting.com/blog/2008/how-to-create-a-linux-box-for-your-mom-50-resources/">virtualhosting.com</a>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2008/03/howto-create-a-linux-box-for-your-mom-50-resources.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reduce Apache Load With lighttpd On Debian Etch Linux</title>
		<link>http://linewbie.com/2008/02/reduce-apache-load-with-lighttpd-on-debian-etch-linux.html</link>
		<comments>http://linewbie.com/2008/02/reduce-apache-load-with-lighttpd-on-debian-etch-linux.html#comments</comments>
		<pubDate>Thu, 14 Feb 2008 05:16:43 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[applications/software]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[etch]]></category>
		<category><![CDATA[Lighttpd]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/2008/02/reduce-apache-load-with-lighttpd-on-debian-etch-linux.html</guid>
		<description><![CDATA[Lighttpd, sometimes pronounced &#8220;Lighty&#8221;, is a lightweight HTTP server that can help alleviate Apache&#8217;s load by serving static content. Since Lighttpd uses less resources per request than Apache, it generally serves most static content faster than Apache. This tutorial shows &#8230; <a href="http://linewbie.com/2008/02/reduce-apache-load-with-lighttpd-on-debian-etch-linux.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Lighttpd, sometimes pronounced &#8220;Lighty&#8221;, is a lightweight HTTP server that    can help alleviate Apache&#8217;s load by serving static content. Since Lighttpd uses    less resources per request than Apache, it generally serves most static content    faster than Apache. This tutorial shows how to install Lighttpd behind Apache    via ApacheÂ´s proxy module.</p>
<p>No guarantee that this will work for you!</p>
<h3>1 Requirements</h3>
<p>To install such a system you will need the following:</p>
<ul>
<li><a href="http://www.howtoforge.com/perfect_setup_debian_etch" target="_blank">The Perfect Setup &#8211; Debian Etch (Debian 4.0)</a></li>
<li><a href="http://www.howtoforge.com/lighttpd_mysql_php_debian_etch" target="_blank">Installing Lighttpd With PHP5 And MySQL Support On Debian Etch</a></li>
</ul>
<h3>2 Setting up lighttpd</h3>
<p>Once Lighttpd is installed, you&#8217;ll have to modify the configuration file to use it</p>
<p class="command">vi /etc/lighttpd/lighttpd.conf</p>
<pre>#bind to port (Default: 80)
server.port = 81

<span id="more-460"></span>

# bind to localhost (recommended for proxy behind Apache, otherwise comment this out for all)
server.bind = "localhost"</pre>
<p>This is not a full listing of the configuration file, but rather a highlight of  the most important parts. Notice that we&#8217;ve set the server port to 81. By doing  this, we&#8217;re making sure it doesn&#8217;t clash with Apache listening on port 80. If  you wanted to let Lighttpd power your entire site instead of Apache, you can set  this to port 80, or comment it out to accept the default.<br />
Then we restart Lighttpd:</p>
<p class="command">/etc/init.d/lighttpd restart</p>
<h3>3 Setting up Apache&#8217;s proxy</h3>
<p>To let Apache take the output of Lighttpd on port 81 and map it to your website,    you&#8217;ll need to make sure the Proxy module of Apache is loaded.<br />
Using the Perfect Setup tutorial this module will either be there already but    not activated.</p>
<p class="command">   a2enmod proxy_http<br />
a2enmod proxy_connect</p>
<p>If you are using virtual hosting, you will want to use the following code to    set up a proxy between the applicable <virtualhost> directives:</virtualhost></p>
<pre>ProxyRequests Off
ProxyPreserveHost On
ProxyPass /media http://0.0.0.0:81/
ProxyPassReverse / http://0.0.0.0:81/</pre>
<p>Then we restart Apache:</p>
<p class="command">/etc/init.d/apache2 reload</p>
<h3>4 Final notice</h3>
<p>In the above example, Lighttpd will serve up your media folder, leaving Apache    to do the rest. Set this to any folder that has static content in it and Lighttpd    will serve it, instead of Apache. Another good use of Lighttpd would be to serve    up multimedia files, taking the load off of Apache. The increase of performance    you&#8217;ll gain is dependent on many factors. If you only have Lighttpd serve up    your images, it probably won&#8217;t help too much. You can put all of your static    content, including HTML and PDF files, images, and movies in a folder called    /static and then set the ProxyPass variable to that for a slightly better performance.</p>
<p>The increase of performance you&#8217;ve gained so far with Lighttpd is not phenomenal,    but helps to increase the website performance and reduces the load on your server.</p>
<h3>5 Links</h3>
<ul>
<li>Lighttpd: <a href="http://www.lighttpd.net/" target="_blank">http://www.lighttpd.net</a></li>
<li>Apache Module mod_proxy: <a href="http://httpd.apache.org/docs/2.0/mod/mod_proxy.html" target="_blank">http://httpd.apache.org/docs/2.0/mod/mod_proxy.html</a></li>
<li>PHP: <a href="http://www.php.net/" target="_blank">http://www.php.net</a></li>
<li>MySQL: <a href="http://www.mysql.com/" target="_blank">http://www.mysql.com</a></li>
<li>Debian: <a href="http://www.debian.org/" target="_blank">http://www.debian.org</a></li>
</ul>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2008/02/reduce-apache-load-with-lighttpd-on-debian-etch-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Lighttpd With PHP5 And MySQL Support On Fedora 8</title>
		<link>http://linewbie.com/2008/02/installing-lighttpd-with-php5-and-mysql-support-on-fedora-8.html</link>
		<comments>http://linewbie.com/2008/02/installing-lighttpd-with-php5-and-mysql-support-on-fedora-8.html#comments</comments>
		<pubDate>Mon, 11 Feb 2008 04:19:31 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[applications/software]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Lighttpd]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/2008/02/installing-lighttpd-with-php5-and-mysql-support-on-fedora-8.html</guid>
		<description><![CDATA[Version 1.0 Author: Falko Timme &#60;ft [at] falkotimme [dot] com&#62; Last edited 01/11/2008 Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on a Fedora 8 server with PHP5 &#8230; <a href="http://linewbie.com/2008/02/installing-lighttpd-with-php5-and-mysql-support-on-fedora-8.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Version 1.0<br />
Author: Falko Timme &lt;ft [at] falkotimme [dot] com&gt;<br />
Last edited 01/11/2008</p>
<p>Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on a Fedora 8 server with PHP5 support (through FastCGI) and MySQL support.</p>
<p>I do not issue any guarantee that this will work for you!</p>
<h3>1 Preliminary Note</h3>
<p>In this tutorial I use the hostname <span class="system">server1.example.com</span> with the IP address <span class="system">192.168.0.100</span>. These settings might differ for you, so you have to replace them where appropriate.</p>
<h3>2 Installing MySQL 5.0</h3>
<p>First we install MySQL 5.0 like this:</p>
<p class="command">yum install mysql mysql-server</p>
<p> Then we create the system startup links for MySQL (so that MySQL starts automatically whenever the system boots) and start the MySQL server:</p>
<p class="command">chkconfig &#8211;levels 235 mysqld on<br />
/etc/init.d/mysqld start</p>
<p><span id="more-459"></span></p>
<p>Create a password for the MySQL user <span class="system">root</span> (replace <span class="system">yourrootsqlpassword</span> with the password you want to use):</p>
<p class="command">mysqladmin -u root password yourrootsqlpassword</p>
<p>Then check with</p>
<p class="command">netstat -tap | grep mysql</p>
<p>on which addresses MySQL is listening. If the output looks like this:</p>
<p class="system">tcp        0      0 localhost.localdo:mysql *:*                     LISTEN     2713/mysqld</p>
<p>which means MySQL is listening on <span class="system">localhost.localdomain</span> only, then you&#8217;re safe with the password you set before. But if the output looks like this:</p>
<p class="system">tcp        0      0 *:mysql *:*                     LISTEN     2713/mysqld</p>
<p>you should set a MySQL password for your hostname, too, because otherwise anybody can access your database and modify data:</p>
<p class="command">mysqladmin -h server1.example.com -u root password yourrootsqlpassword</p>
<h3>3 Installing Lighttpd</h3>
<p>Lighttpd is available as a Fedora package, therefore we can install it like this:</p>
<p class="command">yum install lighttpd</p>
<p>Then we create the system startup links for Lighttpd (so that Lighttpd starts automatically whenever the system boots) and start it:</p>
<p class="command">chkconfig &#8211;levels 235 lighttpd on<br />
/etc/init.d/lighttpd start</p>
<p>Now direct your browser to <span class="system">http://192.168.0.100</span>, and you should see the Lighttpd placeholder page:</p>
<p><a href="http://images.howtoforge.com/images/lighttpd_php5_mysql_fedora8/big/1.png" class="thickbox"><img src="http://images.howtoforge.com/images/lighttpd_php5_mysql_fedora8/1.png" height="405" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Lighttpd&#8217;s default document root is <span class="system">/srv/www/lighttpd</span> on Fedora, and the configuration file is <span class="system">/etc/lighttpd/lighttpd.conf</span>.</p>
<h3>4 Installing PHP5</h3>
<p>We can make PHP5 work in Lighttpd through FastCGI. Therefore we install the packages <span class="system">lighttpd-fastcgi</span> and <span class="system">php-cli</span>:</p>
<p class="command">yum install lighttpd-fastcgi php-cli</p>
<h3>5 Configuring Lighttpd And PHP5</h3>
<p>To enable PHP5 in Lighttpd, we must modify two files, <span class="system">/etc/php.ini</span> and <span class="system">/etc/lighttpd/lighttpd.conf</span>. First we open <span class="system">/etc/php.ini</span> and add the line <span class="system">cgi.fix_pathinfo = 1</span> right at the end of the file:</p>
<p class="command">vi /etc/php.ini</p>
<table align="center" bgcolor="#cccccc" border="1" bordercolor="#000000" cellpadding="2" cellspacing="0" width="90%">
<tr>
<td>
<pre>[...]
cgi.fix_pathinfo = 1</pre>
</td>
</tr>
</table>
<p>Then we open <span class="system">/etc/lighttpd/lighttpd.conf</span> and uncomment<span class="system"> &#8220;mod_fastcgi&#8221;,</span> in the <span class="system">server.modules</span> stanza:</p>
<p class="command">vi /etc/lighttpd/lighttpd.conf</p>
<table align="center" bgcolor="#cccccc" border="1" bordercolor="#000000" cellpadding="2" cellspacing="0" width="90%">
<tr>
<td>
<pre>[...]
server.modules              = (
#                               "mod_rewrite",
#                               "mod_redirect",
#                               "mod_alias",
                                "mod_access",
#                               "mod_cml",
#                               "mod_trigger_b4_dl",
#                               "mod_auth",
#                               "mod_status",
#                               "mod_setenv",
                                "mod_fastcgi",
#                               "mod_proxy",
#                               "mod_simple_vhost",
#                               "mod_evhost",
#                               "mod_userdir",
#                               "mod_cgi",
#                               "mod_compress",
#                               "mod_ssi",
#                               "mod_usertrack",
#                               "mod_expire",
#                               "mod_secdownload",
#                               "mod_rrdtool",
                                "mod_accesslog" )
[...]</pre>
</td>
</tr>
</table>
<p>and then, further down the file, there&#8217;s a <span class="system">fastcgi.server</span> stanza which we uncomment as well:</p>
<table align="center" bgcolor="#cccccc" border="1" bordercolor="#000000" cellpadding="2" cellspacing="0" width="90%">
<tr>
<td>
<pre>[...]
#### fastcgi module
## read fastcgi.txt for more info
## for PHP don't forget to set cgi.fix_pathinfo = 1 in the php.ini
fastcgi.server             = ( ".php" =&gt;
                               ( "localhost" =&gt;
                                 (
                                   "socket" =&gt; "/var/run/lighttpd/php-fastcgi.socket",
                                   "bin-path" =&gt; "/usr/bin/php-cgi"
                                 )
                               )
                            )
[...]</pre>
</td>
</tr>
</table>
<p>Then we restart Lighttpd:</p>
<p class="command">/etc/init.d/lighttpd restart</p>
<p class="command">&nbsp;</p>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2008/02/installing-lighttpd-with-php5-and-mysql-support-on-fedora-8.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Apple Safari Browser On Ubuntu Linux 7.10 With PlayOnLinux</title>
		<link>http://linewbie.com/2008/02/install-apple-safari-browser-on-ubuntu-linux-710-with-playonlinux.html</link>
		<comments>http://linewbie.com/2008/02/install-apple-safari-browser-on-ubuntu-linux-710-with-playonlinux.html#comments</comments>
		<pubDate>Sun, 03 Feb 2008 11:44:28 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[applications/software]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[debian/ubuntu based]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[mac/osx]]></category>
		<category><![CDATA[PlayOnLinux]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/2008/02/install-apple-safari-browser-on-ubuntu-linux-710-with-playonlinux.html</guid>
		<description><![CDATA[Version 1.0 Author: Falko Timme &#60;ft [at] falkotimme [dot] com&#62; Last edited 01/18/2008 This guide explains how you can install Apple&#8217;s Safari browser on Ubuntu 7.10. As there is no Linux version of Safari, we will run it under Wine. &#8230; <a href="http://linewbie.com/2008/02/install-apple-safari-browser-on-ubuntu-linux-710-with-playonlinux.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Version 1.0<br />
Author: Falko Timme &lt;ft [at] falkotimme [dot] com&gt;<br />
Last edited 01/18/2008</p>
<p>This guide explains how you can install <a href="http://www.apple.com/safari/download/" target="_blank">Apple&#8217;s Safari browser</a> on Ubuntu 7.10. As there is no Linux version of Safari, we will run it under <a href="http://www.winehq.org/" target="_blank">Wine</a>. We will use a tool called <a href="http://www.playonlinux.com/" target="_blank">PlayOnLinux</a> to install Safari under Wine. With PlayOnLinux you can install lots of Windows games and some Windows applications (such as Office 2003, IE6, MS Money, etc.) on Linux. Installing Safari on Linux is good for people such as web designers who have switched to Linux but still need to test their web sites in other browsers.</p>
<p>I do not issue any guarantee that this will work for you!</p>
<h3>1 Installing PlayOnLinux</h3>
<p>Open Firefox and go to <a href="http://www.playonlinux.com/en/download.html" target="_blank">http://www.playonlinux.com/en/download.html</a>. Click on the link reading <span class="system">Click here for the .deb package</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/1.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/1.png" width="500" /></a></p>
<p>In the Firefox download dialogue, select <span class="system">Open with GDebi Package Installer (default)</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/2.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/2.png" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><span id="more-458"></span></p>
<p>After the download has finished, the <span class="system">Package Installer</span> comes up. Click on the <span class="system">Install Package</span> button:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/3.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/3.png" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Type in your password:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/4.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/4.png" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Afterwards, the dependencies of PlayOnLinux are being downloaded and installed:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/5.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/5.png" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/6.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/6.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Next, PlayOnLinux is being installed:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/7.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/7.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>After the installation you can click on <span class="system">Close</span> and leave the <span class="system">Package Installer</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/8.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/8.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<h3>2 Starting PlayOnLinux For The First Time</h3>
<p>Now open a terminal (<span class="system">Applications &gt; Accessories &gt; Terminal</span>):</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/9.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/9.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>We install the package <span class="system">cabextract</span> (which is needed to extract .exe files) like this:</p>
<p class="command">sudo apt-get install cabextract</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/10.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/10.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Afterwards, we start PlayOnLinux by typing:</p>
<p class="command">playonlinux</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/11.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/11.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>If 3D aceleration isn&#8217;t enabled on your desktop and you get a warning like in the below image, you can click it away. It&#8217;s not important (at least for Safari &#8211; this might be different if you want to install Windows games which I haven&#8217;t tried):</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/12.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/12.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Now PlayOnLinux is being initialized. Click your way through the following dialogues (which are in French &#8211; we will change PlayOnLinux&#8217; language soon):</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/13.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/13.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/14.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/14.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Click on <span class="system">TÃ©lecharger</span> (means Download in French):</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/15.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/15.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/16.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/16.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Click on <span class="system">Suivant</span> (means Next):</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/17.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/17.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/18.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/18.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Finally, we get to the PlayOnLinux window:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/19.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/19.jpg" height="413" width="550" /></a></p>
<h3>3 Configuring PlayOnLinux</h3>
<p>First let&#8217;s change the language of PlayOnLinux (if French isn&#8217;t your mother tongue). Go to <span class="system">Options &gt; Langue</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/20.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/20.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Click on <span class="system">Suivant</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/21.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/21.jpg" height="413" width="550" /></a></p>
<p>Select your preferred language and click on <span class="system">Suivant</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/22.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/22.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>The change will take effect after a restart of PlayOnLinux (which we will do later &#8211; we still have to configure a few other things):</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/23.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/23.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Next we set up the repositories where PlayOnLinux downloads its scripts from (there are scripts for each Windows application that PlayOnLinux can install to run under Wine). Go to <span class="system">Options &gt; DÃ©pots</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/24.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/24.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Enable the <span class="system">Community</span> repository:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/25.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/25.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/26.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/26.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/27.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/27.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Afterwards do the same again for the <span class="system">WorkOnLinux</span> repository:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/28.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/28.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/29.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/29.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/30.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/30.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/31.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/31.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Finally we create a menu entry for PlayOnLinux in the <span class="system">Applications</span> menu. Go to <span class="system">Options &gt; Tableaux de bord</span>&#8230;</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/32.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/32.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>&#8230; and click on <span class="system">Yes</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/33.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/33.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Now we must restart our desktop session. Press <span class="system">CTRL + ALT+ Backspace</span> and log in again.</p>
<h3>4 Installing Safari</h3>
<p>Now start PlayOnLinux again, this time by using its menu entry (<span class="system">Applications &gt; PlayOnLinux &gt; PlayOnLinux</span>):</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/34.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/34.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>After PlayOnLinux has started, click on the <span class="system">Install</span> button:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/36.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/36.jpg" height="413" width="550" /></a></p>
<p>The Installation wizard starts. Select <span class="system">WorkOnLinux</span> and click on <span class="system">Next</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/37.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/37.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>In the next step select <span class="system">Safari</span> and click on <span class="system">Install</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/38.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/38.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Click on <span class="system">Install</span> again:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/39.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/39.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/40.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/40.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Select <span class="system">Next</span>&#8230;</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/41.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/41.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>&#8230; then <span class="system">Download</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/42.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/42.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/43.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/43.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Click on <span class="system">Next</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/44.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/44.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Install Microsoft Visual C++ by accepting its license:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/45.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/45.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>The next window tells us that we must download the Safari .exe file from Apple before we can proceed:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/46.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/46.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Open Firefox and go to <a href="http://www.apple.com/safari/download/" target="_blank">http://www.apple.com/safari/download/</a> (although PlayOnLinux displays another URL in the previous image). Select <span class="system">Safari for Windows XP or Vista</span> (without Quicktime) and click on the <span class="system">Download Safari 3 Beta</span> button:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/47.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/47.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Save the file somewhere on your computer:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/48.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/48.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/49.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/49.png" height="413" width="550" /></a></p>
<p>Back in PlayOnLinux, click on <span class="system">Next</span>&#8230;</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/50.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/50.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>&#8230; and then on <span class="system">Browse</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/51.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/51.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Select the Safari executable you&#8217;ve just downloaded from your hard drive&#8230;</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/52.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/52.jpg" height="413" width="550" /></a></p>
<p>&#8230; and click on <span class="system">Next</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/53.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/53.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>The next message tells us to deselect <span class="system">Install Bonjour for Windows</span> and <span class="system">Install Apple Software Update</span> during the Safari setup &#8211; please keep this in mind, we&#8217;ll need it soon:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/54.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/54.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>The Safari installer starts. Click on <span class="system">Next &gt;</span>:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/55.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/55.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Accept the Safari license:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/56.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/56.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Now it&#8217;s time to disable <span class="system">Install Bonjour for Windows</span> as well as the Apple updates. <span class="highlight">This is important &#8211; otherwise Safari might not work as expected on Linux:</span></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/57.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/57.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Now Safari is being installed:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/58.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/58.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Click on <span class="system">Finish</span> to leave the installer:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/59.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/59.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>In the next step PlayOnLinux downloads and installs the Adobe Flash player for Safari:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/60.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/60.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/61.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/61.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/62.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/62.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/63.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/63.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Click on <span class="system">Yes</span> if you want to have a Safari shortcut on your desktop&#8230;</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/64.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/64.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>&#8230; and in the menu:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/65.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/65.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>The Safari installation is complete, you can leave PlayOnLinux now:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/66.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/66.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Now you can start Safari:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/67.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/67.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>This is how it looks:</p>
<p><a href="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/big/68.png" class="thickbox"><img src="http://images.howtoforge.com/images/installing_safari_with_playonlinux_on_ubuntu7.10/68.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<h3>5 Links</h3>
<ul>
<li>Safari: <a href="http://www.apple.com/safari/download/" target="_blank">http://www.apple.com/safari/download</a></li>
<li>PlayOnLinux: <a href="http://www.playonlinux.com/" target="_blank">http://www.playonlinux.com</a></li>
<li>Wine: <a href="http://www.winehq.org/" target="_blank">http://www.winehq.org</a></li>
<li>Ubuntu: <a href="http://www.ubuntu.com/" target="_blank">http://www.ubuntu.com</a></li>
</ul>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2008/02/install-apple-safari-browser-on-ubuntu-linux-710-with-playonlinux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Ways To Access Linux Partitions (ext2/ext3) From Windows On Dual-Boot Systems</title>
		<link>http://linewbie.com/2008/01/3-ways-to-access-linux-partitions-ext2ext3-from-windows-on-dual-boot-systems.html</link>
		<comments>http://linewbie.com/2008/01/3-ways-to-access-linux-partitions-ext2ext3-from-windows-on-dual-boot-systems.html#comments</comments>
		<pubDate>Thu, 31 Jan 2008 05:01:55 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[guides]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[dual-boot]]></category>
		<category><![CDATA[ext2]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Partitions]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/2008/01/3-ways-to-access-linux-partitions-ext2ext3-from-windows-on-dual-boot-systems.html</guid>
		<description><![CDATA[Three Ways To Access Linux Partitions (ext2/ext3) From Windows On Dual-Boot Systems Version 1.0 Author: Falko Timme &#60;ft [at] falkotimme [dot] com&#62; Last edited 12/20/2007 If you have a dual-boot Windows/Linux system, you probably know this problem: you can access &#8230; <a href="http://linewbie.com/2008/01/3-ways-to-access-linux-partitions-ext2ext3-from-windows-on-dual-boot-systems.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h4>Three Ways To Access Linux Partitions (ext2/ext3) From Windows On Dual-Boot Systems</h4>
<p>Version 1.0<br />
Author: Falko Timme &lt;ft [at] falkotimme [dot] com&gt;<br />
Last edited 12/20/2007</p>
<p>If you have a dual-boot Windows/Linux system, you probably know this problem: you can access files from your Windows installation while you are in Linux, but not the other way round. This tutorial shows three ways how you can access your Linux partitions (with ext2 or ext3 filesystem) from within Windows: <a href="http://www.chrysocome.net/explore2fs" target="_blank">Explore2fs</a>, <a href="http://www.diskinternals.com/linux-reader/" target="_blank">DiskInternals Linux Reader</a>, and the <a href="http://www.fs-driver.org/index.html" target="_blank">Ext2 Installable File System For Windows</a>. While the first two provide read-only access, the Ext2 Installable File System For Windows can be used for read and write operations.</p>
<p><span id="more-457"></span></p>
<p>I do not issue any guarantee that this will work for you!</p>
<h3>1 Explore2fs</h3>
<p>In Windows, open a browser and go to <a href="http://www.chrysocome.net/explore2fs" target="_blank">http://www.chrysocome.net/explore2fs</a>. Download the latest explore2fs zip file&#8230;</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/1.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/1.png" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>&#8230; and unpack it. In the new folder, you&#8217;ll find the explore2fs executable. Double-click on it to start it:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/2.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/2.png" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>The Explore2fs filebrowser starts; you can now browse your Linux partitions and copy&amp;paste files to your Windows partition:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/3.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/3.png" height="413" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<h3>2 DiskInternals Linux Reader</h3>
<p>Go to <a href="http://www.diskinternals.com/linux-reader/" target="_blank">http://www.diskinternals.com/linux-reader</a> and download and install the DiskInternals Linux Reader.</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/4.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/4.png" height="413" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>After the installation, the Linux Reader starts automatically and scans your hard drive for Linux partitions:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/5.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/5.png" height="413" width="500" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Afterwards, you can find your Windows and Linux partitions in the Linux Reader (which looks like the Windows Explorer):</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/6.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/6.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Now you can browse your Linux partitions:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/7.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/7.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>To copy a file/directory from a Linux partition to your Windows partition, right-click on the file/directory and select <span class="system">Save</span>:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/8.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/8.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Then select the folder on your Windows partition where you want to store the file/directory:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/9.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/9.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>The DiskInternals Linux Reader can be started from the normal start menu:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/10.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/10.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<h3>3 Ext2 Installable File System For Windows</h3>
<p>The Ext2 Installable File System For Windows (which supports ext2 <strong>and</strong> ext3!) can be downloaded from <a href="http://www.fs-driver.org/index.html" target="_blank">http://www.fs-driver.org/index.html</a>. During the installation you will be asked to assign a drive letter to your Linux partitions (e.g. <span class="system">L:</span>); you don&#8217;t need to assign a drive letter to your swap partition:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/11.png" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/11.png" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>After the installation, you can find your Linux partition(s) in the normal Windows Explorer (under the drive letter that you assigned to it during the installation):</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/12.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/12.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>You can now browse and use your Linux partition(s) like a normal Windows partition.</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/13.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/13.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>As mentioned in the introduction of this article, the Ext2 Installable File System For Windows supports read and write operations on the Linux partitions. In order to test if the write support really works, we can try to create an empty folder on a Linux partition. Right-click on an empty area on the Linux partition and select <span class="system">New &gt; Folder</span>:</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/14.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/14.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>Enter a name for the new folder (e.g. <span class="system">test</span>):</p>
<p><a href="http://images.howtoforge.com/images/access_linux_partitions_from_windows/big/15.jpg" class="thickbox"><img src="http://images.howtoforge.com/images/access_linux_partitions_from_windows/15.jpg" height="413" width="550" /><img src="http://images.howtoforge.com/images/click_to_enlarge.png" alt="Click to enlarge" border="0" height="12" width="100" /></a></p>
<p><noscript style="font-size: 7pt">(JavaScript must be enabled in your browser to view the large image as an image overlay.)</noscript></p>
<p>If everything goes well, you should now have a new folder on your Linux partition.</p>
<h3>4 Links</h3>
<ul>
<li>Explore2fs: <a href="http://www.chrysocome.net/explore2fs" target="_blank">http://www.chrysocome.net/explore2fs</a></li>
<li>DiskInternals Linux Reader: <a href="http://www.diskinternals.com/linux-reader/" target="_blank">http://www.diskinternals.com/linux-reader</a></li>
<li>Ext2 Installable File System For Windows: <a href="http://www.fs-driver.org/index.html" target="_blank">http://www.fs-driver.org/index.html</a></li>
</ul>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2008/01/3-ways-to-access-linux-partitions-ext2ext3-from-windows-on-dual-boot-systems.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Ruby On Rails and getting started</title>
		<link>http://linewbie.com/2008/01/install-ruby-on-rails-and-getting-started.html</link>
		<comments>http://linewbie.com/2008/01/install-ruby-on-rails-and-getting-started.html#comments</comments>
		<pubDate>Wed, 30 Jan 2008 05:52:11 +0000</pubDate>
		<dc:creator>Linewbie.com</dc:creator>
				<category><![CDATA[applications/software]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.linewbie.com/2008/01/install-ruby-on-rails-and-getting-started.html</guid>
		<description><![CDATA[Getting Started With Ruby On Rails Installing Ruby on Rails (RoR) on windows, OSX and Linux. Generally there are 3 installations: OSX, Windows and Linux, and Linux install is the most easy one. Windows: Go to http://www.rubyonrails.org/, and download the &#8230; <a href="http://linewbie.com/2008/01/install-ruby-on-rails-and-getting-started.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>Getting Started With Ruby On Rails</h3>
<p>Installing Ruby on Rails (RoR) on windows, OSX and Linux. Generally there are 3 installations: OSX, Windows and Linux, and Linux install is the most easy one.</p>
<h3>Windows:</h3>
<p>Go to <a href="http://www.rubyonrails.org/" target="_blank">http://www.rubyonrails.org/</a>, and download the package containing gems (windows installer).</p>
<p>Install the package.</p>
<p>Update the gem system via:</p>
<p class="command">gem update &#8211;system</p>
<p>Update installed gems via:</p>
<p class="command">gem update</p>
<p>When this is done install the relevant gems. I would suggest the following as a minimum:<br />
*rails (for the framework)<br />
Please note, that rails 2.02 is the newest version, you can install an older version via</p>
<p class="command">gem install v1.2.6 rails</p>
<p>*mysql (for database assess)<br />
*mongrel (webserver better when webrick)</p>
<p>When asked for the version you want to use, choose the newst version, that has win32 in the option.</p>
<h3>OSX 10.4 and 10.5</h3>
<p>Go to <a href="http://www.macports.org/" target="_blank">http://www.macports.org/</a> and download the correct version of the file (tiger/leopard).</p>
<p>Read through the installation guide: <a href="http://www.macports.org/install.php" target="_blank">http://www.macports.org/install.php</a></p>
<p>Quick guide:<br />
Install the correct xcode for your system.<br />
Install the macports program (this can take a little while)<br />
When done, do:</p>
<p class="command">sudo port install ruby<br />
sudo port install rb-gems (enabling gems under ruby)<br />
sudo gem install rails (framework)<br />
sudo port install rb-mysql (mysql for use under RoR)<br />
sudo gem install mongrel (webserver)<br />
sudo port install subversion (for easy install for remote plugins)</p>
<h3>Linux (Ubuntu like / Debian based)</h3>
<p class="command">sudo apt-get update &amp;&amp; sudo apt-get upgrade (getting newst list, and updateing software before continuing).<br />
sudo apt-get install ruby subversion mysql libmysql-ruby1.8</p>
<p class="command">sudo gem install rails<br />
sudo gem install mongrel</p>
<p>And you should be set to go.</p>
<p>IDE for use with RoR:<br />
Textmate (OSX), has very poor subversion integration, but good RoR integration<br />
Not free<br />
Eclipse (good integration, via plugins)<br />
<a href="http://www.eclipse.org/" target="_blank">http://www.eclipse.org/</a> download plugins via Aptana website, for RoR support.<br />
Free</p>
<p>Aptana (good integration via plugins) <a href="http://www.aptana.com/" target="_blank">http://www.aptana.com/</a><br />
complete IDE, eclipse based. Free<br />
IDEA (good integration via plugins)<br />
Complete IDE suite, with great integration of subversion, mysql and even jira for bugtracking.<br />
Professional, but expensive.</p>
<p>Remeber to point your IDE to where your RoR / rails is installed for best integration:<br />
Windows most often: <span class="system">c:\ruby\bin</span><br />
OSX: <span class="system">/opt/local/</span><br />
Linux: <span class="system">/usr/bin/ruby</span></p>
<h3>Errors:</h3>
<p>Linux:</p>
<p class="command">sudo gem update &#8211;system</p>
<p>Which introduced this error:</p>
<p class="system">/usr/bin/gem:23: uninitialized constant Gem::GemRunner(NameError)</p>
<p>whenever I tried to run rubygems.  On the <a href="http://railsforum.com/" target="_blank">rails forum</a>, I found <a href="http://railsforum.com/viewtopic.php?pid=48963" target="_blank">a fix for it!</a>. Simply add the line to the file <span class="system">/usr/bin/gem</span> (may be different on a mac):</p>
<pre>require 'rubygems/gem_runner'</pre>
<p>after</p>
<pre>require 'rubygems'</pre>
<p>Source: <a href="http://www.nickpeters.net/2007/12/31/fix-for-uninitialized-constant-gemgemrunner-nameerror/" target="_blank">http://www.nickpeters.net/2007/12/31/fix-for-uninitialized-constant-gemgemrunner-nameerror/</a></p>
<p>This error when installing gems:</p>
<p class="system">extconf.rb:1:in `requireâ€™: no such file to loadâ€”mkmf (LoadError)</p>
<p>from extconf.rb:1.</p>
<p>Do:</p>
<p class="command">sudo apt-get install ruby1.8-dev</p>
<div style='clear:both'></div>
]]></content:encoded>
			<wfw:commentRss>http://linewbie.com/2008/01/install-ruby-on-rails-and-getting-started.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

