<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments for nixCraft</title>
	<atom:link href="http://www.cyberciti.biz/tips/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cyberciti.biz/tips</link>
	<description>This is a Linux sys admin journal by Vivek about sys admin work, Linux tips &#38; tricks, hacks, news and more.</description>
	<lastBuildDate>Thu, 18 Mar 2010 12:15:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Linux Listen Internet Shoutcast and Icecast Radio With BMPx Media Player by Linas</title>
		<link>http://www.cyberciti.biz/tips/unix-linux-web-streaming-player.html#comment-154354</link>
		<dc:creator>Linas</dc:creator>
		<pubDate>Thu, 18 Mar 2010 12:15:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/unix-linux-web-streaming-player.html#comment-154354</guid>
		<description>nice!
just the thing I was looking for :) Shoutcast in easy. No 10-20 per page scrolling, no adverts... I&#039;m starting to forget www.shoutcast.com page

Works OK with Fedora</description>
		<content:encoded><![CDATA[<p>nice!<br />
just the thing I was looking for :) Shoutcast in easy. No 10-20 per page scrolling, no adverts&#8230; I&#8217;m starting to forget <a href="http://www.shoutcast.com" rel="nofollow">http://www.shoutcast.com</a> page</p>
<p>Works OK with Fedora</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vmware Linux Guest Add a New Hard Disk Without Rebooting Guest by Jimbo</title>
		<link>http://www.cyberciti.biz/tips/vmware-add-a-new-hard-disk-without-rebooting-guest.html#comment-154353</link>
		<dc:creator>Jimbo</dc:creator>
		<pubDate>Thu, 18 Mar 2010 11:39:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=5411#comment-154353</guid>
		<description>very cool to &#039;hot-add&#039; virtual disks.  Thanks for the info.</description>
		<content:encoded><![CDATA[<p>very cool to &#8216;hot-add&#8217; virtual disks.  Thanks for the info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto: Configure Linux Virtual Local Area Network (VLAN) by hafeez</title>
		<link>http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-154351</link>
		<dc:creator>hafeez</dc:creator>
		<pubDate>Thu, 18 Mar 2010 07:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-configure-linux-virtual-local-area-network-vlan.html#comment-154351</guid>
		<description>A working configuration example from hafeezisbad@gmail.com

Server ip : 172.27.0.10
Swtich ip / gateway ip of server : 172.27.0.100
Option domain –name servers : 172.27.0.6

Please note  default vlan 172.27.0.x in this case 

Switch and server need to be in default lan for communication / or else we need to trunk in case other vlan connected , we need to configure vconfig  on server to communicate 


For biggner I would recommend to go for the default  vlan connectivity 


Example :
&lt;pre&gt;
ddns-update-style interim;
ignore client-updates;
default-lease-time 43200;
max-lease-time 43200;
authoritative;


#-----subnet mask-- broadcast-- gateway-#

option subnet-mask 255.255.255.0;
#option broadcast-address 192.168.1.1;
option routers 172.27.0.100;
option domain-name-servers 172.27.0.6;


# ----------- Server Scope and vlan1 with switches and server--------------#
subnet 172.27.0.0 netmask 255.255.255.0 {
#range 172.27.0.0 172.27.0.50;
option routers 172.27.0.1;
#option subnet-mask 255.255.255.0;
option broadcast-address 172.27.0.255;
#option domain-name-servers 172.27.0.5;
}


# ----------- clients1 Scope-vlan2-------------#
subnet 172.27.1.0 netmask 255.255.255.0 {
range 172.27.1.3 172.27.1.200;
option routers 172.27.1.1;
option subnet-mask 255.255.255.0;
option broadcast-address 172.27.1.255;
#option domain-name-servers 192.168.1.1 #
}
&lt;pre&gt;

Save the file 
&lt;pre&gt;
Chkconfig –list dhcpd on&lt;/pre&gt;
{ For enabling the service on all run levels }
Service dhcpd start
In case , dhcp server faild to start , check with  log messages 

&lt;pre&gt;/var/log/messages&lt;/pre&gt;

Check for the ip helper address in layer 3 swtich , which act as dhcp-relay 
Which has to be configured as 172.27.0.10


Troubleshooting Dhcp server start up error :

1)	Run the Dhcp service in debug mode
2)	Check the ip configuration
3)	Check for syntax errors in dhcpd.conf file
4)	Check for the right location of the dhcpd file
5)	Ping test between the switch and server
6)	Possible conflict of other dhcp server may be the issue

