<?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>Talk Binary &#187; Linux</title>
	<atom:link href="http://talkbinary.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://talkbinary.com</link>
	<description>Programming Resources, Technology, Computers</description>
	<lastBuildDate>Mon, 06 Feb 2012 17:01:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>XAMPP &#8211; Apache distribution containing MySQL, PHP, and Perl</title>
		<link>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/</link>
		<comments>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 20:37:28 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[hello world]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[offline web server]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2780</guid>
		<description><![CDATA[XAMPP acts as a web server that allows you to serve dynamic pages on your computer. Its intended to be used as a development tool as it allows programmers to develop their work using Apache, MySQL, PHP and Perl without having access to the internet. It&#8217;s available for Windows, Linux, Solaris, and Mac OS X<a class="moretag" href="http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampplogo1.gif" alt="" title="xampplogo" width="200" height="59" class="alignnone size-full wp-image-2782" /><a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> acts as a web server that allows you to serve dynamic pages on your computer. Its intended to be used as a development tool as it allows programmers to develop their work using Apache, MySQL, PHP and Perl without having access to the internet. It&#8217;s available for Windows, Linux, Solaris, and Mac OS X and is released under the terms of the GNU General Public License.</p>
<p>I&#8217;ve been using <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> for quite some time now since I&#8217;ve done a couple of web development projects already. If you don&#8217;t have some sort of web server on your computer, you won&#8217;t be able to test and run your web development projects offline if you are using MySQL or PHP for instance.<br />
<span id="more-2780"></span></p>
<h3 id="section-1">Installing XAMPP</h3>
<p>Installing <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> is pretty straightforward. The website details you how to install XAMPP in a variety of ways for the different platforms. Then, once its installed, you simply place your web content in the <strong>\xampp\htdocs\</strong> location on your computer and access it via a browser using <strong>http://localhost/<file></strong> </p>
<h3 id="section-2">Hello World using XAMPP</h3>
<p>For example, lets create &#8220;Hello World&#8221; using XAMPP and some PHP.</p>
<p>1. Once you installed and are running <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>, create a file called <strong>test.php</strong> and place it inside <strong>\xampp\htdocs</strong>. </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampptestphp.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampptestphp.png" alt="" title="xampptestphp" width="554" height="380" class="alignnone size-full wp-image-2792" /></a></center></p>
<p>2. Then, simply copy and paste the following php code.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Hello World&quot;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworldphp.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworldphp.png" alt="" title="xampphelloworldphp" width="366" height="165" class="alignnone size-full wp-image-2791" /></a></center><br />
<br />
3. Open up a browser and go to the location <strong>http://localhost/test.php</strong>. You should see Hello World on the screen. Now, try right-clicking on the file and Open With -> <Any Browser>. Do you notice the difference? Depending on the platform and browser, it might not behave correctly.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworld.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworld-300x118.png" alt="" title="xampphelloworld" width="300" height="118" class="alignnone size-medium wp-image-2790" /></a></center><br />
<br/></p>
<h3 id="section-3">Overview of XAMPP</h3>
<p>If you have wanted to get into web development, you should try <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>. It&#8217;s fairly easy to install and use. I&#8217;ve been using it for quite some time and haven&#8217;t found a better replacement. </p>
<p>Want more tutorials on using XAMPP? Let me know. I plan on demonstrating how to create and manage a MySQL database and even setting up a <a href="http://wordpress.org">WordPress</a> blog using <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>.</p>
<p><a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wubi &#8211; Ubuntu Installer for Windows</title>
		<link>http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/</link>
		<comments>http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 06:05:58 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Wubi]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2622</guid>
		<description><![CDATA[Ever wanted to try Linux but afraid of the complex installation process? Worry no more. Wubi is an officially supported Ubuntu installer for Windows users than brings Linux to anyone with a simple installer as any other Windows application. I&#8217;d say, Wubi is the best and easiest way to get started with Linux. So how<a class="moretag" href="http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2010/07/wubi_logo1.gif"><img src="http://talkbinary.com/wp-content/uploads/2010/07/wubi_logo1.gif" alt="" title="wubi_logo" width="256" height="84" class="alignleft size-full wp-image-2624" /></a> Ever wanted to try Linux but afraid of the complex installation process? Worry no more. <a href="http://wubi-installer.org/">Wubi</a> is an officially supported Ubuntu installer for Windows users than brings Linux to anyone with a simple installer as any other Windows application. I&#8217;d say, <em>Wubi is the best and easiest way to get started with Linux</em>.</p>
<p>So how does it work? Simply run the <a href="http://wubi-installer.org/">Wubi</a> installer, enter a password for the account, choose some basic options, and click &#8220;Install&#8221;. Yes, it&#8217;s that simple. It&#8217;s not going to take any modifying of your partitions or boot loader. It just works like any other application. Yes, it&#8217;s that simple. If you don&#8217;t like it, simple uninstall it like any other application. Best of all, it&#8217;s free.<br />
<span id="more-2622"></span><br />
<center><a href="http://talkbinary.com/wp-content/uploads/2010/07/wubi-123_small.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/wubi-123_small.png" alt="" title="wubi-123_small" width="510" height="320" class="aligncenter size-full wp-image-2630" /></a></center></p>
<p>I&#8217;ve used it and to be honest, it&#8217;s great. <a href="http://wubi-installer.org/">Wubi</a>  is hassle free and extremely easy to use. Like mentioned, it&#8217;s extremely easy to uninstall and no need to worry about something going wrong. </p>
<h3 id="section-1">What to know about Wubi</h3>
<p>Below are somethings that you should know about <a href="http://wubi-installer.org/">Wubi</a> before you try it out.</p>
<ul>
<li>Read the <a href="http://wubi-installer.org/faq.php">Wubi FAQ</a> if you want to know how it works and answers to many of your questions</li>
<li>To make it easier, pre-download the ISO and save it to the same directory where  <a href="http://wubi-installer.org/">Wubi</a> is extracted. That way, the installer doesn&#8217;t need to download it every time you run it. </li>
<li>You can force  <a href="http://wubi-installer.org/">Wubi</a> to use a 32-bit verison of Ubuntu if you follow the previous step</li>
<li>All you need is 256MB of RAM and an 1GHz or faster Intel/AMD processor is recommended for optimal performance. Installation requires 5GB. Bought your computer within the past 3 years? You should be fine.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox &#8211; Sync files online and across multiple computers</title>
		<link>http://talkbinary.com/software/dropbox-sync-files-online-and-across-multiple-computers/</link>
		<comments>http://talkbinary.com/software/dropbox-sync-files-online-and-across-multiple-computers/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 05:08:31 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Resources Online]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[free online storage]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[online storage]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2413</guid>
		<description><![CDATA[Dropbox allows you to sync your files online and across multiple computers with ease. By simply downloading their software, you&#8217;ll be prompted to select a folder which will serve as your Dropbox. Once this is done on all your computers, whatever you throw into your Dropbox, will sync across all computers. Features of Dropbox Below<a class="moretag" href="http://talkbinary.com/software/dropbox-sync-files-online-and-across-multiple-computers/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2010/03/dropboxlogo.png"><img src="http://talkbinary.com/wp-content/uploads/2010/03/dropboxlogo.png" alt="" title="dropboxlogo" width="231" height="60" class="alignleft size-full wp-image-2414" /></a><a href="http://dropbox.com">Dropbox</a> allows you to sync your files online and across multiple computers with ease. By simply downloading their software, you&#8217;ll be prompted to select a folder which will serve as your <strong>Dropbox</strong>. Once this is done on all your computers, whatever you throw into your <strong>Dropbox</strong>, will sync across all computers. </p>
<h2 id="section-1">Features of Dropbox</h2>
<p>Below are some of the features I enjoy using it for. If you want to see the full list please visit <a href="https://www.dropbox.com/features">Dropbox Features</a>.</p>
<ul>
<li>2GB of online storage, which can be increased through referrals</li>
<li>Up to 100GB for paying customers
<li>
<li>Works on Windows, Mac, and Linux computers</li>
<li>Allows you to share folders or files with people to start collaborating on projects</li>
<li>A &#8220;Public&#8221; folder that lets you create direct links to your files to share with your friends</li>
<li>Access your files online as well as upload, delete, rename, etc</li>
<li>It&#8217;s secure</li>
<li>And it&#8217;s also mobile too</li>
</ul>
<p><span id="more-2413"></span></p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2010/03/dropbox01.jpg" alt="" title="dropbox01" width="450" height="317" class="aligncenter size-full wp-image-2417" /></center></p>
<h2 id="section-2">Impressions of Dropbox</h2>
<p>When I lost my USB Hard Drive, I hated the idea of having to go buy another one. Instead, I found <a href="http://dropbox.com">Dropbox</a>. Ever since then whenever I need to access something across multiple computers, I drop it in my <strong>Dropbox</strong> and better yet, I could access it online. Best of all it&#8217;s very easy to set up across multiple computers. With the added bonus of sharing folders and files, and even creating links for files for your friends to access, I couldn&#8217;t ask for anything better. Best of all it&#8217;s free so you have nothing to lose.</p>
<p><strong>Updated: Added video on Dropbox</strong><br />
<center><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/C_zzuA-MoIs&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/C_zzuA-MoIs&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></center></p>
<p><a href="https://www.dropbox.com/referrals/NTc4NjEwNjk">Dropbox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/software/dropbox-sync-files-online-and-across-multiple-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Open in Terminal support To Nautilus in Ubuntu</title>
		<link>http://talkbinary.com/linux/how-to-add-open-in-terminal-support-to-nautilus-in-ubuntu/</link>
		<comments>http://talkbinary.com/linux/how-to-add-open-in-terminal-support-to-nautilus-in-ubuntu/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 02:30:49 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[nautilus]]></category>
		<category><![CDATA[open in terminal]]></category>
		<category><![CDATA[synaptic packet manager]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[windows explorer]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2348</guid>
		<description><![CDATA[Wouldn&#8217;t it be great to open up Nautlius (equivalent to Windows-Explorer in Ubuntu) and be able to open up your terminal in that specific folder by simply right clicking and choosing an Open in Terminal option? Unfortunately this option isn&#8217;t set by default. Luckily there are two ways to install this option. Installing through the<a class="moretag" href="http://talkbinary.com/linux/how-to-add-open-in-terminal-support-to-nautilus-in-ubuntu/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2010/03/openinterminal1.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/03/openinterminal1.jpg" alt="" title="openinterminal" width="300" height="269" class="alignleft size-full wp-image-2366" /></a><br/><br/><br/>Wouldn&#8217;t it be great to open up Nautlius (equivalent to Windows-Explorer in Ubuntu) and be able to open up your terminal in that specific folder by simply right clicking and choosing an <strong>Open in Terminal</strong> option? Unfortunately this option isn&#8217;t set by default. Luckily there are two ways to install this option.</p>
<ol>
<li>Installing through the terminal (easiest)</li>
<li>Installing through the Synaptic Package Manager</li>
</ol>
<p><br/><span id="more-2348"></span></br><br/></p>
<h2 id="section-1">Installing Open in Terminal support to Nautilus in Ubuntu</h2>
<p>The easiest method is to install it within the terminal window. </p>
<blockquote><h3 id="section-2">Method 1: Installing Open in Terminal Support through the Terminal</h3>
<p>Simply enter this in your terminal. </p>
<p><strong>sudo apt-get install nautilus-open-terminal</strong></p>
<p>Enter your password if prompted, and then restart Nautlius. You can do so using the following through the terminal as well.</p>
<p><strong>killall nautlius</strong></p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/03/open-terminal21.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/03/open-terminal21.jpg" alt="" title="open-terminal2" width="475" height="167" class="alignnone size-full wp-image-2363" /></a></center></p>
<p>Once this is done, you should see this option within Nautilus. See above? I simply opened the current directory within the terminal. Didn&#8217;t that save some time?
</p></blockquote>
<blockquote><h3 id="section-3">Method 2: Installing Open in Terminal Support through Synaptic Packet Manager</h3>
<p>1. Open the Synaptic Packet Manager </p>
<p><strong>System -> Administration -> Synaptic Package Manager </strong></p>
<p><center><br />
<a href="http://talkbinary.com/wp-content/uploads/2010/03/open-terminal.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/03/open-terminal.jpg" alt="" title="open-terminal" width="450" height="147" class="aligncenter size-full wp-image-2359" /></a></center><br />
<br/><br />
2. You can do a quick search for <strong>nautilus-open-terminal</strong> and mark it for installation by right clicking on the entry. </p>
<p>3. Apply the changes, then close Synaptic Package Manager, log off and then back on.</p>
<p>After logging in, you should see the option available when you right click in Nautilus.
</p></blockquote>
<p><a href="http://www.watchingthenet.com/add-open-command-prompt-here-functionality-to-nautilus-in-ubuntu.html">Add Open Command Prompt Here Functionality To Nautilus In Ubuntu</a> via <a href="http://www.watchingthenet.com">Watching The Net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/linux/how-to-add-open-in-terminal-support-to-nautilus-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to install Ubuntu using VirtualBox</title>
		<link>http://talkbinary.com/linux/how-to-install-ubuntu-using-virtualbox/</link>
		<comments>http://talkbinary.com/linux/how-to-install-ubuntu-using-virtualbox/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 05:37:33 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Dual Boot]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to install ubuntu using virtualbox]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[virtual box]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2211</guid>
		<description><![CDATA[How to install Ubuntu using VirtualBox Today, we are going to teach you how to use VirtualBox to install Ubuntu using Windows. (This could easily be done on Linux, or a Mac too.) This is a great option for those of you who want to get a programming environment and those who want to avoid<a class="moretag" href="http://talkbinary.com/linux/how-to-install-ubuntu-using-virtualbox/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2010/02/vbox_logo2_gradient.png"><img src="http://talkbinary.com/wp-content/uploads/2010/02/vbox_logo2_gradient.png" alt="" title="vbox_logo2_gradient" width="140" height="180" class="alignleft size-full wp-image-2113" /></a><br />
<h3 id="section-1">How to install Ubuntu using VirtualBox</h3>
<p>Today, we are going to teach you how to use <a href="http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/">VirtualBox</a> to install <a href="http://www.ubuntu.com/">Ubuntu</a> using Windows. (This could easily be done on Linux, or a Mac too.) This is a great option for those of you who want to get a programming environment and those who want to avoid dual-booting your computer since it involves a great risk if done wrong. Virtualizing an OS is an easy task and it only takes a few steps. It should take a new user about five minutes to get going. So let&#8217;s get started.<br />
<br/></p>
<h3 id="section-2">What you need to virtualize Ubuntu on VirtualBox</h3>
<hr />
First of all you will need <a href="http://www.virtualbox.org/">VirtualBox</a> and an OS, for our tutorial we will be going with <a href="http://www.ubuntu.com/">Ubuntu</a>. For Ubuntu, you can simply download the Ubuntu CD image on their download page. They are both free of course. You can choose any other <a href="http://distrowatch.com/dwres.php?resource=major">top linux distribution</a> if you want, only one step would change in this process. Most of the instructions are relatively straight forward, so I&#8217;ll guide you through them so you don&#8217;t get lost.<br />
<br/><br />
By the time you finish this quick and easy process, you should be getting this type of environment (version may be different of course).</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/04/ubuntu_804.png"><img src="http://talkbinary.com/wp-content/uploads/2008/04/ubuntu_804-300x225.png" alt="" title="ubuntu_804" width="300" height="225" class="aligncenter size-medium wp-image-32" /></a></center></p>
<h3 id="section-3">Step 1: Create a new Virtual Machine</h3>
<hr />
Open up <strong>VirtualBox</strong> and click on the blue button that says <strong>new</strong> so you can be greeted with the following.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual01.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual01-300x240.jpg" alt="" title="Step 1: Welcome to the new wizard" width="300" height="240" class="aligncenter size-medium wp-image-2214" /></a></center><br />
<span id="more-2211"></span></p>
<h3 id="section-4">Step 2: Choose a name for your installation</h3>
<hr />
If you are installing Ubuntu, you can simply name it &#8220;Ubuntu&#8221;. Under <strong>OS type</strong>, chose <em>Linux</em> for the <strong>Operating System</strong>, and <em>Ubuntu</em> for the version.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual02.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual02-300x221.jpg" alt="" title="Step 2: Create name and choose OS. In our case Linux/Ubuntu." width="300" height="221" class="aligncenter size-medium wp-image-2215" /></a></center></p>
<h3 id="section-5">Step 3: Allocate memory for your OS</h3>
<hr />
Select the amount of <strong>memory (RAM)</strong> you want to allocate to your machine. Don&#8217;t worry if you think it&#8217;s too little or too much. You can always change this later. If you would use Ubuntu to learn how to program, you wouldn&#8217;t need to much anyways. Depending on how much RAM you have, you&#8217;d be fine with the default,  <strong>512MB</strong>, and <strong>1024MB</strong> would be more than enough.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual03.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual03-300x221.jpg" alt="" title="Step 3: Allocate memory (RAM) that will be dedicated to your machine." width="300" height="221" class="aligncenter size-medium wp-image-2216" /></a></center></p>
<h3 id="section-6">Step 4: Create the virtual hard disk</h3>
<hr />
Since this is your first time, simply leave the defaults for now.<br />
<center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual04.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual04-300x220.jpg" alt="" title="virtual04" width="300" height="220" class="aligncenter size-medium wp-image-2217" /></a></center></p>
<h3 id="section-7">Step 5: Selecting the Hard Disk Storage Type</h3>
<hr />
I&#8217;d go with the <strong>Dynamically Expanding Storage</strong> since it offers you a bit more flexibility in the end. This way, you don&#8217;t go over the limit you initially proposed.<br />
<center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual05.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual05-300x220.jpg" alt="" title="virtual05" width="300" height="220" class="aligncenter size-medium wp-image-2218" /></a></center></p>
<h3 id="section-8">Step 5: Virtual Disk Location and Size</h3>
<hr />
You can change the default location of your Virtual Disk if you wish. Concerning the size, you can allocate as much as you need. Anywhere from <strong>4GB &#8211; 8GB</strong> should be enough. You can stick to the lower end if you simply want to give Ubuntu a try.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual06.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual06-300x220.jpg" alt="" title="virtual06" width="300" height="220" class="aligncenter size-medium wp-image-2219" /></a></center></p>
<h3 id="section-9">Step 6: Welcome to the first run wizard!</h3>
<hr />
Hang on tight, you are almost there. </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual07.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual07-300x256.jpg" alt="" title="virtual07" width="300" height="256" class="aligncenter size-medium wp-image-2220" /></a></center></p>
<h3 id="section-10">Step 7: Select Installation Media</h3>
<hr />
For now we are sticking with the <strong>CD/DVD-ROM Device</strong> option to install our Ubuntu installation since we downloaded the ISO To select our ISO simply click on the folder icon. </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual08.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual08-300x256.jpg" alt="" title="virtual08" width="300" height="256" class="aligncenter size-medium wp-image-2221" /></a></center></p>
<h3 id="section-11">Step 8: Select the Ubuntu installation</h3>
<hr />
Now, simply <strong>Add</strong> your Ubuntu iso and hit <strong>Select</strong>.<br />
<center><a href="http://talkbinary.com/wp-content/uploads/2010/02/virtual09.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/virtual09-300x258.jpg" alt="" title="virtual09" width="300" height="258" class="aligncenter size-medium wp-image-2222" /></a></center></p>
<h3 id="section-12">Step 9: Congratulations, you did it.</h3>
<hr />
Congratulations. You should be followed with instructions to complete your <strong>Ubuntu</strong> installation. Now that was easy wasn&#8217;t it? If anything went wrong, you could simply delete the virtual machine and try again, or even try another distribution. If you still have any questions, feel free to ask below. </p>
<p>Now get going and get some programming! </p>
<h3 id="section-13">Useful resources</h3>
<hr />
So now that you installed Ubuntu, why not check out the following resources to help you out with your programming endeavors?</p>
<ul>
<li><a href="http://talkbinary.com/programming/c/how-to-write-and-compile-c-program-in-linux/">How to write and Compile a C++ Program in Linux</a></li>
<li><a href="http://talkbinary.com/programming/c/hello-world-in-c/">Hello World in C++</a></li>
<li><a href="http://talkbinary.com/linux/basic-linux-terminal-commands/">Basic Linux Terminal Commands</a></li>
<li><a href="http://talkbinary.com/programming/c/start-programming-in-c/">Start Programming in C++</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/linux/how-to-install-ubuntu-using-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Workspaces in Ubuntu</title>
		<link>http://talkbinary.com/linux/using-workspaces-in-ubuntu/</link>
		<comments>http://talkbinary.com/linux/using-workspaces-in-ubuntu/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 05:05:03 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[virtual desktop]]></category>
		<category><![CDATA[workspace]]></category>
		<category><![CDATA[workspace switcher]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2151</guid>
		<description><![CDATA[Workspaces allows you to organize your GNOME Desktop in Ubuntu by creating virtual desktops from which you can place your applications. In my case, I like having two files I&#8217;m currently working on my first workspace, my browser in the second, and so on. That way, I only have to switch through the spaces instead<a class="moretag" href="http://talkbinary.com/linux/using-workspaces-in-ubuntu/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><b><i>Workspaces</i></b> allows you to organize your GNOME Desktop in Ubuntu by creating virtual desktops from which you can place your applications. In my case, I like having two files I&#8217;m currently working on my first workspace, my browser in the second, and so on. That way, I only have to switch through the spaces instead of having to bring up the windows individually. </p>
<p>This in turn increases productivity since <b><i>Workspaces</b></i> allows you to focus on things that you need to get done, instead of sifting through your applications on simply one screen. </p>
<h3 id="section-1">Setting up Workspaces in Ubuntu</h3>
<p>To set up a <b><i>Workspace</i></b> you can simply right click on a panel and choose <i><b>Add to panel</b></i> and select <i><b>Workspace Switcher</b></i>. This by default should add four Workspaces to wherever you clicked on your panel. To change this, simply right click your Workspace Switcher, and choose <b><i>Preferences</i></b></p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2010/02/workspace1.jpg" alt="" title="workspace1" width="226" height="223" class="aligncenter size-full wp-image-2152" /></center></p>
<p>So now that you have them you can switch to them by clicking on them, or preferably by pressing <b><i>CTRL + ALT + RIGHT</i></b>, or instead of RIGHT: LEFT, UP,  or DOWN would be fine depending on how you set up your rows and columns and where you currently are.<br />
<span id="more-2151"></span></p>
<h3 id="section-2">Overall</h3>
<p>Mac users should be very familiar with this and unfortunately, Windows users are missing out! This allows you to save time by having  <b><i>Workspaces</i></b> that fulfill different functions such as coding, web browsing, instant messaging, the options are endless. If you use Linux, or Mac and haven&#8217;t tried this out. I recommend you to do so.</p>
<p><a href="https://help.ubuntu.com/7.04/user-guide/C/overview-workspaces.html#gosoverview-FIG-42">Workspaces</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/linux/using-workspaces-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox &#8211; Virtualize on Windows, Mac, and Linux</title>
		<link>http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/</link>
		<comments>http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 03:38:23 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[guest]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[virtual box]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1991</guid>
		<description><![CDATA[Create a virtual machine using VirtualBox Virtual Box is a powerful open source x86 virtualization that runs on Windows, Linux, Mac and OpenSolaris. It supports a large number of guest operating systems such as Windows XP, Windows 7 RC, Ubuntu, Debian, SUSE, Fedora, and Red Hat. VirtualBox is free as well as many linux distributions.<a class="moretag" href="http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2010/02/vbox_logo2_gradient.png"><img src="http://talkbinary.com/wp-content/uploads/2010/02/vbox_logo2_gradient.png" alt="" title="vbox_logo2_gradient" width="140" height="180" class="alignleft size-full wp-image-2113" /></a><br />
<h3 id="section-1">Create a virtual machine using VirtualBox</h3>
<p>     <a href="http://www.virtualbox.org/">Virtual Box</a> is a powerful open source x86 virtualization that runs on Windows, Linux, Mac and OpenSolaris. It supports a large number of <a href="http://www.virtualbox.org/wiki/Guest_OSes">guest operating</a> systems such as Windows XP, Windows 7 RC, Ubuntu, Debian, SUSE, Fedora, and Red Hat. VirtualBox is free as well as many linux distributions. So if you haven&#8217;t tried any, I&#8217;d recommend you doing so.</p>
<p>     In simpler terms, <a href="http://www.virtualbox.org/">Virtual Box</a> allows you to run another OS on top of your currently existing one. If you wanted to try installing an OS without the hassle of dual-booting, or even wanted to install another OS to do some programming since maybe Windows isn&#8217;t the best for you, then virtualiziation is one way to go. There is also no way you can harm your computer so its risk-free. If you corrupt a guest OS, simply delete it and try again. </p>
<h3 id="section-2">VirtualBox Features</h3>
<ul>
<li>Guest Additions for Windows, Linux, and Solaris &#8211; Allows you to install software inside the OS that improves performance. Just recently the guest additions allowed users running Ubuntu to run the Visual Effects, which is nice. </li>
<li>Shared folders &#8211; Access folders from the host in the guest machines</lI
<li>Virtual USB Controllers &#8211; Connect a USB device and your virtual machine will recognize it, including USB Flash Drives.</li>
</ul>
<p>For more features visit <a href="http://www.virtualbox.org/wiki/VirtualBox">Virtual Box Features</a>.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/02/vbox2.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/vbox2-300x228.jpg" alt="VirtualBox running Ubuntu under Windows" title="vbox2" width="300" height="228" class="aligncenter size-medium wp-image-2115" /></a></center></p>
<h3 id="section-3">How to start</h3>
<p>     If you want to start, simply download <a href="http://www.virtualbox.org/">Virtual Box</a> and an OS. I&#8217;d recommend <a href="http://www.ubuntu.com/">Ubuntu</a> since thats probably the most user friendly (or so I think). If you want something else, hit up <a href="http://distrowatch.com/dwres.php?resource=major">DistroWatch</a>. Once you have that, setting up <a href="http://www.virtualbox.org/">Virtual Box</a> with the OS is pretty straightforward. I&#8217;ll add a tutorial later on for those who still need help.<br />
<span id="more-1991"></span></p>
<h3 id="section-4">My Usage of VirtualBox</h3>
<p>     I use <a href="http://www.virtualbox.org/">Virtual Box</a>  to create my own programming environment. I personally use <a href="http://www.ubuntu.com/">Ubuntu</a> but I have also used other linux operating systems that can be found at <a href="http://distrowatch.com/dwres.php?resource=major">DistroWatch</a>. Since I run a dual monitor setup, I usually have Windows 7 running on my left monitor while <a href="http://www.ubuntu.com/">Ubuntu</a> runs on my right monitor in the case I need to program and attend to my other needs such as IM or music player which are still running on Windows. </p>
<p>     When I run <a href="http://www.ubuntu.com/">Ubuntu</a> on my Macbook on the other hand, I simply run it full screen and within the virtualized machine I run my music player, IM client, and have my programming environment set up so I don&#8217;t have to be switching back and forth since running another OS requires quite a bit of resources.</p>
<h3 id="section-5">Final Impressions of VirtualBox</h3>
<p>For quite some time now, I&#8217;ve been using <a href="http://www.virtualbox.org/">Virtual Box</a> nearly every day and haven&#8217;t had a complaint. It&#8217;s stable, free, and relatively easy to use. If your interested in virtualizing, I&#8217;d recommend you in trying this out. </p>
<p> <a href="http://www.virtualbox.org/">Virtual Box</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux 101 Hacks &#8211; Free e-book</title>
		<link>http://talkbinary.com/programming/ebooks/linux-101-hacks-free-e-book/</link>
		<comments>http://talkbinary.com/programming/ebooks/linux-101-hacks-free-e-book/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 05:37:11 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[eBooks]]></category>
		<category><![CDATA[101]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1584</guid>
		<description><![CDATA[Slickdeals never fails to amaze me. Today is a deal from The Geek Store offering a free download of their ebook Linux 101 Hacks. Simply go here and enter linuxrocks. Linux 101 Hacks An excerpt from the book&#8230; There are a total of 101 hacks in this book that will help you build a strong<a class="moretag" href="http://talkbinary.com/programming/ebooks/linux-101-hacks-free-e-book/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://talkbinary.com/wp-content/uploads/2009/02/linuxhacks.jpg" alt="linuxhacks" title="linuxhacks" width="175" height="248" class="alignleft size-full wp-image-1585" /> <a href="http://slickdeals.net">Slickdeals</a> never fails to amaze me. Today is a deal from <a href="http://slickdeals.net/?pno=18345&#038;lno=1&#038;afsrc=1">The Geek Store</a> offering a free download of their ebook Linux 101 Hacks. Simply go <a href="http://slickdeals.net/?pno=18345&#038;lno=1&#038;afsrc=1">here</a> and enter <strong>linuxrocks</strong>.</p>
<h3 id="section-1">Linux 101 Hacks</h3>
<blockquote><p>An excerpt from the book&#8230;</p>
<p><i>There are a total of 101 hacks in this book that will help you build a strong foundation in Linux. All the hacks in this book are explained with appropriate Linux commands examples that are easy to follow.</i></p></blockquote>
<p>You can visit the author&#8217;s blog over at <a href="http://www.thegeekstuff.com/">The Geek Stuff</a>. Some of his hacks are on his blog as well. So happy hacking!</p>
<p><br/>I&#8217;ll check it out so I&#8217;ll tell you guys later how it went! So don&#8217;t let this deal slip!<br />
<br/>Remember to subscribe to my <a href="http://feedproxy.google.com/TalkBinary">feed</a> for daily updates!<br />
<br/><br/><br/><br/><br/><br/><br/><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/programming/ebooks/linux-101-hacks-free-e-book/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Start programming in ML</title>
		<link>http://talkbinary.com/programming/start-programming-in-ml/</link>
		<comments>http://talkbinary.com/programming/start-programming-in-ml/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 03:50:21 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ml compiler]]></category>
		<category><![CDATA[smlnj]]></category>
		<category><![CDATA[start programming in ml]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1487</guid>
		<description><![CDATA[ML is a functional programming language. Features include type inference, first class functions, garbage collection, pattern matching, parametric polymorphism, static typing, exception handling, call-by-value evaluation strategy, and algebraic data types. &#8211; Source Examples of functions in ML Below are examples to get you familiar in ML. Syntax and how the language works will be explained<a class="moretag" href="http://talkbinary.com/programming/start-programming-in-ml/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>ML is a <strong>functional</strong> programming language. Features include type inference, first class functions, garbage collection, pattern matching, parametric polymorphism, static typing, exception handling, call-by-value evaluation strategy, and algebraic data types. &#8211; <a href="http://en.wikipedia.org/wiki/ML_(programming_language)">Source</a></p>
<h3 id="section-1">Examples of functions in ML</h3>
<p>Below are examples to get you familiar in ML. Syntax and how the language works will be explained in later tutorials.</p>

<div class="wp_syntax"><div class="code"><pre class="ml" style="font-family:monospace;">(* Factorial Function *)
fun fact n = 
     if n = 0 then 
          1
     else
          n * fact(n-1);
&nbsp;
(* Reverse function *)
fun reverse n = 
     if null n then
          n
     else
          reverse(tl n)@[(hd n)];</pre></div></div>

<h3 id="section-2">How to start Programming in ML</h3>
<p><a href="http://www.smlnj.org/NEWS/110-README.html">The Standard ML of New Jersey</a> provides an interactive compiler for Windows, Linux, amongst others. <a href="http://www.smlnj.org/dist//release/110.0.7/">SML/NJ distribution files</a> are available freely to download.</p>
<h3 id="section-3">Install SML/NJ in Windows</h3>
<p>Simply download the appropriate windows installer at <a href="http://www.smlnj.org/dist//release/110.0.7/">SML/NJ distribution files</a>. After downloading, simply install the files with the installer, restart your computer, and the program is available to run from then on.</p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2009/01/smlnj.jpg" alt="smlnj in windows" title="smlnj" width="450"  /></center><br />
<span id="more-1487"></span></p>
<h3 id="section-4">Install SML/NJ in Linux</h3>
<p>To install SML/NJ in Linux simply complete the following steps.</p>
<pre>1. Open your terminal
2. Type in sudo apt get-install smlnj
3. Complete installation
4. To run smlnj, type in smlnj in your compiler</pre>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/programming/start-programming-in-ml/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>openSuSe &#8211; A Linux Distro worth setting your eye on</title>
		<link>http://talkbinary.com/linux/open-suse-a-linux-distro-worth-setting-your-eye-on/</link>
		<comments>http://talkbinary.com/linux/open-suse-a-linux-distro-worth-setting-your-eye-on/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 05:20:21 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[distribution]]></category>
		<category><![CDATA[distro]]></category>
		<category><![CDATA[eye candy]]></category>
		<category><![CDATA[linux distribution]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[openSuSe]]></category>
		<category><![CDATA[SuSe]]></category>
		<category><![CDATA[YaST]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1129</guid>
		<description><![CDATA[openSuSe is another Linux distribution worth looking at. It&#8217;s listed as the second Major Distribution at Distro Watch so it must be raising more eyebrows than you think. With an easy to use installation that requires little to no previous experience and a better visually appealing boot loading screen by defaut, OpenSuSe is something you<a class="moretag" href="http://talkbinary.com/linux/open-suse-a-linux-distro-worth-setting-your-eye-on/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<div style="float: left; padding: 5px; "><a href="http://talkbinary.com/wp-content/uploads/2008/09/geeko.jpg"><img src="http://talkbinary.com/wp-content/uploads/2008/09/geeko.jpg" alt="" title="geeko" width="129" height="85" class="alignnone size-full wp-image-1130" /></a></div>
<p><a href="http://www.opensuse.org/" rel="nofollow">openSuSe</a> is another Linux distribution worth looking at. It&#8217;s listed as the second Major Distribution at <a href="http://distrowatch.com/dwres.php?resource=major" rel="nofollow"> Distro Watch</a> so it must be raising more eyebrows than you think. With an easy to use installation that requires little to no previous experience and a better visually appealing boot loading screen by defaut, OpenSuSe is something you should try out. I currently use it on my laptop to do some OpenGL programming, and to be honest, it&#8217;s great.<br />
<br/></p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2008/09/opensuse01.jpg" alt="" title="opensuse01" width="450" height="328" class="alignnone size-full wp-image-1132" /></center></p>
<h3 id="section-1">openSuSe at a glance</h3>
<p><a href="http://www.opensuse.org/" rel="nofollow">openSuSe</a> at a light glance seems more driven towards eye candy with the more visually appealing boot loader, login screen, start menu, and ease of adding visual effects. It also has excellent management tool that lets you install software from large repositories, in other words; no need to hunt software down. You can also use YaST Control Center which lets you control Hardware, Network Devices, Network Services, Security, User, and as well control more type of options.<br />
<span id="more-1129"></span><br />
<center> <a href="http://talkbinary.com/wp-content/uploads/2008/09/opensuse02.jpg"><img src="http://talkbinary.com/wp-content/uploads/2008/09/opensuse02-300x284.jpg" alt="" title="opensuse02" width="300" height="284" class="alignnone size-medium wp-image-1133" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/09/opensuse03.jpg"><img src="http://talkbinary.com/wp-content/uploads/2008/09/opensuse03-300x258.jpg" alt="" title="opensuse03" width="300" height="258" class="alignnone size-medium wp-image-1131" /></a></center></p>
<h3 id="section-2">My openSuSe experience</h3>
<p>As for every linux distribution, getting your system&#8217;s hardware to work seamlessly with the distro can be a pain. Luckily, I have an ATI card on my Toshiba laptop, and <a href="http://www.opensuse.org/" rel="nofollow">openSuSe</a> had an excellent<a href="http://en.opensuse.org/ATI_Driver_HOWTO" rel="nofollow"> ATI How To Documentation </a> that got my video card drivers installed with a simple click. </p>
<p>I then got some visual effects and have windows exploding when I exit, have them wobble when I move them, be able to use a cube, and so much more. Hit F9, F10, and F11 and you&#8217;ll get that nice task switcher visualization that is notable on Mac these days. </p>
<p>So far I haven&#8217;t gotten my Atheros Wireless Chipset to work. Why? Simply lazy. I&#8217;ve gotten around by simply using an ethernet cable but I plan on fixing this in the future. I&#8217;ve tried it but it hasn&#8217;t worked as of yet. </p>
<p>Programming is simply great. With the ability to switch Desk Spaces with CTRL+ALT+LEFT or CTRL+ALT+RIGHT, working on large programming files is easy. I simply loved it. </p>
<p>This is so far my distribution as of yet. I haven&#8217;t found a need to get rid of it. So for awhile I&#8217;ll be sticking with <a href="http://www.opensuse.org/" rel="nofollow">openSuSe</a>.</p>
<h3 id="section-3">Your openSuSe experience</h3>
<p><a href="http://youtube.com" rel="nofollow">YouTube</a> is a good resource for finding videos of a linux distribution and what can be done with it. Check the following one out and see for yourself. There are hundreds of different things you can do. Don&#8217;t ask me how its done. I don&#8217;t know. :)</p>
<p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/IMX6kEYrrmU&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/IMX6kEYrrmU&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></center></p>
<p>So please, don&#8217;t tell me you&#8217;ve only tried Windows! If you don&#8217;t, then tell us what you&#8217;ve tried on our <a href="http://talkbinary.com/forums/index.php?topic=69.msg182#new">forums</a>! If you have a video, why don&#8217;t you share it?</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/linux/open-suse-a-linux-distro-worth-setting-your-eye-on/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: talkbinary.com @ 2012-02-11 13:08:31 -->
