<?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>稀饭的国度 &#187; 优化</title>
	<atom:link href="http://blog.thematice.com/html/ytag/%e4%bc%98%e5%8c%96/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.thematice.com</link>
	<description>发现自己的脑袋不好使了，用blog来记录真的很好用。</description>
	<lastBuildDate>Thu, 09 Feb 2012 13:33:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>easyLife, Fedora 下的 Ubuntu Tweak</title>
		<link>http://blog.thematice.com/html/y2010/942_easylife-fedora-%e4%b8%8b%e7%9a%84-ubuntu-tweak.html#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=easylife-fedora-%25e4%25b8%258b%25e7%259a%2584-ubuntu-tweak</link>
		<comments>http://blog.thematice.com/html/y2010/942_easylife-fedora-%e4%b8%8b%e7%9a%84-ubuntu-tweak.html#comments</comments>
		<pubDate>Tue, 12 Jan 2010 14:13:10 +0000</pubDate>
		<dc:creator>稀饭</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux tools]]></category>
		<category><![CDATA[easyLife]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[优化]]></category>

		<guid isPermaLink="false">http://blog.thematice.com/?p=942</guid>
		<description><![CDATA[easyLife 是一款专为 Fedora 开发的快速配置工具，相当于 TualatriX 为 Ubuntu 开发的 Ubuntu Tweak ，它可以帮助 Fedora 新手顺利搞定新装系统配置，帮助老手节约时间，不过，鉴于 Ubuntu Tweak 的强大功能，将 easyLife 跟 Lazybuntu 对比更贴切与准确一点。 Fedora 12 将在 2 天后发布，作为全球最受欢迎的第三大 Linux 桌面发行版，届时肯定会掀起另一波下载、安装、测评、体验狂潮，这样的快速配置工具对新手还是非常有用的，有了它，新手不会对复杂的配置望而生畏，如果有兴趣，请帮助该项目完成汉化工作。 easyLife 的主要功能，是帮助 Fedora 新手在全新安装的 Fedora 系统上，顺利、快速、简单的安装和配置软件，将复杂的事情简单化，通过鼠标点击就能轻松完成一大堆复杂的任务。 easyLife 主要特性有： Sets &#8220;sudo&#8221; command up for your regular user; 对普通用户启用 &#8220;sudo&#8221; 命令； Configures RPMFusion repository for extra and non-free software; 为 [...]]]></description>
		<wfw:commentRss>http://blog.thematice.com/html/y2010/942_easylife-fedora-%e4%b8%8b%e7%9a%84-ubuntu-tweak.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用ulimit和proc去调整系统参数</title>
		<link>http://blog.thematice.com/html/y2009/421_use-ulimit-and-system-parameters-to-adjust-proc.html#utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-ulimit-and-system-parameters-to-adjust-proc</link>
		<comments>http://blog.thematice.com/html/y2009/421_use-ulimit-and-system-parameters-to-adjust-proc.html#comments</comments>
		<pubDate>Mon, 18 May 2009 03:22:33 +0000</pubDate>
		<dc:creator>稀饭</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[proc]]></category>
		<category><![CDATA[ulimit]]></category>
		<category><![CDATA[优化]]></category>
		<category><![CDATA[内核]]></category>
		<category><![CDATA[参数]]></category>

		<guid isPermaLink="false">http://blog.thematice.com/?p=421</guid>
		<description><![CDATA[在使用linux做为关键应用的过程中，特别是大压力负载的时候，经常会遇到一些诸如“too many open files”，“系统默认最大线程数是多少？如何调整？”等问题。此时，我们就必须使用ulimit或proc去调整系统的某些参数。 一、区别 ulimit和对proc目录都可以作出某些限制，但它们之间是有区别的： 1、ulimit命令： 1）直接使用ulimit命令，只对当前tty（终端有效），若要每次都生效的话，可以把ulimit参数放到对应用户的.bash_profile里面； 2）针对所有用户的设置，在/etc/security/limits.conf文件，其是可以对系统用户、组进行cpu、文件数等限制的，通过它可以针对某个用户或全部进行限制。但不能超越系统的限制； （*表示所有用户、soft表示可以超出，但只是警告；hard表示绝对不能超出） 3）另一方法是，如果想对所有用户设置，也可以放在/etc/profile文件里面，下面是该文件里面的默认参数： 引用 ulimit -S -c 0 > /dev/null 2>&#038;1 2、/proc目录： 1）/proc目录里面包括很多系统当前状态的参数，例如： 引用 /proc/sys/fs/file-max /proc/sys/fs/inode-max 是对整个系统的限制，并不是针对用户的； 2）proc目录中的值可以进行动态的设置，若希望永久生效，可以修改/etc/sysctl.conf文件，并使用下面的命令确认： # sysctl -p 例如增加： 引用 fs.file-max=xxx fs.inode-max=xxx 二、ulimit命令简介 （以下引用网上的部分资料） 1、说明: ulimit用于shell启动进程所占用的资源. 2、类别: shell内建命令 3、语法格式: ulimit [-acdfHlmnpsStvw] [size] 4、参数介绍: 引用 -H 设置硬件资源限制. -S 设置软件资源限制. -a 显示当前所有的资源限制. -c size:设置core文件的最大值.单位:blocks -d size:设置数据段的最大值.单位:kbytes [...]]]></description>
		<wfw:commentRss>http://blog.thematice.com/html/y2009/421_use-ulimit-and-system-parameters-to-adjust-proc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

