<?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>:: TechBlog :: &#187; Linux</title>
	<atom:link href="http://techblog.touchbasic.com/html/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.touchbasic.com/html</link>
	<description>Techblog is collection of articles covering a wide variety of tech related topics including: Linux, Microsoft, Google, web development, web design, open source, wordpress, security, and more.</description>
	<lastBuildDate>Thu, 04 Mar 2010 15:51:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting up a Minimal Samba Server in Fedora Core 12</title>
		<link>http://techblog.touchbasic.com/html/setting-up-a-minimal-samba-server-in-fedora-core-12/</link>
		<comments>http://techblog.touchbasic.com/html/setting-up-a-minimal-samba-server-in-fedora-core-12/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 04:58:47 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Fedora Code]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=505</guid>
		<description><![CDATA[Goal:
Minimal FC12 Samba install with low RAM usage, high security, and least amount of configuration.
Why?
Quickly turn an older machine into a modern Fedora Core 12 file server compatible with linux and windows clients. Less software installed means less setup, less maintenance, less updates, and less chance of human error somewhere along the way. The theory [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Goal:</strong><br />
Minimal FC12 <a href="http://www.samba.org/">Samba</a> install with low RAM usage, high security, and least amount of configuration.</p>
<p><strong>Why?</strong><br />
Quickly turn an older machine into a modern Fedora Core 12 file server compatible with linux and windows clients. Less software installed means less setup, less maintenance, less updates, and less chance of human error somewhere along the way. The theory here is, the system starts out relatively secure and (if kept up-to-date) should remains so over time.</p>
<p><strong>Side Note:</strong><br />
There are definitely many other ways to go about setting up a Samba server, much of which depends on your networking environment and overall requirements / constraints. This article is meant more as a guide &#8211; my notes which describe the method i happen to use &#8211; so that if i have to, i can do it all again.</p>
<p><strong>Assumptions:</strong><br />
- Comfortable with install and use of Fedora Core Linux OS (command line)<br />
- Basic understanding of networking concepts (setting up a static IP)<br />
- Some experience with editing the smb.conf file</p>
<p><strong>Features:</strong><br />
- No GUI / Desktop Environment<br />
- Low RAM usage: boots up @ ~80MB with smbd and nmbd running<br />
- SELinux and iptables firewall enabled / configured for use with Samba<br />
- Samba Security level = User</p>
<p><strong>System Resources:</strong><br />
CPU: AMD @ 700MHz<br />
RAM: 192MB</p>
<p><strong>Steps Involved:</strong></p>
<ol>
<li><a href="http://fedoraproject.org/en/get-fedora-all">Download</a> and burn the Fedora-12-i386-DVD.iso file to dvd</li>
<li>Boot from the disc and go through install process (with less that 200MB RAM it defaults to text mode install &#8211; you can also force a text mode install at the boot: prompt by typing: linux text)</li>
<li>Once install is completed and system is rebooted, login as root</li>
<li>Check that networking is up<br />
- type:
<pre>ifconfig</pre>
<p> (see if you have an IP address)<br />
- type:
<pre>dhclient eth0</pre>
<p> (to use dhcp for now)</li>
<li>Bring the system up to date<br />
- type:
<pre>yum check-update</pre>
<p> (to check for updates first)<br />
- type:
<pre>yum update</pre>
<p> (say &#8220;yes&#8221; to install the updates)</li>
<p>- type:
<pre>yum list installed</pre>
<p> (to see a list of all installed packages)</p>
<li>Check to see what package &#8220;groups&#8221; got installed by default<br />
- type:
<pre>yum grouplist > grouplist.txt</pre>
<p>- type:
<pre>cat grouplist.txt | more</pre>
</li>
<li>Remove any unwanted package groups<br />
- type:
<pre>yum groupremove "Mail Server"</pre>
</li>
<li>Add the Samba package group<br />
- type:
<pre>yum groupinstall "Windows File Server"</pre>
</li>
<li>Configure Samba by editing /etc/samba/smb.conf<br />
- Note, for Vista support (in the Global section) add:
<pre>client NTLMv2 auth = yes</pre>
<p>- Note, to hide unreadable files like /lost+found/ (in the Global section) add:
<pre>hide unreadable = yes</pre>
<p>- type:
<pre>testparm</pre>
<p> (confirm output has no errors in it)</li>
<li>Deal with SELinux security policies (see default smb.conf file for details)<br />
- type:
<pre>setsebool -P samba_domain_controller on</pre>
<p>- type:
<pre>setsebool -P samba_enable_home_dirs on</pre>
<p>- type:
<pre>chcon -t samba_share_t /path-to-mounted-directories</pre>
<p> (remember to mount any/all directories first)<br />
- type:
<pre>ls -ldZ /path-to-mounted-directories</pre>
<p> (to confirm it worked)<br />
- Note, for existing shares, to make sure this affects all files and folders recursively add:
<pre>chcon -R -t samba_share_t /path-to-existing-mounted-directories</pre>
<p>- Note: to completely disable SELinux protection for smbd daemon (not recommended) type:
<pre>setsebool -P smbd_disable_trans 1</pre>
<p>- Note: you can temporarily disable SELinux by putting it into permissive mode &#8211; type:
<pre>getenforce</pre>
<p> to find out whether SELinux is in permissive [0], enforcing [1], or disabled [2] mode.<br />
- Note: to put SELinux into permissive mode (for testing purposes but not recommended) type:
<pre>setenforce 0</pre>
</li>
<li>Add samba users<br />
- type:
<pre>useradd john</pre>
<p>- type:
<pre>smbpasswd -a john</pre>
</li>
<li>Configure the firewall to accept samba connections<br />
- type:
<pre>system-config-firewall-tui</pre>
<p> (add an asterix next to the line: &#8220;Samba&#8221;)</li>
<li>Configure the network to use static IP/netmask/gateway/DNS info<br />
- type:
<pre>system-config-network-tui</pre>
<p>- select: [Edit a Device Params] and remove the asterix from the line: &#8220;Use DHCP&#8221;. then, and add static info</li>
<li>Configure the network to use a static Hostname and DNS address (note: DNS settings may not be required)<br />
- type:
<pre>system-config-network-tui</pre>
<p>- select: [Edit DNS configuration] then, and add static hostname and dns info</li>
<li>Get the network, smb, and nmb to start automatically next time you reboot<br />
- type:
<pre>chkconfig --level 3 network on</pre>
<p>- type:
<pre>chkconfig --level 3 smb on</pre>
<p>- type:
<pre>chkconfig --level 3 nmb on</pre>
<p>- type:
<pre>chkconfig --list network</pre>
<p> (or smb, or nmb to confirm it worked. you can also leave out the servicename to see a list of all services)</li>
</ol>
<p><strong>Reboot.</strong><br />
Use another computer to check that everything went well.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/setting-up-a-minimal-samba-server-in-fedora-core-12/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to increase the size of a VMware vmdk file formatted as linux lvm</title>
		<link>http://techblog.touchbasic.com/html/how-to-increase-the-size-of-a-vmware-vmdk-file-formatted-as-linux-lvm/</link>
		<comments>http://techblog.touchbasic.com/html/how-to-increase-the-size-of-a-vmware-vmdk-file-formatted-as-linux-lvm/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 05:03:33 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[fdisk]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[virtual disk]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[vmdk]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=293</guid>
		<description><![CDATA[VMware can run many cool operating systems on a single host computer. But, having run the software for an extended amount of time, i eventually always run out of space on my guest OSes. This happened a few times before, but it wasn&#8217;t until my VM really froze up on me that i figured it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vmware.com">VMware</a> can run many cool operating systems on a single host computer. But, having run the software for an extended amount of time, i eventually always run out of space on my guest OSes. This happened a few times before, but it wasn&#8217;t until my VM really froze up on me that i figured it was time to look into extending or expanding the current virtual disk i had in use.</p>
<p><strong>Have you ever tried increasing the size of a vmdk file / virtual hard disk ?</strong><br />
<em>It&#8217;s not that easy.. and it&#8217;s kind of confusing.</em></p>
<p>So, once i finally figured out how to do it, i thought it would be useful to write it down so that i wouldn&#8217;t forget next time this happened. Here goes..</p>
<p><strong>In my example i have: </strong><br />
- a Windows Vista host OS running a <a href="http://fedoraproject.org/">Fedora Core</a> guest OS<br />
- an 8GB vmdk file (formatted as Linux LVM &#8211; fedora fs) on the guest OS which i have backed up before attempting anything here !!! </p>
<p><strong>I want to:</strong><br />
- increase the 8GB vmdk file to 16GB<br />
- not lose any data saved on the vmdk file<br />
- not move any data off/on the vmdk file</p>
<h2>Follow these Steps:</h2>
<ol>
<li>Download and Install: <a href="http://downloads.vmware.com/d/details/workstation_6_5_3_for_windows/dHdiZHdodGJAJXQ=">VMware Workstation for Windows</a> (trial)</li>
<li>Note the location of the VMware Workstation folder (after install) &#8211; in my case it&#8217;s &#8220;C:\Program Files\VMware\VMware Workstation&#8221;</li>
<li>Open a Windows Command Prompt and navigate to the folder where your vmdk file resides and execute the following command:<br /><code>"C:\Program Files\VMware\VMware Workstation\vmware-vdiskmanager.exe" -x 16GB "Name of Your Virtual Disk File.vmdk"</code><br />Ok, now you just made the disk twice as big but you can&#8217;t use the space yet because it&#8217;s inactive, unpartitioned, unformatted, and still utterly useless to us. (but not for long)</li>
<li>Next, boot up the guest OS and log in as root. Verify that there is in fact a large amount of unallocated space/sectors by typing the command: <code>fdisk -l</code></li>
<li>Then we&#8217;ll partition and format the new portion of the disk. First select the disk: <code>fdisk /dev/sda</code></li>
<li>Type &#8220;n&#8221; at the fdisk menu to create a new partition</li>
<li>Type &#8220;p&#8221; for primary partition, and then select the appropriate partition number, as well as first and last cylinders to set how large to make the new partition (defaults &#8211; ie: use all the free space &#8211; worked well for me here)</li>
<li>Type &#8220;t&#8221; to change the partition&#8217;s system id, then type &#8220;8e&#8221; to switch it to Linux LVM </li>
<li>Type &#8220;w&#8221; to write the table to disk and exit fdisk. You might get a warning about needing to reboot for changes to take effect &#8211; either way, reboot your guest OS just to be safe.</li>
<li>Once rebooted, log in as root again and verify  the new partition exists. Type &#8220;fdisk -l&#8221; to see a list of partitions. In my case, the new partition is: /dev/sda3</li>
<li>Now comes the confusing part. We&#8217;re going to merge the new partition into the current Volume Group (which is just what fedora calls it&#8217;s own virtual disks that are made up of a bunch of virtual LVM partitions). So, first, to &#8220;create&#8221; the necessary &#8220;physical volume&#8221; from our newly created disk partition (/dev/sda3) first type: <code>pvcreate /dev/sda3</code></li>
<li>You need to find out the name of the Volume Group before you can extend it to include the newly created physical volume. Type: <code>vgdisplay</code> and look for the first line, &#8220;VG Name&#8221; &#8211; in this case it was VolGroup00 [<a href="http://techblog.touchbasic.com/html/how-to-increase-the-size-of-a-vmware-vmdk-file-formatted-as-linux-lvm/#comment-36074">thanks agm</a>]</li>
<li>Next, you need to extend the Volume Group to include the newly created physical volume. Type: <code>vgextend VolGroup00 /dev/sda3</code></li>
<li>Then, type: <code>pvscan</code> You should see the new partition (/1dev/sda3) in the list of partitions and the total should read approximately 16GB (the amount we set earlier). In my example, it said 15.75GB</li>
<li>Now type: <code>lvextend -L+8GB /dev/VolGroup00/LogVol00</code> to increase / extend the Logical Volume by 8GB (to a total of 16GB).</li>
<li>Finally, to resize the filing system type: <code>resize2fs /dev/VolGroup00/LogVol00</code></li>
</ol>
<p>Now your fedora guest OS should have twice the amount of space and your VM should be running smoothly.<br />
Repeat this process if / when the vmdk file gets filled up again and runs out of space ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/how-to-increase-the-size-of-a-vmware-vmdk-file-formatted-as-linux-lvm/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>VMTN Virtual Appliances &#8211; the 52 that looked interesting to me</title>
		<link>http://techblog.touchbasic.com/html/vmtn-virtual-appliances-the-52-that-looked-interesting-to-me/</link>
		<comments>http://techblog.touchbasic.com/html/vmtn-virtual-appliances-the-52-that-looked-interesting-to-me/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 19:31:44 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/vmtn-virtual-appliances-the-52-that-looked-interesting-to-me/</guid>
		<description><![CDATA[I have been using vmware for a while now..
Recently, i got sucked into the VMware Technology Network (VMTN) site &#8211; again &#8211; and browsing through the many virtual appliances available for download, i managed to compile a list of 52 of my favorites.
All you need to do is download the free VMware Player, which will [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using vmware for a while now..<br />
Recently, i got sucked into the <a href="http://www.vmware.com/vmtn/">VMware Technology Network</a> (VMTN) site &#8211; again &#8211; and browsing through the many virtual appliances available for download, i managed to compile a list of 52 of my favorites.<br />
All you need to do is download the free <a href="http://www.vmware.com/download/player/">VMware Player</a>, which will let you run one of these virtual appliances on any Windows or Linux desktop.<br />
Great for testing, coding, and learning. You can read more about virtualization on the <a href="http://www.vmware.com">VMware site</a>.</p>
<p><span id="more-180"></span></p>
<p><u>The List of 52 Appliances (in no particular order)</u></p>
<ol>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/134">The Web Developer Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/566">FreeNAC</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/47">SmoothWall</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/543">SSL-Explorer 0.2.9_04 for VMWare</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/51">sipX</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/302">VoIPonCD &#8211; an easy to configure Voice over IP PBX</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/576">PBXware &#8211; IP-PBX Phone System</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/308">vmTrac</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/342">ISPConfig Webhosting Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/389">middleman: the easy way to share data</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/370">VHCS VM &#8211; Virtual Hosting Server with an Open Source Control Panel</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/216">UbuntuFax</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/390">Collaboration2</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/220">Rails Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/469">Catacomb WebDAV Server</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/52">Owl</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/503">rPath DevInfraNix</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/521">The Official Gallery Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/655">Pastebin Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/519">Subversion and WebSVN on Ubuntu Server</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/620">NovellÂ® iFolder on OpenSuse with VMware Tools</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/465">rPath LAMP Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/321">Personal Backup Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/327">Tamper-Proof Internet Cafe for diskless machines</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/54">Bugzilla</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/371">PXE Installer and Recovery Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/354">HowNetWorks</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/466">rPath SugarCRM Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/232">Ultimate Deployment Appliance v1.3</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/618">Fedora Core 6</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/121">A virtual Playground</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/355">Instant Cluster w/ Condor and automatic network configuration.</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/374">OS Integrated Live CD Player</a></li>
<li><a href="http://www.vmware.com/appliances/directory/browserapp.html">Browser Appliance</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/341">OSCAR Cluster Headnode</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/515">XUbuntu (5.10)</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/615">Linbox Rescue Server Commercial Edition</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/614">Linbox Rescue Server GPL edition</a></li>
<li><a href="http://www.vmware.com/vmtn/appliances/directory/148">Kickstart Appliance</a></li>
<li><a href="http://www.vmware.com/appliances/directory/56">LiveCD Player</a></li>
<li><a href="http://www.vmware.com/appliances/directory/168">FreeNAS</a></li>
<li><a href="http://www.vmware.com/appliances/directory/351">VMWare Appliance Client</a></li>
<li><a href="http://www.vmware.com/appliances/directory/300">Hercules Load Balancer Virtual Appliance</a></li>
<li><a href="http://www.vmware.com/appliances/directory/315">Trellis NAS Bridge Appliance</a></li>
<li><a href="http://www.vmware.com/appliances/directory/296">Grid-Appliance</a></li>
<li><a href="http://www.vmware.com/appliances/directory/328">Helix Agile Development Virtual Appliance</a></li>
<li><a href="http://www.vmware.com/appliances/directory/649">Microsoft Windows Server 2003 R2 Enterprise Edition Virtual Appliance</a></li>
<li><a href="http://www.vmware.com/appliances/directory/48">AAH, Now TrixBox, Asterisk Virtual Machine</a></li>
<li><a href="http://www.vmware.com/appliances/directory/49">Asterisk@Home Trixbox 1.1</a></li>
<li><a href="http://www.vmware.com/appliances/directory/154">GVM</a></li>
<li><a href="http://www.vmware.com/appliances/directory/554">Knoppix 5.01 in a virtual machine (can also be used as a very fast free X server for windows)</a></li>
<li><a href="http://www.vmware.com/appliances/directory/344">Openfiler</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/vmtn-virtual-appliances-the-52-that-looked-interesting-to-me/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Sound editing on a budget with Linux</title>
		<link>http://techblog.touchbasic.com/html/sound-editing-on-a-budget-with-linux/</link>
		<comments>http://techblog.touchbasic.com/html/sound-editing-on-a-budget-with-linux/#comments</comments>
		<pubDate>Fri, 14 Oct 2005 15:37:43 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ardour]]></category>
		<category><![CDATA[audacity]]></category>
		<category><![CDATA[audio-software]]></category>
		<category><![CDATA[desktop alternative]]></category>
		<category><![CDATA[linux software]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[snd]]></category>
		<category><![CDATA[sound editing]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=151</guid>
		<description><![CDATA[About a year and a half ago, I did some initial research to try and find a decent sound editing solution for a Linux machine i had recently built. The computer was running RedHat Fedora Core 1, which was still pretty new at the time, and it had almost everything you&#8217;d come to expect from [...]]]></description>
			<content:encoded><![CDATA[<p>About a year and a half ago, I did some initial research to try and find a decent sound editing solution for a Linux machine i had recently built. The computer was running RedHat Fedora Core 1, which was still pretty new at the time, and it had almost everything you&#8217;d come to expect from a modern desktop OS. Softwares like Firefox, Evolution, Open Office, and Gimp made it easier to start comparing Linux as a desktop alternative to Windows or OSX. With this in mind, i was beginning to think that it might be the right time to consider recommending Linux desktop installations to <em>some</em> of my clients.</p>
<p>However, Linux sound editing is still arguably one of those gray areas where a single, dominant software has yet to emerge. This makes it difficult to compare to popular propriety software solutions. Furthermore, it meant that i was going to have to test out a whole bunch of softwares before i could make an informed decision as to which i might like best.</p>
<p>Well, i must have tried about a dozen audio softwares before coming across <a href="http://audacity.sourceforge.net/">Audacity</a>. Many people recommended it and i knew that it was supposed to be very powerful. Although, i must admit, it seemed modest compared to some of the things i had seen in similar audio softwares. Still, Audacity was stable and worked well (which was more than i could say for some of the other apps i tried), and that was all i wanted in the first place.</p>
<p>I still have the bookmark for the original article on OSNews entitled: &#8220;<a href="http://www.osnews.com/story.php?news_id=1511">Professional Audio Closer to Linux</a>&#8220;. It&#8217;s a bit dated by today&#8217;s standards [2002-08-10], but you can see (by how long the list is) that no single software had emerged as the dominant choice. Ironically, the article starts off by referring to &#8220;how much more viable Linux is today as a professional (or semi-professional) audio platform than it used to be two years ago.&#8221; I suppose i should try to avoid making a similar statement in <em>this</em> article &#8211; truth is, i&#8217;m not sure that this statement would be any more accurate today than it was back then.</p>
<p><span id="more-151"></span></p>
<p>If you&#8217;re interested, here&#8217;s 2 more lists of audio softwares that run on Linux; one from <a href="http://www.linuxlinks.com/Software/Multimedia/Soundfile_Editors/index.shtml">LinuxLinks.com</a> and the other from <a href="http://linux-sound.org/snded.html">Linux-Sound.org</a>. But if you don&#8217;t like long lists or haven&#8217;t got the time to try out more than 3 or 4 softwares, then i would recommend reading &#8220;<a href="http://arstechnica.com/guides/tweaks/linux-audio.ars/1">Editing audio in Linux</a>&#8221; by Ian Smith-Heisters of Arstechnica.com. It actually only profiles 3 Linux based audio softwares but a fourth one, called <a href="http://www.hydrogen-music.org/">Hydrogen</a>, is mentioned in the <a href="http://digg.com/linux_unix/Audio_editing_in_Linux_You_sure_can_">comments</a> of a related post on Digg.com that might also be worth checking out. Ian does an excellent job of detailing the differences between <a href="http://www.ardour.org/">Ardour</a>, Audacity and <a href="http://ccrma.stanford.edu/software/snd/snd/snd.html">SND</a> with reference to what he calls &#8220;industry-standard apps&#8221; like ProTools, Logic, Nuendo, and Digital Performer.</p>
<p>He highlights the features and capabilities of each audio software (complete with screenshots), and explains any Linux related concepts like <a href="http://en.wikipedia.org/wiki/ALSA">ALSA</a> and <a href="http://www.tux.org/%7ericdude/EsounD.html">ESD</a> that surround the topic. The general concensus seems to be that all 3 apps are great at what they do. More specifically, Audacity is the easiest to use (probably why i initially stuck with it over a year ago), Ardour has the most features that can be compared to industry-standard apps (good for larger projects), and SND is, well.. mostly for geeks (but also the fastest and most versatile).</p>
<p>What i actually found most interesting about the article was towards the end when Ian talks about how difficult it can be to compare some Linux apps because &#8220;they don&#8217;t have proprietary analogues&#8221;. Meaning, there&#8217;s nothing really like them, or they cannot even be compared. He goes so far as to say, &#8220;Editing audio in Linux may be becoming a significantly different occupation than editing using proprietary platforms.&#8221; Even if you&#8217;re not so much into sound editing but are interested in open source versus proprietary systems, you can skip to <a href="http://arstechnica.com/guides/tweaks/linux-audio.ars/5">page 5</a> and see what he means by this statement.</p>
<p>I think Ian&#8217;s statement is similar to the way i feel about the idea of Linux as a complete desktop alternative to Windows or OSX. Sure, it can do everything that other operating systems can do (and then some) &#8211; but you&#8217;ve got to speak Linux (and to a certain degree <em>think</em> Linux) to get it to do so. With sound editing there are definitely specific concerns related to hardware compatibility, etc. That means right away you need to be both knowledgeable in sound editing and audio hardware to make it work. But if and when you do get it to work, it has the potential to do things you just can&#8217;t do with proprietary software.</p>
<p>So, unless you&#8217;re willing to put in the time to learn something new, and often as a professional you simply can&#8217;t commit a significant amount time, you&#8217;re not going to find Linux to be a very satisfying alternative. You could still experiment with Linux on a second computer without disrupting your regular workflow until you felt comfortable enough to make the switch. But for a client who is determined and well informed, Linux is open and free, which makes it particularly attractive to those on a small budget, and which also means it is only going to grow and get better with time.</p>
<p><span style="color:#aaa;">[ <em>If you enjoyed this article, you might also like</em>: "<a style="color:#aaa;" href="http://techblog.touchbasic.com/html/windows-to-linux-baby-steps/">Windows to Linux: Baby Steps</a>" or something else in the <a style="color:#aaa;" href="http://techblog.touchbasic.com/html/category/linux/">Linux Category</a>. ]</span></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/sound-editing-on-a-budget-with-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3 different ways to walk away from Windows</title>
		<link>http://techblog.touchbasic.com/html/3-different-ways-to-walk-away-from-windows/</link>
		<comments>http://techblog.touchbasic.com/html/3-different-ways-to-walk-away-from-windows/#comments</comments>
		<pubDate>Sun, 14 Aug 2005 15:45:52 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bootable cd]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ufs]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=128</guid>
		<description><![CDATA[As a follow up to an earlier post entitled: Windows to Linux: Baby Steps, and because i just can&#8217;t stop investigating new operating systems, i&#8217;ve decided to give a brief description of 3 distros that caught my eye this week. While all of these distributions have easy of use (installation, familiarity, etc) as a major [...]]]></description>
			<content:encoded><![CDATA[<p>As a follow up to an earlier post entitled: <a href="http://techblog.touchbasic.com/html/windows-to-linux-baby-steps/">Windows to Linux: Baby Steps</a>, and because i just can&#8217;t stop investigating new operating systems, i&#8217;ve decided to give a brief description of 3 distros that caught my eye this week. While all of these distributions have easy of use (installation, familiarity, etc) as a major priority, each one offers a unique approach and so might appeal to different people depending on their particular needs. That being said, any one of them might serve as an excellent stepping-stone for someone looking to walk away from Windows and all things Microsoft.</p>
<p><span id="more-128"></span></p>
<p>The first distro is called <a href="http://slax.linux-live.org/">SLAX</a> -</p>
<p>From their website: </p>
<blockquote><p>&#8220;SLAX is a small bootable CD containing the Linux operating system. It runs Linux directly from the CD (or USB) without installing. The Live CD described here is based on the Slackware Linux distribution and uses Unification File System (also known as unionfs), allowing read-only filesystem to behave as a writable one, saving all changes to memory.&#8221;</p></blockquote>
<p>What this means is that anyone can run this CD and test out Linux without making any changes to their hard drive, or otherwise affecting their current Windows based machine. Take out the CD and reboot, and everything is back to normal.</p>
<p>The second distro is called <a href="http://www.xpde.com/index.php">XPde</a> &#8211; </p>
<p>From their website: </p>
<blockquote><p>&#8220;XPde is a complete desktop environment for Linux on x86. It tries to make easier for Windows XP users to use a Linux box. Nothing more, no clipboard compatibility between Gtk and Qt applications, no emulation of Windows applications, no unification on the widgets of X applications, just a desktop environment.&#8221;</p></blockquote>
<p>XPde is made to look, as much as possible, like Windows XP. The idea was to ease the transition from Windows to Linux by designing an operating system that was visually familiar, with none of the extra things that might overwhelm a new user.</p>
<p>The third distro is called <a href="http://www.pcbsd.org/">PC-BSD</a> &#8211; </p>
<p>From their website:</p>
<blockquote><p>&#8220;PC-BSD has as its goals to be an easy to install and use desktop OS, which is built on the FreeBSD operating system. To accomplish this, it currently has a graphical installation, which will enable even UNIX novices to easily install and get it running. It will also come with KDE pre-built, so that the desktop can be used immediately.&#8221;</p></blockquote>
<p>The BSD family of operating systems is traditionally thought of as more difficult to install and operate than others. PC-BSD hopes to break away from this commonly held misconception and address these issues directly by focusing on simplifying the user&#8217;s experience. The result is a minimalist approach, with a clean, user-friendly feel.</p>
<p>I think that if you&#8217;re really nervous about installing a different (not Microsoft) operating system, or you&#8217;re just moderately curious, then you might go with the SLAX bootable CD. If you&#8217;re a Windows XP user, and you&#8217;re sick of all those browser vulnerabilities and viruses, you would probably like XPde best. Otherwise, if you&#8217;re looking for speed, stability, and all the functionality of a UNIX operating system, try out PC-BSD.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/3-different-ways-to-walk-away-from-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows to Linux: Baby Steps.</title>
		<link>http://techblog.touchbasic.com/html/windows-to-linux-baby-steps/</link>
		<comments>http://techblog.touchbasic.com/html/windows-to-linux-baby-steps/#comments</comments>
		<pubDate>Thu, 11 Aug 2005 23:11:27 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux alternatives]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=125</guid>
		<description><![CDATA[Every so often, i get myself into an uncomfortable situation that involves me trying to explain to someone why <em>they</em> should to switch from Windows to Linux. It goes something like this, "because it's faster, more secure, ..." --- but for some reason i just never know where to begin. I end up either confusing the person or just scaring them off with too much technical jargon.

I thought it would be a good idea to make a list that compared Windows to Linux softwares, side-by-side. That way, i could describe the difference between the two operating systems in terms that people were already familiar with. Try <a href="http://www.mozilla.org/products/firefox/">Firefox</a> instead of Internet Explorer, <a href="http://www.openoffice.org/">Open Office</a> instead of Microsoft Office, <a href="http://www.mozilla.org/products/thunderbird/">Thunderbird</a> instead of Outlook Express.. and so on.]]></description>
			<content:encoded><![CDATA[<p>Every so often, i get myself into an uncomfortable situation that involves me trying to explain to someone why <em>they</em> should to switch from Windows to Linux. It goes something like this, &#8220;because it&#8217;s faster, more secure, &#8230;&#8221; &#8212; but for some reason i just never know where to begin. I end up either confusing the person or just scaring them off with too much technical jargon.</p>
<p>I thought it would be a good idea to make a list that compared Windows to Linux softwares, side-by-side. That way, i could describe the difference between the two operating systems in terms that people were already familiar with. Try <a href="http://www.mozilla.com/en-US/firefox/">Firefox</a> instead of Internet Explorer, <a href="http://www.openoffice.org/">Open Office</a> instead of Microsoft Office, <a href="http://www.mozilla.org/products/thunderbird/">Thunderbird</a> instead of Outlook Express.. and so on.</p>
<p><span id="more-125"></span></p>
<p>All of these alternative softwares are free to download (there&#8217;s a good reason, right?) and can be installed on a system running Windows. The idea was to prepare the person for an eventual switch to Linux. So if those 3 applications are the only ones you even use, go ahead and give them a try. You too could be running a Linux desktop in the near future.</p>
<p>Unfortunately, these days the vast majority of Windows users demand a lot more out of their desktop systems. When comparing softwares for things like sound, gaming, viewing dvds, and different graphics editors &#8211; there may not always be a clear Linux alternative. I was relieved to find out that there is a site called <a href="http://www.grokdoc.net/index.php/Main_Page">Grokdoc</a> that has taken on the challenge of maintaining such a list, so i guess i won&#8217;t have to. Lucky me.</p>
<p>If you were looking for a starting point, i would recommend the page entitled: <a href="http://www.grokdoc.net/index.php/Switching_to_Linux">Switching to Linux</a>, which is a very complete step by step for first timers. It does a good job of bringing together info from many different sources. There is also a page called <a href="http://www.grokdoc.net/index.php/Application_Crossover_Chart">Application Crossover Chart</a>, that does a side-by- side comparison of softwares with links to many Linux alternatives, but there isn&#8217;t as much description, so it is more useful to have just as a reference.</p>
<p>I guess i&#8217;ll end off by quoting what someone once told me when i first starting asking about Linux:</p>
<blockquote><p>&#8220;Just read a lot.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/windows-to-linux-baby-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Damn Small Linux, damn.</title>
		<link>http://techblog.touchbasic.com/html/damn-small-linux-damn/</link>
		<comments>http://techblog.touchbasic.com/html/damn-small-linux-damn/#comments</comments>
		<pubDate>Wed, 29 Jun 2005 06:26:23 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=72</guid>
		<description><![CDATA[Because i like to make it my business to know (at least a little) about the top 10 Linux distributions, i had to look into Damn Small Linux. It crept it&#8217;s way up in at #10 and we&#8217;ll see where it goes from there.
It is a minimalist distro, 50Mb total size, and could even fit [...]]]></description>
			<content:encoded><![CDATA[<p>Because i like to make it my business to know (at least a little) about the top 10 Linux distributions, i had to look into <a href="http://www.damnsmalllinux.org/">Damn Small Linux</a>. It crept it&#8217;s way up in at #10 and we&#8217;ll see where it goes from there.</p>
<p>It is a minimalist distro, 50Mb total size, and could even fit on a USB memory key. Anyway the people at <a href="http://distrowatch.com/">Distrowatch.com</a> describe it as: &#8220;a nearly complete desktop, including XMMS (MP3, and MPEG), FTP client, links-hacked web browser, spreadsheet, email, spellcheck (US English), a word-processor, three editors (Nedit, nVi, Zile [emacs clone]), Xpdf, Worker (file manager), Naim (AIM, ICQ, IRC), VNCviwer, SSH/SCP server and client, DHCP client, PPP, PPPoE, a web server, calculator, Fluxbox window manager, system monitoring apps, USB support, and soon it will have PCMCIA support as well. If you like Damn Small Linux you can install it on your hard drive. Because all the applications are small and light it makes a very good choice for older hardware&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/damn-small-linux-damn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symphony OS Alpha 3</title>
		<link>http://techblog.touchbasic.com/html/symphony-os/</link>
		<comments>http://techblog.touchbasic.com/html/symphony-os/#comments</comments>
		<pubDate>Wed, 29 Jun 2005 04:40:03 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bootable cd]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[linux alternatives]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=69</guid>
		<description><![CDATA[[ page last updated: Aug. 14, 2005. ]
I have to remember to keep an eye out for this up and coming Linux Distribution. From the screenshots [ 1 &#124; 2 &#124; 3 ] on their site, it looks really different. It is still only in the alpha stages at this time, and i should probably [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color:#bbb;margin-bottom:15px;">[ page last updated: Aug. 14, 2005. ]</span></p>
<p>I have to remember to keep an eye out for this up and coming Linux Distribution. From the screenshots [ <a href="http://www.symphonyos.com/screenshots/a4-ss2.png">1</a> | <a href="http://www.symphonyos.com/screenshots/beta1-desklets-ss.png">2</a> | <a href="http://www.symphonyos.com/screenshots/a3/9.jpg">3</a> ] on their site, it looks really different. It is still only in the alpha stages at this time, and i should probably wait at least until a beta version comes out before i try to install it / test it out.. but who know&#8217;s, maybe i&#8217;ll try it out sooner.</p>
<p>It kind of reminded me of what i had hoped the <a href="http://www.sun.com/software/looking_glass/">Project Looking Glass</a> would be. Looking Glass is an Open Source Operating System described as an innovative 3D environment  and is currently being developed by <a href="http://www.sun.com/">Sun Microsystems</a>.</p>
<p>The Alpha 4 version is supposed to have some major improvements, it is due to be released sometime in july &#8216;05. Will definitely check back soon.</p>
<p><span class="under">Update</span>: <a href="http://www.symphonyos.com/downloads.html">Symphony OS Alpha 4</a> version is now available for download (as of Aug 3, 2005). New features include: graphical package manager (Synaptic), better search capabilities (Beagle), new configuration tools, and more. Looking forward to the Beta 1 version, which is the next build to be released.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/symphony-os/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>final touches &#8211; smoothwall</title>
		<link>http://techblog.touchbasic.com/html/final-touches-smoothwall/</link>
		<comments>http://techblog.touchbasic.com/html/final-touches-smoothwall/#comments</comments>
		<pubDate>Tue, 28 Jun 2005 03:21:31 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=62</guid>
		<description><![CDATA[here are 6 things i can still do to modify / improve my smoothie:
1. [2.0] Guardian &#8211; Reactive Firewall (v2.1)
2. [2.0] DShield Log Submission &#038; Blocklist v.1.5.2
3. [2.0] MyNetWatchman &#8211; Intrusion Escalation (v1.2c)
4. [2.0] A BLUE interface (in progress)
5. [2.0] LaBrea 2.5 Stable 1 &#8211; Honeypot / IDS daemon
6. [2.0] Firewall Log Filters (Activity Threshhold [...]]]></description>
			<content:encoded><![CDATA[<p>here are 6 things i can still do to modify / improve my smoothie:</p>
<p>1. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=8206&#038;postdays=0&#038;postorder=asc&#038;start=0">[2.0] Guardian &#8211; Reactive Firewall (v2.1)</a><br />
2. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=6351">[2.0] DShield Log Submission &#038; Blocklist v.1.5.2</a><br />
3. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=5606&#038;postdays=0&#038;postorder=asc&#038;start=0">[2.0] MyNetWatchman &#8211; Intrusion Escalation (v1.2c)</a><br />
4. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=6341">[2.0] A BLUE interface (in progress)</a><br />
5. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=11745">[2.0] LaBrea 2.5 Stable 1 &#8211; Honeypot / IDS daemon</a><br />
6. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=4496">[2.0] Firewall Log Filters (Activity Threshhold and Not-IPBlocked)</a></p>
<p>here are the mods currently installed:</p>
<p>1. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=8458">[2.0] ClamAV 0.85.1 &#8211; Anti-virus software</a><br />
2. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=8741&#038;postdays=0&#038;postorder=asc&#038;start=0">[2.0] Dansguardian GUI v2.8.0.3 and clamav 6.3.8 + Logs</a><br />
3. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=10602&#038;postdays=0&#038;postorder=asc&#038;start=0">[2.0] Bandwidthd &#8211; IP / Subnet accounting by protocol</a><br />
4. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=5035">[2.0] updatesnort PACK &#8211; one-click Snort rule updating</a><br />
5. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=4675">[2.0] Logs mod (v.1.1.2) &#8211; browse logs the easy way</a><br />
6. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=7267">[2.0] iftop &#8211; Find out why your ADSL line is so slow</a><br />
7. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=8488">[2.0] DansGuardian 2.8.0.3 &#038; AntiVirus 6.3.8</a><br />
8. <a href="http://community.smoothwall.org/forum/viewtopic.php?t=10322">[2.0] IDS Control v.1.0.1</a> </p>
<p>and finally, here&#8217;s a list of all smoothwall mods from the smoothwall forums site:<br />
&raquo; <a href="http://community.smoothwall.org/forum/viewtopic.php?t=2873">View topic &#8211; Summary of Mods &#8211; community.smoothwall.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/final-touches-smoothwall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>smoothwall, kiwi, and syslog</title>
		<link>http://techblog.touchbasic.com/html/smoothwall-kiwi-syslog/</link>
		<comments>http://techblog.touchbasic.com/html/smoothwall-kiwi-syslog/#comments</comments>
		<pubDate>Tue, 28 Jun 2005 03:02:17 +0000</pubDate>
		<dc:creator>elran</dc:creator>
				<category><![CDATA[Everything]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://techblog.touchbasic.com/html/?p=60</guid>
		<description><![CDATA[this is a how-to on setting up smoothwall, kiwi, and syslog &#8211; link leads to the smoothwall forums.
also check out this  freeware Syslog Daemon for Windows &#8211; the site has other related resources.
ex:
. Kiwi Syslog Daemon
. Kiwi CatTools
. Kiwi Secure Tunnel
. Kiwi SyslogGen
. Kiwi Logfile Viewer
. Kiwi Logger
&#187; other useful softwares and readings can [...]]]></description>
			<content:encoded><![CDATA[<p>this is a how-to on setting up <a href="http://community.smoothwall.org/forum/viewtopic.php?t=3838">smoothwall, kiwi, and syslog</a> &#8211; link leads to the smoothwall forums.</p>
<p>also check out this  freeware <a href="http://www.kiwisyslog.com/kiwi-syslog-server-features-and-benefits/">Syslog Daemon for Windows</a> &#8211; the site has other related resources.</p>
<p>ex:<br />
. Kiwi Syslog Daemon<br />
. Kiwi CatTools<br />
. Kiwi Secure Tunnel<br />
. Kiwi SyslogGen<br />
. Kiwi Logfile Viewer<br />
. Kiwi Logger</p>
<p>&raquo; other useful softwares and readings can be found on the <a href="http://www.kiwisyslog.com/kiwi-syslog-server-features-and-benefits/">kiwisyslog links page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.touchbasic.com/html/smoothwall-kiwi-syslog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
