<?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>pungit.com &#187; Linux</title>
	<atom:link href="http://www.pungit.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pungit.com</link>
	<description>Computer Tips, Tricks, Howtos, PSP, Anime, Linux</description>
	<lastBuildDate>Mon, 27 Jul 2009 14:54:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Split or Merge File on Linux</title>
		<link>http://www.pungit.com/linux/split-or-merge-file-on-linux/</link>
		<comments>http://www.pungit.com/linux/split-or-merge-file-on-linux/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 12:50:58 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[merge files on linux]]></category>
		<category><![CDATA[split files on linux]]></category>

		<guid isPermaLink="false">http://www.pungit.com/?p=278</guid>
		<description><![CDATA[If you are using Windows operating system, you have to install third party program to be able to split large file into a few small files. But for Linux user you can use split command to do the task. It is a small program but do the job effectively. For example if you have 2 [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using Windows operating system, you have to install third party program to be able to split large file into a few small files. But for Linux user you can use split command to do the task. It is a small program but do the job effectively. For example if you have 2 GB files and want to split it into four files of 500 MB each, you can use the following command. </p>
<p><span id="more-278"></span></p>
<pre>
split --b=500m original part
</pre>
<p>The program will creates four files with 500 MB each. <em>original</em> is the file that you want to split and <em>part</em> is the prefix of the split files. In this example the split command will create partaa, partab, partac and partad.</p>
<p>If you want to restore or merge the split files use the following command </p>
<pre>
cat partaa partab partac partad > mergefiles
</pre>
<p>This will merges the four files and named the files mergefiles. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.pungit.com/linux/split-or-merge-file-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring WordPress to send email using Gmail on Debian</title>
		<link>http://www.pungit.com/linux/configuring-wordpress-to-send-email-using-gmail-on-debian/</link>
		<comments>http://www.pungit.com/linux/configuring-wordpress-to-send-email-using-gmail-on-debian/#comments</comments>
		<pubDate>Tue, 26 May 2009 13:39:03 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[ssmtp on debian]]></category>
		<category><![CDATA[wordpress using gmail]]></category>

		<guid isPermaLink="false">http://www.pungit.com/?p=186</guid>
		<description><![CDATA[1. Install ssmtp using the following command. apt-get install ssmtp 2. Edit ssmtp.conf nano /etc/ssmtp/ssmtp.conf Now update or add the following configuration to the ssmtp.conf mailhub=smtp.gmail.com:587 AuthUser=user@gmail.com AuthPass=YourGmailPassword FromLineOverride=YES UseSTARTTLS=YES You should replace user@gmail.com with your gmail email address. 3. Now you can test the ssmtp if its work or not by typing the following [...]]]></description>
			<content:encoded><![CDATA[<p>1. Install ssmtp using the following command.</p>
<pre>apt-get install ssmtp</pre>
<p>2. Edit ssmtp.conf</p>
<pre>nano /etc/ssmtp/ssmtp.conf</pre>
<p>Now update or add the following configuration to the ssmtp.conf</p>
<pre>mailhub=smtp.gmail.com:587
AuthUser=user@gmail.com
AuthPass=YourGmailPassword
FromLineOverride=YES
UseSTARTTLS=YES</pre>
<p>You should replace user@gmail.com with your gmail email address.</p>
<p><span id="more-186"></span></p>
<p>3. Now you can test the ssmtp if its work or not by typing the following command in the terminal.</p>
<pre>echo “Hello World!” | mail –s “Hello” user@domain.com</pre>
<p>Please change <em>user@domain.com</em> with your email address.</p>
<p>Within a few second you will receive the email message. If its doesn’t works please check your ssmtp.conf.</p>
<p>4. Finally its time to set your wordpress installation to use sendmail instead of mail().</p>
<p>Open pluggable.php (located at wp-includes) with your favorite text editor.</p>
<p>Find the following text.</p>
<pre>// Set to use PHP mail()
$phpmailer -&gt; IsMail();</pre>
<p>Replace <em>$phpmailer -&gt; IsMail();</em> with :</p>
<pre>$phpmailer -&gt; IsSendmail();</pre>
<p>Now your wordpress blog will be able to send email with your gmail email account.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pungit.com/linux/configuring-wordpress-to-send-email-using-gmail-on-debian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Access Your Linux Partition from Windows</title>
		<link>http://www.pungit.com/linux/access-your-linux-partition-from-windows/</link>
		<comments>http://www.pungit.com/linux/access-your-linux-partition-from-windows/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 14:55:41 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[DiskInternals Linux Reader]]></category>
		<category><![CDATA[Explore2fs]]></category>
		<category><![CDATA[IFS For Windows]]></category>

		<guid isPermaLink="false">http://www.pungit.com/?p=106</guid>
		<description><![CDATA[I have a dual boot system (Arch Linux and Windows XP). When I boot my Linux OS I have no problem accessing my Windows XP partition because Linux support mounting NTFS and FAT file system. But Windows do not support mounting or accessing other file system beside its own file system without any third party [...]]]></description>
			<content:encoded><![CDATA[<p>I have a dual boot system (<a href="http://www.archlinux.org" target="_blank">Arch Linux</a> and Windows XP). When I boot my Linux OS I have no problem accessing my Windows XP partition because Linux support mounting NTFS and FAT file system. But Windows do not support mounting or accessing other file system beside its own file system without any third party software or drivers.  So I tried Google to find the programs that help me to access my Linux partition. And, I found 3 useful software that can be use to access Linux partition if you have a dual boot system like me.<span id="more-106"></span></p>
<p><strong>1. Explore2fs</strong></p>
<p>Explore2fs can be downloaded at <a href="http://www.chrysocome.net/explore2fs" target="_blank">http://www.chrysocome.net/explore2fs</a>. It supports Windows 9x, ME, XP, 2000 and Windows Server 2003. Explore2fs is a small program and you only need to extract the archive you downloaded and run the program directly without any installation needed. The interface is like old Windows Explorer and its support drag and drop. Its can view all files from your Linux ext2/ext3 partition. But you can’t edit the files as it’s a read only. In order to edit your files in the Linux partition you have to copy the file to your Windows partition.</p>
<p style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/02/explore2fs.png"><img class="size-full wp-image-107 aligncenter" title="Explore2fs" src="http://www.pungit.com/wp-content/uploads/2009/02/explore2fs.png" alt="Explore2fs" width="461" height="319" /></a></p>
<p><strong>2. Ext2 IFS For Windows</strong></p>
<p>The program is available for download at <a href="http://www.fs-driver.org/" target="_blank">http://www.fs-driver.org/</a>. This program will enable you to access your Linux partition from Windows Explorer just like any other Windows partition and it will have its own drive letter. You can either select the drive letter during the installation or set it later by go to the control panel and double click IFS Drives. Beside that if you don’t enable read only mode during installation the program will allow you to write to your Linux partition. But make sure you have already back up all your data before proceeds. One of the advantages of this program is that you can preview you files on the Linux partition just like your files on Windows partition.</p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/02/ifs_drives.png"><img class="size-full wp-image-108 aligncenter" title="IFS Drives" src="http://www.pungit.com/wp-content/uploads/2009/02/ifs_drives.png" alt="IFS Drives" width="461" height="319" /></a></p>
<p><strong>3. DiskInternals Linux Reader</strong><br />
DiskInternals Linux Reader is another program that enable you to access your Linux partition from Windows. You can download the software at <a href="http://www.diskinternals.com/linux-reader/" target="_blank">http://www.diskinternals.com/linux-reader/</a>. Once install, you can run the program from your start menu. The interface is like Windows Explorer and its easy to use. You can view your ext2/ext3 Linux partition but no write mode is allowed. Like Explorer2fs, you can only preview your files on your Linux partition after you copy it to your Windows partition.</p>
<p style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/02/diskinternals_linux_reader.png"><img class="aligncenter size-full wp-image-109" title="Diskinternals Linux Reader" src="http://www.pungit.com/wp-content/uploads/2009/02/diskinternals_linux_reader.png" alt="Diskinternals Linux Reader" width="500" height="342" /></a></p>
<p>Among the 3 programs, I like Ext2 IFS For Windows the most because I can easily access my Linux partition not only from Windows Explorer but from other programs too. It not only auto mounted all my Linux partition during start up but also assigned it own drive letter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pungit.com/linux/access-your-linux-partition-from-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Browse Safely Using Virtualbox and Damn Small Linux</title>
		<link>http://www.pungit.com/software/browse-safely-using-virtualbox-and-damn-small-linux-dsl/</link>
		<comments>http://www.pungit.com/software/browse-safely-using-virtualbox-and-damn-small-linux-dsl/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 09:20:30 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[avoid virus]]></category>
		<category><![CDATA[Browse safely]]></category>
		<category><![CDATA[Damn Small Linux]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[Virtualbox]]></category>

		<guid isPermaLink="false">http://www.pungit.com/?p=27</guid>
		<description><![CDATA[Nowadays the internet is become the main medium for spreading viruses and spyware. So its become more dangerous to surf the internet without any protection. Users have to frequently update their anti-virus and spyware definition in order to protect themselves against those viruses. But even if with all of this protection, there is still a [...]]]></description>
			<content:encoded><![CDATA[<p>Nowadays the internet is become the main medium for spreading <a href="http://en.wikipedia.org/wiki/Virus" target="_blank">viruses</a> and <a href="http://en.wikipedia.org/wiki/Spyware" target="_blank">spyware</a>. So its become more dangerous to surf the internet without any protection. Users have to frequently update their anti-virus and spyware definition in order to protect themselves against those viruses. But even if with all of this protection, there is still a change that your computer will infected with new viruses or spyware.</p>
<p>One way to ensure your computer safety is to create a virtual machine and use it to surf the internet by running <a href="http://en.wikipedia.org/wiki/Linux" target="_blank">Linux</a> <a href="http://en.wikipedia.org/wiki/Live_CD" target="_blank">Live CD</a>. <span id="more-27"></span>When the virtual machine get infected with viruses you can get rid of it by simply rebooting the virtual machine. Because with Linux Live CD, the files/configuration you created during the session will be cleared when you shutdown or reboot the system. Beside that the possibility that Linux system get infected with viruses or spyware is low.</p>
<p>To create a virtual machine  you have to download <a href="http://www.virtualbox.org" target="_blank">Virtualbox </a>from <a href="http://www.virtualbox.org/wiki/Downloads">http://www.virtualbox.org/wiki/Downloads</a> and <a href="http://damnsmalllinux.org" target="_blank">Damn Small Linux</a> ISO image from <a href="http://damnsmalllinux.org/download.html">http://damnsmalllinux.org/download.html</a>. It will take a while to depend on your internet speed connection. Once the download complete. Double click the Virtualbox installer to install it. The installation process for Virtualbox is straight forward. If you have an experienced installing software before you will have no problem installing Virtualbox.</p>
<p>Once the installation complete, you can start the program by double clicking the short cut from the desktop or start menu.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox1.png"><img class="aligncenter size-full wp-image-49" title="Virtualbox Main Window" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox1.png" alt="Virtualbox Main Window" width="392" height="293" /></a></p>
<p>Before you can boot DSL you need to create new virtual machine. To do that click <strong>Machine</strong> and select <strong>New. </strong></p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox02.png"><img class="aligncenter size-full wp-image-29" title="Creating New Virtual Machine Wizard 1" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox02.png" alt="Creating New Virtual Machine Wizard 1" width="362" height="326" /></a></p>
<p>Now click <strong>Next</strong> and enter your desire name for your virtual machine in the textbox below the <strong>Name. </strong>Select <strong>Linux</strong> from the combo box for <strong>Operating System</strong> and select <strong>Linux 2.4</strong> for <strong>Version </strong>and click the <strong>Next</strong> button.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox03.png"><img class="aligncenter size-full wp-image-30" title="Set Name And OS type" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox03.png" alt="virtualbox03" width="362" height="326" /></a></p>
<p>The next step is to select your desire physical memory to allocate to your virtual machine. Set it to <strong>128 MB</strong> or higher depend on your computer available physical memory. But 128 MB would be enough to run DSL.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox04.png"><img class="aligncenter size-full wp-image-31" title="Allocate Memory for Virtual Machine" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox04.png" alt="Allocate Memory for Virtual Machine" width="362" height="326" /></a></p>
<p>Now you need to create virtual hard disk for the virtual machine. Click <strong>New</strong> button.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox05.png"><img class="aligncenter size-full wp-image-32" title="Virtual Hard Disk Wizard" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox05.png" alt="Virtual Hard Disk Wizard" width="362" height="326" /></a></p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox06.png"><img class="aligncenter size-full wp-image-33" title="Virtual Hard Wizard" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox06.png" alt="Virtual Hard Wizard" width="362" height="326" /></a></p>
<p>Another welcome message will show up, click <strong>Next</strong>.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox07.png"><img class="aligncenter size-full wp-image-34" title="Hard Disk Storage Type" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox07.png" alt="Hard Disk Storage Type" width="362" height="326" /></a></p>
<p>Select <strong>Dynamically expanding storage</strong> then <strong>Next</strong>.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox08.png"><img class="aligncenter size-full wp-image-35" title="Virtual Disk Location And Type" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox08.png" alt="Virtual Disk Location And Type" width="362" height="326" /></a></p>
<p>Leave the default for <strong>Location</strong>. But set the virtual disk size <span> </span>to <strong>50 MB</strong> then click <strong>Next.</strong></p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox09.png"><img class="aligncenter size-full wp-image-36" title="Virtual Disk Summary" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox09.png" alt="Virtual Disk Summary" width="362" height="326" /></a></p>
<p>The wizard will show the summary of the virtual disk you just created. Press <strong>Finish</strong> to complete the virtual disk setup.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox10.png"><img class="aligncenter size-full wp-image-37" title="Select A Virtual Hard Disk" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox10.png" alt="Select A Virtual Hard Disk" width="362" height="326" /></a></p>
<p>Now you have 50 MB virtual disk allocated for DSL, click <strong>Next</strong>.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox11.png"><img class="aligncenter size-full wp-image-38" title="Virtual Machine Summary" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox11.png" alt="Virtual Machine Summary" width="362" height="326" /></a></p>
<p>Congratulation you have successfully created your DSL virtual machine.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox12.png"><img class="aligncenter size-full wp-image-39" title="Virtualbox Main Window after creating a virtual machine" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox12.png" alt="Virtualbox Main Window after creating a virtual machine" width="392" height="293" /></a></p>
<p>Before you can start the virtual machine you need to mount your DSL ISO image. To do that click on <strong>CD/DVD-ROM</strong>. Checked the Mount CD/DVD Drive checkbox and select ISO Image File. Now click the icon in the right side of the combo box.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox13.png"><img class="aligncenter size-full wp-image-40" title="Mount ISO Image" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox13.png" alt="Mount ISO Image" width="366" height="330" /></a></p>
<p>Click <strong>Add</strong> icon in the toolbar. And browse to the location where you download your DSL ISO image and select the image and click <strong>Open</strong>.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox14.png"><img class="aligncenter size-full wp-image-41" title="Select ISO Image" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox14.png" alt="Select ISO Image" width="377" height="295" /></a></p>
<p class="MsoNormal" style="text-align: justify;">Click <strong>Select</strong> button to mount the ISO image.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox15.png"><img class="aligncenter size-full wp-image-43" title="Virtual Box With DSL VM" src="http://www.pungit.com/wp-content/uploads/2009/01/virtualbox15.png" alt="Virtual Box With DSL VM" width="392" height="293" /></a></p>
<p class="MsoNormal" style="text-align: justify;">Now you can start the virtual machine by pressing the button <strong>Start</strong> in the toolbar.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/dsl-grub.png"><img class="aligncenter size-full wp-image-44" title="DSL Grum Splash Screen" src="http://www.pungit.com/wp-content/uploads/2009/01/dsl-grub.png" alt="DSL Grum Splash Screen" width="414" height="353" /></a></p>
<p class="MsoNormal" style="text-align: justify;">When the GRUB splash screen appear press <strong>Enter</strong> to boot DSL.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/dsl-booting.png"><img class="aligncenter size-full wp-image-45" title="DSL booting on Virtualbox" src="http://www.pungit.com/wp-content/uploads/2009/01/dsl-booting.png" alt="DSL booting on Virtualbox" width="552" height="397" /></a></p>
<p class="MsoNormal" style="text-align: justify;">DSL will only take a few second to boot in the virtual machine environment. You can access the system menu by right/left click on the DSL desktop.</p>
<p class="MsoNormal" style="text-align: center;"><a href="http://www.pungit.com/wp-content/uploads/2009/01/dsl-run-firefox.png"><img class="aligncenter size-full wp-image-47" title="DSL run Firefox " src="http://www.pungit.com/wp-content/uploads/2009/01/dsl-run-firefox.png" alt="DSL run Firefox " width="553" height="398" /></a></p>
<p class="MsoNormal" style="text-align: justify;">DSL will run in windows mode but you can access the full screen mode press Left Ctrl + F.  Now you can surf the internet safely without worrying about your computer being infected with virus or spyware. Happy surfing&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pungit.com/software/browse-safely-using-virtualbox-and-damn-small-linux-dsl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