dhcpd in the foreground in debug mode with /usr/sbin/dhcpd -d –f

Hopefully, a DHCP server like the one we’ll be configuring will respond. Running tcpdump shows a dhcp request looks like:
17:26:02.003956 00:00:00:00:00:00 &gt; ff:ff:ff:ff:ff:ff, ethertype IPv4 (0×0800), length 342: 0.0.0.0.68 &gt; 255.255.255.255.67: BOOTP/DHCP, Request, length 300
You should notice DHCP running in the process (ps) list. Any problems, check syslog

Congratulations you have finally configured In easy steps</description>
		<content:encoded><![CDATA[<p>A working configuration example from <a href="mailto:hafeezisbad@gmail.com">hafeezisbad@gmail.com</a></p>
<p>Server ip : 172.27.0.10<br />
Swtich ip / gateway ip of server : 172.27.0.100<br />
Option domain –name servers : 172.27.0.6</p>
<p>Please note  default vlan 172.27.0.x in this case </p>
<p>Switch and server need to be in default lan for communication / or else we need to trunk in case other vlan connected , we need to configure vconfig  on server to communicate </p>
<p>For biggner I would recommend to go for the default  vlan connectivity </p>
<p>Example :</p>
<pre>
ddns-update-style interim;
ignore client-updates;
default-lease-time 43200;
max-lease-time 43200;
authoritative;

#-----subnet mask-- broadcast-- gateway-#

option subnet-mask 255.255.255.0;
#option broadcast-address 192.168.1.1;
option routers 172.27.0.100;
option domain-name-servers 172.27.0.6;

# ----------- Server Scope and vlan1 with switches and server--------------#
subnet 172.27.0.0 netmask 255.255.255.0 {
#range 172.27.0.0 172.27.0.50;
option routers 172.27.0.1;
#option subnet-mask 255.255.255.0;
option broadcast-address 172.27.0.255;
#option domain-name-servers 172.27.0.5;
}

# ----------- clients1 Scope-vlan2-------------#
subnet 172.27.1.0 netmask 255.255.255.0 {
range 172.27.1.3 172.27.1.200;
option routers 172.27.1.1;
option subnet-mask 255.255.255.0;
option broadcast-address 172.27.1.255;
#option domain-name-servers 192.168.1.1 #
}
</pre>
<pre>

Save the file
</pre>
<pre>
Chkconfig –list dhcpd on</pre>
<p>{ For enabling the service on all run levels }<br />
Service dhcpd start<br />
In case , dhcp server faild to start , check with  log messages </p>
<pre>/var/log/messages</pre>
<p>Check for the ip helper address in layer 3 swtich , which act as dhcp-relay<br />
Which has to be configured as 172.27.0.10</p>
<p>Troubleshooting Dhcp server start up error :</p>
<p>1)	Run the Dhcp service in debug mode<br />
2)	Check the ip configuration<br />
3)	Check for syntax errors in dhcpd.conf file<br />
4)	Check for the right location of the dhcpd file<br />
5)	Ping test between the switch and server<br />
6)	Possible conflict of other dhcp server may be the issue</p>
<p>dhcpd in the foreground in debug mode with /usr/sbin/dhcpd -d –f</p>
<p>Hopefully, a DHCP server like the one we’ll be configuring will respond. Running tcpdump shows a dhcp request looks like:<br />
17:26:02.003956 00:00:00:00:00:00 &gt; ff:ff:ff:ff:ff:ff, ethertype IPv4 (0×0800), length 342: 0.0.0.0.68 &gt; 255.255.255.255.67: BOOTP/DHCP, Request, length 300<br />
You should notice DHCP running in the process (ps) list. Any problems, check syslog</p>
<p>Congratulations you have finally configured In easy steps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Firewall Builder 4.0 by neolix</title>
		<link>http://www.cyberciti.biz/tips/introduction-to-firewall-builder-4-0.html#comment-154349</link>
		<dc:creator>neolix</dc:creator>
		<pubDate>Thu, 18 Mar 2010 04:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=6486#comment-154349</guid>
		<description>GR8 info thank!!! I just install yum install just started playing with that !!!</description>
		<content:encoded><![CDATA[<p>GR8 info thank!!! I just install yum install just started playing with that !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My 10 UNIX Command Line Mistakes by I know this guy...</title>
		<link>http://www.cyberciti.biz/tips/my-10-unix-command-line-mistakes.html#comment-154347</link>
		<dc:creator>I know this guy...</dc:creator>
		<pubDate>Wed, 17 Mar 2010 23:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=5159#comment-154347</guid>
		<description>Can&#039;t top the keystrokes, but think I&#039;ve got a top 10 spot for consequences:

One of those &#039;start rebuilding the wrong box in a failed redundant pair&#039; scenarios.
Sadly it was the dispatch note / purchase order processing system for largest European lights-off central distribution center in a very big industry sector, and config had been &#039;evolved&#039; or time.
Result: they couldn&#039;t dispatch anything and had to turn away every delivery for a day and a half. We are talking about a hundred cross-continental trucks sent back to their depots empty, or still full.
I could tell you that it wasn&#039;t me, but I don&#039;t expect anyone to believe that.

Moral: Never, ever, ever trust a sticky label - look at the prompt, and if the prompt doesn&#039;t tell you: change it so it does. SVN&#039;ed config would have massively reduced down time too.</description>
		<content:encoded><![CDATA[<p>Can&#8217;t top the keystrokes, but think I&#8217;ve got a top 10 spot for consequences:</p>
<p>One of those &#8217;start rebuilding the wrong box in a failed redundant pair&#8217; scenarios.<br />
Sadly it was the dispatch note / purchase order processing system for largest European lights-off central distribution center in a very big industry sector, and config had been &#8216;evolved&#8217; or time.<br />
Result: they couldn&#8217;t dispatch anything and had to turn away every delivery for a day and a half. We are talking about a hundred cross-continental trucks sent back to their depots empty, or still full.<br />
I could tell you that it wasn&#8217;t me, but I don&#8217;t expect anyone to believe that.</p>
<p>Moral: Never, ever, ever trust a sticky label &#8211; look at the prompt, and if the prompt doesn&#8217;t tell you: change it so it does. SVN&#8217;ed config would have massively reduced down time too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download Fedora 12 CD / DVD ISO by Harika</title>
		<link>http://www.cyberciti.biz/tips/fedora-12-download-cd-dvd-iso.html#comment-154344</link>
		<dc:creator>Harika</dc:creator>
		<pubDate>Wed, 17 Mar 2010 22:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=6027#comment-154344</guid>
		<description>For Suresh: The safest way is just to download the torrent file and then open it with utorrent in Windows or bitorrent in any distribution of the Linux systems.

For Blaine: An .iso file appears to be in the zipped format and actually it is, since it is a batch of files! To make sure that your download is ok, just right-click on the file and select the properties and read the output.

For Albeinstein: There are a pdf file on the net that clearly explains how to install the Fedora 12! Easy and no risk at all!

Ask for help: mpsarab@gmail.com
Harika</description>
		<content:encoded><![CDATA[<p>For Suresh: The safest way is just to download the torrent file and then open it with utorrent in Windows or bitorrent in any distribution of the Linux systems.</p>
<p>For Blaine: An .iso file appears to be in the zipped format and actually it is, since it is a batch of files! To make sure that your download is ok, just right-click on the file and select the properties and read the output.</p>
<p>For Albeinstein: There are a pdf file on the net that clearly explains how to install the Fedora 12! Easy and no risk at all!</p>
<p>Ask for help: <a href="mailto:mpsarab@gmail.com">mpsarab@gmail.com</a><br />
Harika</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recover MySQL root Password by gary</title>
		<link>http://www.cyberciti.biz/tips/recover-mysql-root-password.html#comment-154343</link>
		<dc:creator>gary</dc:creator>
		<pubDate>Wed, 17 Mar 2010 22:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/recover-mysql-root-password.html#comment-154343</guid>
		<description>Awesome tip, tks, it was concise while providing enough information to be effective.
Tks.</description>
		<content:encoded><![CDATA[<p>Awesome tip, tks, it was concise while providing enough information to be effective.<br />
Tks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Download Fedora 12 CD / DVD ISO by shreyansh</title>
		<link>http://www.cyberciti.biz/tips/fedora-12-download-cd-dvd-iso.html#comment-154340</link>
		<dc:creator>shreyansh</dc:creator>
		<pubDate>Wed, 17 Mar 2010 20:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=6027#comment-154340</guid>
		<description>Hi i have downloaded it , and is working just fine &amp; i have found all the library files which have been exclusively excluded in the live cd edition.
good bye</description>
		<content:encoded><![CDATA[<p>Hi i have downloaded it , and is working just fine &amp; i have found all the library files which have been exclusively excluded in the live cd edition.<br />
good bye</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Introduction to Firewall Builder 4.0 by Anonymous</title>
		<link>http://www.cyberciti.biz/tips/introduction-to-firewall-builder-4-0.html#comment-154339</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 17 Mar 2010 20:15:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=6486#comment-154339</guid>
		<description>Excellent tool. I&#039;ve just installed using apt-get and playing with it. I&#039;m looking forward to read the second part.</description>
		<content:encoded><![CDATA[<p>Excellent tool. I&#8217;ve just installed using apt-get and playing with it. I&#8217;m looking forward to read the second part.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My 10 UNIX Command Line Mistakes by George</title>
		<link>http://www.cyberciti.biz/tips/my-10-unix-command-line-mistakes.html#comment-154338</link>
		<dc:creator>George</dc:creator>
		<pubDate>Wed, 17 Mar 2010 19:59:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=5159#comment-154338</guid>
		<description>First week with my new Ubuntu...
- Program: Libc6 needs to be updated to run 
- User: 
- User: sudo apt-get remove libc6
- System: WARNING: DELETING THIS LIBRARY MAY AFFECT YOUR SYSTEM. TYPE &#039;I&#039;M AWARE OF THIS AND WANT TO CONTINUE&#039; IF YOU WANT TO PROCEED.
- User: types &#039;I&#039;M AWARE OF THIS AND WANT TO CONTINUE&#039; ...
- System: *sigh*... ok... deleting everything that depends on C (the whole system)
- User: open eyes, stomach twists, push &quot;Power&quot; button in panic
- User: restart computer, nothing works.  Grub had problems, can&#039;t access windows installation. Doesn&#039;t have Live CD. Has to ask to friends for a Live CD, and explain the whole story every time.</description>
		<content:encoded><![CDATA[<p>First week with my new Ubuntu&#8230;<br />
- Program: Libc6 needs to be updated to run<br />
- User:<br />
- User: sudo apt-get remove libc6<br />
- System: WARNING: DELETING THIS LIBRARY MAY AFFECT YOUR SYSTEM. TYPE &#8216;I&#8217;M AWARE OF THIS AND WANT TO CONTINUE&#8217; IF YOU WANT TO PROCEED.<br />
- User: types &#8216;I&#8217;M AWARE OF THIS AND WANT TO CONTINUE&#8217; &#8230;<br />
- System: *sigh*&#8230; ok&#8230; deleting everything that depends on C (the whole system)<br />
- User: open eyes, stomach twists, push &#8220;Power&#8221; button in panic<br />
- User: restart computer, nothing works.  Grub had problems, can&#8217;t access windows installation. Doesn&#8217;t have Live CD. Has to ask to friends for a Live CD, and explain the whole story every time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apache Chroot Jail: Virtual Hosting by Arpad</title>
		<link>http://www.cyberciti.biz/tips/rhel-centos-apache-chrootjail-virtual-hosting.html#comment-154336</link>
		<dc:creator>Arpad</dc:creator>
		<pubDate>Wed, 17 Mar 2010 14:49:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=4073#comment-154336</guid>
		<description>Hi, thanks for the tutorial.
I&#039;ve checked and overchecked everything. The settings are the same except from the chroot jail name. I have the same problem as others, it can&#039;t seem to find the directories from the virtualhosts. If i use it without the virtualhost it starts normally and chroots the directory to /var/www/html (the chrooted not the real one). Where could be the problem?</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the tutorial.<br />
I&#8217;ve checked and overchecked everything. The settings are the same except from the chroot jail name. I have the same problem as others, it can&#8217;t seem to find the directories from the virtualhosts. If i use it without the virtualhost it starts normally and chroots the directory to /var/www/html (the chrooted not the real one). Where could be the problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto: Linux understanding and tuning Virtual Memory by tuxhat</title>
		<link>http://www.cyberciti.biz/tips/howto-linux-understanding-and-tuning-virtual-memory.html#comment-154334</link>
		<dc:creator>tuxhat</dc:creator>
		<pubDate>Wed, 17 Mar 2010 13:40:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/howto-linux-understanding-and-tuning-virtual-memory.html#comment-154334</guid>
		<description>vm.swappiness sets affinity for a process to get swapped to swap space. Set to 100 you will find a high swap activity on a busy machine, go with 0 swapping will be less or no. For a production web server / Virtual machine host I will go with zero :)</description>
		<content:encoded><![CDATA[<p>vm.swappiness sets affinity for a process to get swapped to swap space. Set to 100 you will find a high swap activity on a busy machine, go with 0 swapping will be less or no. For a production web server / Virtual machine host I will go with zero :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How Do I Enable Remote Access To MySQL Database Server? by villalvilla</title>
		<link>http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html#comment-154332</link>
		<dc:creator>villalvilla</dc:creator>
		<pubDate>Wed, 17 Mar 2010 12:31:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html#comment-154332</guid>
		<description>try writing &quot;flush privileges;&quot; before loging out mysql in step 5 ;-)</description>
		<content:encoded><![CDATA[<p>try writing &#8220;flush privileges;&#8221; before loging out mysql in step 5 ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparison: Linux vs FreeBSD (Bsd) oses by Erick</title>
		<link>http://www.cyberciti.biz/tips/comparison-linux-vs-freebsd-bsd-oses.html#comment-154330</link>
		<dc:creator>Erick</dc:creator>
		<pubDate>Wed, 17 Mar 2010 06:49:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/comparison-linux-vs-freebsd-bsd-oses.html#comment-154330</guid>
		<description>FreeBSD &quot;got raped&quot; by Ubuntu? What&#039;re you smoking? FreeBSD will rock the shite out of even more established Linuxes such as Red Hat, let alone playful dribble like Ubuntu which is meant for home use. And btw the article you linked to is not working.</description>
		<content:encoded><![CDATA[<p>FreeBSD &#8220;got raped&#8221; by Ubuntu? What&#8217;re you smoking? FreeBSD will rock the shite out of even more established Linuxes such as Red Hat, let alone playful dribble like Ubuntu which is meant for home use. And btw the article you linked to is not working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How do I Find Out Linux CPU Utilization? by Prashant</title>
		<link>http://www.cyberciti.biz/tips/how-do-i-find-out-linux-cpu-utilization.html#comment-154328</link>
		<dc:creator>Prashant</dc:creator>
		<pubDate>Wed, 17 Mar 2010 03:38:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/how-do-i-find-out-linux-cpu-utilization.html#comment-154328</guid>
		<description>Hi Oliver Kleinecke,
I have e-commerce site.
which is using two load balancer and 8 web servers.
how can I monitor server performance of each machine or CPU.
Thanks,
Prashant</description>
		<content:encoded><![CDATA[<p>Hi Oliver Kleinecke,<br />
I have e-commerce site.<br />
which is using two load balancer and 8 web servers.<br />
how can I monitor server performance of each machine or CPU.<br />
Thanks,<br />
Prashant</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux: Setup as DNS Client / Name Server IP Address by Foxx Linux</title>
		<link>http://www.cyberciti.biz/tips/linux-how-to-setup-as-dns-client.html#comment-154327</link>
		<dc:creator>Foxx Linux</dc:creator>
		<pubDate>Wed, 17 Mar 2010 02:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/linux-how-to-setup-as-dns-client.html#comment-154327</guid>
		<description>great instructions.. 100% accurate.</description>
		<content:encoded><![CDATA[<p>great instructions.. 100% accurate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comparison: Linux vs FreeBSD (Bsd) oses by Djuragan</title>
		<link>http://www.cyberciti.biz/tips/comparison-linux-vs-freebsd-bsd-oses.html#comment-154324</link>
		<dc:creator>Djuragan</dc:creator>
		<pubDate>Tue, 16 Mar 2010 21:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/comparison-linux-vs-freebsd-bsd-oses.html#comment-154324</guid>
		<description>Hello Cyberciti.
I don&#039;t know when this article  posted, since your remove the post date &amp; year. Mysql performance reasons maybe ?
I did a deeper search on google and found this benchmarking, clearly FreeBsd got raped by Linux Ubuntu ! :D
&lt;b&gt;FreeBSD 8.0 vs. Ubuntu 9.10 /b&gt;
http://www.phoronix.com/scan.php?page=article&amp;item=freebsd8_ubuntu910&amp;num=2
What do you think about those benchmarking ? please give us some &quot;enlightenment&quot;
Thanks.</description>
		<content:encoded><![CDATA[<p>Hello Cyberciti.<br />
I don&#8217;t know when this article  posted, since your remove the post date &amp; year. Mysql performance reasons maybe ?<br />
I did a deeper search on google and found this benchmarking, clearly FreeBsd got raped by Linux Ubuntu ! :D<br />
<b>FreeBSD 8.0 vs. Ubuntu 9.10 /b&gt;<br />
<a href="http://www.phoronix.com/scan.php?page=article&amp;item=freebsd8_ubuntu910&amp;num=2" rel="nofollow">http://www.phoronix.com/scan.php?page=article&amp;item=freebsd8_ubuntu910&amp;num=2</a><br />
What do you think about those benchmarking ? please give us some &#8220;enlightenment&#8221;<br />
Thanks.</b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux desktop search by Koratsuki</title>
		<link>http://www.cyberciti.biz/tips/linux-desktop-search.html#comment-154323</link>
		<dc:creator>Koratsuki</dc:creator>
		<pubDate>Tue, 16 Mar 2010 20:00:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/linux-desktop-search.html#comment-154323</guid>
		<description>@Andrew Stallard:
Man, &quot;we&quot; suppose that you have your home folder in another partition not in the same that the filesystem is located, remember /etc/fstab is the file for the mount points in the system. If the package isn´t in your repository try downloading it from another source and install it, them excecute the rest od the procedure.

I (since I was in Slackware, now I´am using Debian I dont know if it changes in that time) recommend you to use localte (slocate or rlocate) after updatedb. Could be very useful to you :D</description>
		<content:encoded><![CDATA[<p>@Andrew Stallard:<br />
Man, &#8220;we&#8221; suppose that you have your home folder in another partition not in the same that the filesystem is located, remember /etc/fstab is the file for the mount points in the system. If the package isn´t in your repository try downloading it from another source and install it, them excecute the rest od the procedure.</p>
<p>I (since I was in Slackware, now I´am using Debian I dont know if it changes in that time) recommend you to use localte (slocate or rlocate) after updatedb. Could be very useful to you :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Top 10 Open Source Web-Based Project Management Software by Dana @ OnePlace</title>
		<link>http://www.cyberciti.biz/tips/open-source-project-management-software.html#comment-154320</link>
		<dc:creator>Dana @ OnePlace</dc:creator>
		<pubDate>Tue, 16 Mar 2010 19:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/?p=5477#comment-154320</guid>
		<description>This is a great list of resources - thanks for putting it together! These types of resources can really help those in need of a strong business organization structure. I wanted to add OnePlace to the list of project management software. Run on ruby on rails, &lt;a href=&quot;http://www.oneplacehome.com/info/features/project_management&quot; rel=&quot;nofollow&quot;&gt;OnePlace&lt;/a&gt; integrates project management and team collaboration to increase the success of the individual using it, as well as their business.</description>
		<content:encoded><![CDATA[<p>This is a great list of resources &#8211; thanks for putting it together! These types of resources can really help those in need of a strong business organization structure. I wanted to add OnePlace to the list of project management software. Run on ruby on rails, <a href="http://www.oneplacehome.com/info/features/project_management" rel="nofollow">OnePlace</a> integrates project management and team collaboration to increase the success of the individual using it, as well as their business.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linux PAM configuration that allows or deny login via the sshd server by vimbyseno</title>
		<link>http://www.cyberciti.biz/tips/linux-pam-configuration-that-allows-or-deny-login-via-the-sshd-server.html#comment-154318</link>
		<dc:creator>vimbyseno</dc:creator>
		<pubDate>Tue, 16 Mar 2010 14:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.cyberciti.biz/tips/linux-pam-configuration-that-allows-or-deny-login-via-the-sshd-server.html#comment-154318</guid>
		<description>my config:
auth required /lib/security/pam_listfile.so item=user sense=allow file=/etc/sshd/user-sshd onerr=fail

user in user-sshd:
root
user1
user2
......


now root can&#039;t remote the vps :(
if i login as root using putty, the console window (putty) closed immedietly when root loged to vps :(
how to solve my problem??? plis help me</description>
		<content:encoded><![CDATA[<p>my config:<br />
auth required /lib/security/pam_listfile.so item=user sense=allow file=/etc/sshd/user-sshd onerr=fail</p>
<p>user in user-sshd:<br />
root<br />
user1<br />
user2<br />
&#8230;&#8230;</p>
<p>now root can&#8217;t remote the vps :(<br />
if i login as root using putty, the console window (putty) closed immedietly when root loged to vps :(<br />
how to solve my problem??? plis help me</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.239 seconds -->
<!-- Cached page served by WP-Cache -->
