<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/bright_zws" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/bright_zws" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 27 Mar 2009 17:13:00 GMT</lastBuildDate><title>wsychou的专栏</title><link>http://blog.csdn.net/bright_zws/</link><item><title>Linux禁Ping的方法</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/27/4030465.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/4030465.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/4030465.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4030465</trackback:ping><description>Linux禁Ping的方法&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/4030465.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 28 Mar 2009 01:13:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/27/4030465.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/27/4030465.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>如何察看Solaris系统的内存大小及使用情况?</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/20/4007153.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/4007153.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/4007153.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4007153</trackback:ping><description>&lt;br /&gt;看物理内存用prtconf，在x86和sparc都通用的：
# prtconf -vp | grep Mem
   Memory size: 2047 Megabytes&lt;br /&gt;再有就是vmstat了：# vmstat 1&lt;br /&gt;看vmstat的输出时，从第2行开始看，如果sr列数值比较大，就表明内存紧张。&lt;br /&gt;Solaris 9开始，可以使用mdb来查看内存：# echo ::memstat | mdb -k&lt;br /&gt;如需要看具体那个进程占用内存的情况可以使用:prstat -a 另外还有GNU的top命令(top需要从www.sunfreeware.com上下载安装)&lt;br /&gt;&lt;br /&gt;[S8]：Solaris 8的mdb命令没有::memstat命令，需要从www.solarisinternals.com下载，然后运行如下命令装入::memstat:# mdb -k 
   &gt;::load memory 
   &gt;::memstat&lt;br /&gt;就可以看你真实的物理内存的占用情况了。取自&quot;http://wiki.gceclub.sun.com&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/4007153.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 20 Mar 2009 20:01:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/20/4007153.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/20/4007153.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>solaris环境变量</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/18/4001720.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/4001720.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/4001720.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4001720</trackback:ping><description>&lt;br /&gt;～/.profile 是在用户的主目录下的一个文件，每次用户登陆都会执行这里边的ENV环境变量设置。&lt;br /&gt;/etc/profile是一个全局的环境变量设置，只要登陆系统的用户都会执行里面的ENV环境变量设置&lt;br /&gt;~/.kshrc是在用户的主目录下面的，每次执行KSH下面的子shell的时候，都会执行这里面的ENV环境变量设置。&lt;br /&gt;~/.dtprofile是在用户的主目录下面的，在这里设置你进入CDE时的一些变量设置，如果用户没有通过CDE进入过系统，那么将不会产生这个文件，只有用户曾经用CDE进入过系统后就会自动生成一个.dtprofile文件，然后还可以对里边的变量进行设置。。&lt;br /&gt;                如果在这个文件里的DTSOURCEPROFILE的变量设置为true则会读取用户瞩目路下的.profile文件里的变量设置，如果没有这个变量或者设置为false，那么将不读取.profile里的环境变量。&lt;br /&gt;&lt;br /&gt;如果想让刚刚改变的.profile .kshrc里面的设置马上生效使用，可以使用以下的命令：&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/4001720.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 19 Mar 2009 00:11:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/18/4001720.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/18/4001720.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>用oracle 10g的OEM进行数据导入导出</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/04/3957329.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/3957329.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/3957329.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3957329</trackback:ping><description>用oracle 10g的OEM进行数据导入导出&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/3957329.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 05 Mar 2009 02:06:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/04/3957329.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/04/3957329.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>数据库连接池满的问题</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950409.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/3950409.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/3950409.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3950409</trackback:ping><description>数据库连接池满的问题&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/3950409.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 03 Mar 2009 02:01:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950409.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/02/3950409.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>Linux文件的复制、删除和移动命令</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950184.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/3950184.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/3950184.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3950184</trackback:ping><description>Linux文件的复制、删除和移动命令&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/3950184.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 03 Mar 2009 00:50:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950184.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/02/3950184.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>让linux加载当前目录的动态库</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950172.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/3950172.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/3950172.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3950172</trackback:ping><description>让linux加载当前目录的动态库&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/3950172.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 03 Mar 2009 00:48:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950172.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/02/3950172.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>chmod命令详细用法</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950098.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/3950098.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/3950098.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3950098</trackback:ping><description>chmod命令详细用法&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/3950098.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 03 Mar 2009 00:30:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950098.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/02/3950098.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>RedHat Linux下的WebLogic安装部署</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950047.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/3950047.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/3950047.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3950047</trackback:ping><description>RedHat Linux下的WebLogic安装部署&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/3950047.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 03 Mar 2009 00:18:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/02/3950047.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/02/3950047.aspx</guid><dc:creator>zhmm</dc:creator></item><item><title>nohup命令详解</title><link>http://blog.csdn.net/bright_zws/archive/2009/03/02/3949882.aspx</link><wfw:comment>http://blog.csdn.net/bright_zws/comments/3949882.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/bright_zws/comments/commentRss/3949882.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3949882</trackback:ping><description>&lt;br /&gt;使用nohup让程序永远后台运行&lt;br /&gt;Unix/Linux下一般比如想让某个程序在后台运行，很多都是使用 &amp; 在程序结尾来让程序自动运行。比如我们要运行mysql在后台：&lt;br /&gt;/usr/local/mysql/bin/mysqld_safe --user=mysql &amp;&lt;br /&gt;但是加入我们很多程序并不象mysqld一样做成守护进程，可能我们的程序只是普通程序而已，一般这种程序使用 &amp;&lt;br /&gt;结尾，但是如果终端关闭，那么程序也会被关闭。但是为了能够后台运行，那么我们就可以使用nohup这个命令，比如我们有个test.php需要在后台运&lt;br /&gt;行，并且希望在后台能够定期运行，那么就使用nohup：&lt;br /&gt;nohup /root/test.php &amp;&lt;br /&gt;　　提示：&lt;br /&gt;　　[~]$ appending output to nohup.out&lt;br /&gt;　　嗯，证明运行成功，同时把程序运行的输出信息放到当前目录的 nohup.out 文件中去。&lt;br /&gt;　　附：nohup命令参考&lt;br /&gt;nohup 命令&lt;br /&gt;　　用途：不挂断地运&lt;img src =&quot;http://blog.csdn.net/bright_zws/aggbug/3949882.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 02 Mar 2009 23:48:00 +0800</pubDate><author>zhmm</author><comments>http://blog.csdn.net/bright_zws/archive/2009/03/02/3949882.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/bright_zws/archive/2009/03/02/3949882.aspx</guid><dc:creator>zhmm</dc:creator></item></channel></rss>