<?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>PHP Architect blog &#187; Linux</title>
	<atom:link href="http://www.php-architect.com/blog/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.php-architect.com/blog</link>
	<description>PHP, MySQL, ZF, Python, Linux, Mac, C++, Java, Flex, Air, ActionScript &#38; apps development.</description>
	<lastBuildDate>Sun, 13 Jun 2010 18:25:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=1924</generator>
		<item>
		<title>Compress and Split large files under Linux</title>
		<link>http://www.php-architect.com/blog/2010/06/06/compress-and-split-large-files-under-linux/</link>
		<comments>http://www.php-architect.com/blog/2010/06/06/compress-and-split-large-files-under-linux/#comments</comments>
		<pubDate>Sun, 06 Jun 2010 11:36:57 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[compress]]></category>
		<category><![CDATA[split]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=415</guid>
		<description><![CDATA[One of the common problems i used to face is transferring large files from Linux through mediums that doesn&#8217;t support large files, especially when it comes to more than 100 GB files, usually that is a virtual machine hard disk, or backup file. To compress and split files under linux, this command can be used: [...]


Related posts:<ol><li><a href='http://www.php-architect.com/blog/2010/05/01/getting-wireless-to-work-on-lenovo-thinkpad-t400-with-ubuntu-10-4-lucid/' rel='bookmark' title='Permanent Link: Getting Wireless to work on Lenovo Thinkpad T400 with Ubuntu 10.4 Lucid'>Getting Wireless to work on Lenovo Thinkpad T400 with Ubuntu 10.4 Lucid</a></li>
<li><a href='http://www.php-architect.com/blog/2010/05/01/good-solaris-how-to-list/' rel='bookmark' title='Permanent Link: Good Solaris How To list'>Good Solaris How To list</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>One of the common problems i used to face is transferring large files from Linux through mediums that doesn&#8217;t support large files, especially when it comes to more than 100 GB files, usually that is a virtual machine hard disk, or backup file.</p>
<p>To compress and split files under linux, this command can be used:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-cvj</span> large-file.dvi <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">split</span> <span style="color: #660033;">-b</span> 1000m <span style="color: #660033;">-d</span> - <span style="color: #ff0000;">&quot;small-files.tar.bz.&quot;</span></pre></div></div>

<p>This command will compress and split the &#8220;large-file.dvi&#8221; to many files with size 1000mb for each, giving it the name &#8220;small-files.tar.bz.0, small-files.tar.bz.1, etc&#8230;.&#8221;</p>
<p>To join the files together again, this command can be used:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> small-files.tar.bz.<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">&gt;</span> large-file.tar.bz</pre></div></div>

<p>and to extract the output file :</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xvj</span> large-file.tar.bz</pre></div></div>

<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.php-architect.com/blog/2010/05/01/getting-wireless-to-work-on-lenovo-thinkpad-t400-with-ubuntu-10-4-lucid/' rel='bookmark' title='Permanent Link: Getting Wireless to work on Lenovo Thinkpad T400 with Ubuntu 10.4 Lucid'>Getting Wireless to work on Lenovo Thinkpad T400 with Ubuntu 10.4 Lucid</a></li>
<li><a href='http://www.php-architect.com/blog/2010/05/01/good-solaris-how-to-list/' rel='bookmark' title='Permanent Link: Good Solaris How To list'>Good Solaris How To list</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2010/06/06/compress-and-split-large-files-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Solaris How To list</title>
		<link>http://www.php-architect.com/blog/2010/05/01/good-solaris-how-to-list/</link>
		<comments>http://www.php-architect.com/blog/2010/05/01/good-solaris-how-to-list/#comments</comments>
		<pubDate>Sat, 01 May 2010 12:32:39 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=387</guid>
		<description><![CDATA[Was looking for a way to grep for something in a subdirectory and stopped by this short but usefull Solaris How To list. The grep item works with unix / linux boxes as well. http://jeffnester.com/howtos/solaris/solaris.html enjoy the power of shell No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Was looking for a way to grep for something in a subdirectory and stopped by this short but usefull Solaris How To list.</p>
<p>The grep item works with unix / linux boxes as well.</p>
<p><a href="http://jeffnester.com/howtos/solaris/solaris.html" target="_blank">http://jeffnester.com/howtos/solaris/solaris.html</a></p>
<p>enjoy the power of shell <img src='http://www.php-architect.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2010/05/01/good-solaris-how-to-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Java plugin for Firefox on Ubuntu 10.4 (Lucid)</title>
		<link>http://www.php-architect.com/blog/2010/05/01/installing-java-plugin-for-firefox-on-ubuntu-10-4-lucid/</link>
		<comments>http://www.php-architect.com/blog/2010/05/01/installing-java-plugin-for-firefox-on-ubuntu-10-4-lucid/#comments</comments>
		<pubDate>Sat, 01 May 2010 09:41:17 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=379</guid>
		<description><![CDATA[After upgrading from Ubuntu 9.10 to 10.4, I had some issues getting Java to work with Firefox, after checking the software center, I found that the Java plugin has been removed. To get this fixed, I simply followed the steps in here http://ubuntuforums.org/showpost.php?p=9008918&#38;postcount=32 and it worked well after that. Related posts:Installing Zend Server on Ubuntu [...]


Related posts:<ol><li><a href='http://www.php-architect.com/blog/2010/06/06/installing-zend-server-on-ubuntu-10-04/' rel='bookmark' title='Permanent Link: Installing Zend Server on Ubuntu 10.04'>Installing Zend Server on Ubuntu 10.04</a></li>
<li><a href='http://www.php-architect.com/blog/2010/05/01/getting-wireless-to-work-on-lenovo-thinkpad-t400-with-ubuntu-10-4-lucid/' rel='bookmark' title='Permanent Link: Getting Wireless to work on Lenovo Thinkpad T400 with Ubuntu 10.4 Lucid'>Getting Wireless to work on Lenovo Thinkpad T400 with Ubuntu 10.4 Lucid</a></li>
<li><a href='http://www.php-architect.com/blog/2009/11/11/fix-for-zend-studio-7-button-problems-in-ubuntu-9-10-karmic-koala/' rel='bookmark' title='Permanent Link: Fix for Zend Studio 7 Button Problems in Ubuntu 9.10 &#8220;Karmic Koala&#8221;'>Fix for Zend Studio 7 Button Problems in Ubuntu 9.10 &#8220;Karmic Koala&#8221;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>After upgrading from Ubuntu 9.10 to 10.4, I had some issues getting Java to work with Firefox, after checking the software center, I found that the Java plugin has been removed.</p>
<p>To get this fixed, I simply followed the steps in here <a href="http://ubuntuforums.org/showpost.php?p=9008918&amp;postcount=32" target="_blank">http://ubuntuforums.org/showpost.php?p=9008918&amp;postcount=32</a> and it worked well after that.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>Related posts:<ol><li><a href='http://www.php-architect.com/blog/2010/06/06/installing-zend-server-on-ubuntu-10-04/' rel='bookmark' title='Permanent Link: Installing Zend Server on Ubuntu 10.04'>Installing Zend Server on Ubuntu 10.04</a></li>
<li><a href='http://www.php-architect.com/blog/2010/05/01/getting-wireless-to-work-on-lenovo-thinkpad-t400-with-ubuntu-10-4-lucid/' rel='bookmark' title='Permanent Link: Getting Wireless to work on Lenovo Thinkpad T400 with Ubuntu 10.4 Lucid'>Getting Wireless to work on Lenovo Thinkpad T400 with Ubuntu 10.4 Lucid</a></li>
<li><a href='http://www.php-architect.com/blog/2009/11/11/fix-for-zend-studio-7-button-problems-in-ubuntu-9-10-karmic-koala/' rel='bookmark' title='Permanent Link: Fix for Zend Studio 7 Button Problems in Ubuntu 9.10 &#8220;Karmic Koala&#8221;'>Fix for Zend Studio 7 Button Problems in Ubuntu 9.10 &#8220;Karmic Koala&#8221;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2010/05/01/installing-java-plugin-for-firefox-on-ubuntu-10-4-lucid/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP is Now</title>
		<link>http://www.php-architect.com/blog/2009/05/06/php-is-now/</link>
		<comments>http://www.php-architect.com/blog/2009/05/06/php-is-now/#comments</comments>
		<pubDate>Wed, 06 May 2009 09:26:35 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=313</guid>
		<description><![CDATA[Lots of people asks the question why php, i guess this article titles &#8220;PHP is Now&#8221; by Cal Evans is the Director of the PHP Center for Expertise at Ibuildings, will help those who asks, to know what is the powers of this great tool. article URL: http://www.ibuildings.com/blog/archives/1554-PHP-is-NOW.html No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Lots of people asks the question why php, i guess this article titles &#8220;PHP is Now&#8221; by Cal Evans is the Director of the PHP Center for Expertise at Ibuildings, will help those who asks, to know what is the powers of this great tool.</p>
<p>article URL:<a title="Cal Evans - PHP is Now" href="http://www.ibuildings.com/blog/archives/1554-PHP-is-NOW.html" target="_blank"> http://www.ibuildings.com/blog/archives/1554-PHP-is-NOW.html</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2009/05/06/php-is-now/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install Yum on RHEL4</title>
		<link>http://www.php-architect.com/blog/2009/02/23/install-yum-on-rhel4/</link>
		<comments>http://www.php-architect.com/blog/2009/02/23/install-yum-on-rhel4/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 12:09:50 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[rhel4]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=257</guid>
		<description><![CDATA[In my company they purchased some software from Autodesk that comes on Redhat Enterprise 4, i needed to install some packages on the system for the use of some internal applications, instead of installing packages and all the dependencies, i though using automatic installer like yum would be better, below is the steps to have [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>In my company they purchased some software from Autodesk that comes on Redhat Enterprise 4, i needed to install some packages on the system for the use of some internal applications, instead of installing packages and all the dependencies, i though using automatic installer like yum would be better, below is the steps to have yum installed on your RHEL4 machine :</p>
<p>1. Install rhel4<br />
2. Download Yum rpm package</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>gd.tuwien.ac.at<span style="color: #000000; font-weight: bold;">/</span>opsys<span style="color: #000000; font-weight: bold;">/</span>linux<span style="color: #000000; font-weight: bold;">/</span>yum<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">2.0</span><span style="color: #000000; font-weight: bold;">/</span>yum-2.0.5-1.noarch.rpm</pre></div></div>

<p>3. Install the package</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rpm <span style="color: #660033;">-Uvh</span> yum-2.0.5-1.noarch.rpm</pre></div></div>

<p>4. Edit repositories location</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">nano</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>yum.conf</pre></div></div>

<p>Change the baseurl in [base] to</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">http://mirror.centos.org/centos/4/os/$basearch/</pre></div></div>

<p>Change the baseurl in [updates] to</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">http://mirror.centos.org/centos/4/updates/$basearch/</pre></div></div>

<p>5- Install the full yum with all its dependencies.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> yum</pre></div></div>

<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2009/02/23/install-yum-on-rhel4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting bin image to iso on Ubuntu</title>
		<link>http://www.php-architect.com/blog/2009/02/04/converting-bin-image-to-iso-on-ubuntu/</link>
		<comments>http://www.php-architect.com/blog/2009/02/04/converting-bin-image-to-iso-on-ubuntu/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 10:39:23 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[bchunk]]></category>
		<category><![CDATA[bin]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[iso]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=168</guid>
		<description><![CDATA[Well, first you have to install bchunk sudo apt-get install bchunk then use the command as following to convert the image bchunk image.bin image.cue image.iso and the bin image will be converted to iso one in the same folder. No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Well, first you have to install bchunk</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> bchunk</pre></div></div>

<p>then use the command as following to convert the image</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">bchunk image.bin image.cue image.iso</pre></div></div>

<p>and the bin image will be converted to iso one in the same folder.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2009/02/04/converting-bin-image-to-iso-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable sudo password prompt in Linux</title>
		<link>http://www.php-architect.com/blog/2008/12/24/how-to-disable-sudo-password-prompt-in-linux/</link>
		<comments>http://www.php-architect.com/blog/2008/12/24/how-to-disable-sudo-password-prompt-in-linux/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 01:29:57 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[super user]]></category>
		<category><![CDATA[vi]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=94</guid>
		<description><![CDATA[well, sometimes i want to execute commands as super user without being asked for password each time to do that to do that its pretty easy open the terminal and type this command : sudo visudo and uncomment the following line : # %sudo ALL=NOPASSWD: ALL save the file by pressing escape then typing :wq [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>well, sometimes i want to execute commands as super user without being asked for password each time to do that</p>
<p>to do that its pretty easy</p>
<p>open the terminal and type this command :</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> visudo</pre></div></div>

<p>and uncomment the following line :</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;"># %sudo ALL=NOPASSWD: ALL</pre></div></div>

<p>save the file by pressing escape then typing :wq and pressing enter.</p>
<p>from now on you will not be asked when executing the command as super user using sudo.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2008/12/24/how-to-disable-sudo-password-prompt-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flowchart applications on Ubuntu</title>
		<link>http://www.php-architect.com/blog/2008/09/04/flowchart-applications-on-ubuntu/</link>
		<comments>http://www.php-architect.com/blog/2008/09/04/flowchart-applications-on-ubuntu/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 19:27:22 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[Favorites]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[dia]]></category>
		<category><![CDATA[flowchart]]></category>
		<category><![CDATA[kivio]]></category>
		<category><![CDATA[mind mapping]]></category>
		<category><![CDATA[smartdraw]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=102</guid>
		<description><![CDATA[If you would like to draw diagrams and flowcharts on your ubuntu there is 2 programs that is alternative to smart draw on windows : Dia to install type the following command in terminal : sudo apt-get install dia Kivio to install type the following command in terminal : sudo apt-get install kivio U can [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>If you would like to draw diagrams and flowcharts on your ubuntu there is 2 programs that is alternative to smart draw on windows :</p>
<ul>
<li>Dia</li>
</ul>
<p style="text-align: center;"><a href="http://www.gnome.org/projects/dia/"><img class="aligncenter" title="Dia" src="http://www.gnome.org/projects/dia/images/mainwin2.gif" alt="" width="89" height="200" /></a></p>
<p style="text-align: center;"><a href="http://www.php-architect.com"><img class="aligncenter" title="Dia" src="http://www.gnome.org/projects/dia/images/umlclass2.gif" alt="" width="216" height="229" /></a></p>
<p style="text-align: center;"><a href="http://www.php-architect.com"><img class="aligncenter" title="Dia" src="http://www.gnome.org/projects/dia/images/workspac2.gif" alt="" width="217" height="193" /></a></p>
<p style="text-align: left;">to install type the following command in terminal :</p>
<p style="text-align: left;">

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> dia</pre></div></div>

<ul>
<li>Kivio</li>
</ul>
<p><a href="http://www.koffice.org/kivio/"><img class="aligncenter" title="Kivio" src="http://www.koffice.org/kivio/pics/kivio_svn060127_330.png" alt="" width="343" height="245" /></a></p>
<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter" style="width: 620px;">
<dt class="wp-caption-dt"><a href="http://www.koffice.org/kivio/"><img src="http://www.koffice.org/kivio/pics/kivio_basic.png" alt="Kivio" width="610" height="428" /></a></dt>
</dl>
</div>
<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter" style="width: 631px;">
<dt class="wp-caption-dt"><a href="http://www.koffice.org/kivio/"><img src="http://www.koffice.org/kivio/pics/kivio-cvs20030706.png" alt="Kivio" width="621" height="467" /></a></dt>
</dl>
</div>
<p style="text-align: left;">to install type the following command in terminal :</p>
<p style="text-align: left;">

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> kivio</pre></div></div>

<p>U can use them also to draw mind maps</p>
<p>enjoy <img src='http://www.php-architect.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2008/09/04/flowchart-applications-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to read chm files on Ubuntu</title>
		<link>http://www.php-architect.com/blog/2008/08/31/how-to-read-chm-files-on-ubuntu/</link>
		<comments>http://www.php-architect.com/blog/2008/08/31/how-to-read-chm-files-on-ubuntu/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 13:39:11 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Favorites]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[chm]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=98</guid>
		<description><![CDATA[This can be easily done with install GnoCHM, the CHM viewere for Linux you can install it by executing this command in the terminal sudo apt-get install gnochm enjoy No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>This can be easily done with install GnoCHM, the CHM viewere for Linux</p>
<p>you can install it by executing this command in the terminal</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> gnochm</pre></div></div>

<p>enjoy <img src='http://www.php-architect.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2008/08/31/how-to-read-chm-files-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux Terminal Commands Guide</title>
		<link>http://www.php-architect.com/blog/2008/07/27/linux-terminal-commands-guide/</link>
		<comments>http://www.php-architect.com/blog/2008/07/27/linux-terminal-commands-guide/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 10:26:56 +0000</pubDate>
		<dc:creator>Me2resh</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Favorites]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.php-architect.com/blog/?p=72</guid>
		<description><![CDATA[Hey folks, a friend asked me for a nice guide to learn the Linux commands, so i made a search for him and found some cool links straight to the point guide for beginners : http://linux.org.mt/article/terminal it covers the following topics : * Introduction * Preparation * The &#8220;Bash&#8221; shell * A simple command * [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Hey folks, </p>
<p>a friend asked me for a nice guide to learn the Linux commands, so i made a search for him and found some cool links </p>
<p>straight to the point guide for beginners :<br />
<a href="http://linux.org.mt/article/terminal">http://linux.org.mt/article/terminal</a></p>
<p>it covers the following topics :<br />
    * Introduction<br />
    * Preparation<br />
    * The &#8220;Bash&#8221; shell<br />
    * A simple command<br />
    * Obtaining help<br />
    * Linux Directories<br />
    * Linux Files<br />
    * Wildcards<br />
    * Typing Tricks<br />
    * Redirecting Output<br />
    * Environment variables<br />
    * Scripts<br />
    * Aliases<br />
    * Switching to root<br />
    * Compiling from source<br />
    * Conclusion</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Alphabetical Directory of Linux Commands<br />
<a href="http://www.oreillynet.com/linux/cmd/">http://www.oreillynet.com/linux/cmd/</a></p>
<p>a complete directory of Linux commands</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Linux shortcuts and commands<br />
<a href="http://www.unixguide.net/linux/linuxshortcuts.shtml">http://www.unixguide.net/linux/linuxshortcuts.shtml</a></p>
<p>This is a practical selection of the commands we use most often</p>
<p>if you have more cool guides, please post in comments</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.php-architect.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.php-architect.com/blog/2008/07/27/linux-terminal-commands-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
