免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 7052 | 回复: 15
打印 上一主题 下一主题

prstat参考大全,其功能不比top差 [复制链接]

论坛徽章:
2
IT运维版块每日发帖之星
日期:2016-03-19 06:20:00数据库技术版块每日发帖之星
日期:2016-07-05 06:20:00
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-03-29 11:02 |只看该作者 |倒序浏览
The prstat utility iteratively examines all active processes on the system and reports
statistics based on the selected output mode and sort order. prstat provides options
to examine only processes matching specified PIDs, UIDs, zone IDs, CPU IDs, and
processor set IDs.
The -j, -k, -C, -p, -P, -u, -U, and -z options accept lists as arguments. Items in a list
can be either separated by commas or enclosed in quotes and separated by commas or
spaces.
If you do not specify an option, prstat examines all processes and reports statistics
sorted by CPU usage.
The following options are supported:
-a
Report information about processes and users. In this mode prstat displays
separate reports about processes and users at the same time.
-c
Print new reports below previous reports instead of overprinting them.
-C psrsetlist
Report only processes or lwps that are bound to processor sets in the given list.
Each processor set is identified by an integer as reported by psrset(1M). The load
averages displayed are the sum of the load averages of the specified processor sets
(see pset_getloadavg(3C)). Processes with one or more LWPs bound to
processor sets in the given list are reported even when the -L option is not used.
-j projlist
Report only processes or lwps whose project ID is in the given list. Each project ID
can be specified as either a project name or a numerical project ID. See project(4).
-J
Report information about processes and projects. In this mode prstat displays
separate reports about processes and projects at the same time.
-k tasklist
Report only processes or lwps whose task ID is in tasklist.
-L
Report statistics for each light-weight process (LWP). By default, prstat reports
only the number of LWPs for each process.
-m
Report microstate process accounting information. In addition to all fields listed in
-v mode, this mode also includes the percentage of time the process has spent
processing system traps, text page faults, data page faults, waiting for user locks
and waiting for CPU (latency time).

-n ntop[,nbottom]
Restrict number of output lines. The ntop argument determines how many lines of
process or lwp statistics are reported, and the nbottom argument determines how
many lines of user, task, or projects statistics are reported if the -a, -t, -T, or -J
options are specified. By default, prstat displays as many lines of output that fit
in a window or terminal. When you specify the -c option or direct the output to a
file, the default values for ntop and nbottom are 15 and 5.
-p pidlist
Report only processes whose process ID is in the given list.
-P cpulist
Report only processes or lwps which have most recently executed on a CPU in the
given list. Each CPU is identified by an integer as reported by psrinfo(1M).
-R
Put prstat in the real time scheduling class. When this option is used, prstat is
given priority over time-sharing and interactive processes. This option is available
only for superuser.
-s key
Sort output lines (that is, processes, lwps, or users) by key in descending order.
Only one key can be used as an argument.
There are five possible key values:
cpu
Sort by process CPU usage. This is the default.
pri
Sort by process priority.
rss
Sort by resident set size.
size
Sort by size of process image.
time
Sort by process execution time.
-S key
Sort output lines by key in ascending order. Possible key values are the same as for
the -s option. See -s.
-t
Report total usage summary for each user. The summary includes the total number
of processes or LWPs owned by the user, total size of process images, total resident
set size, total cpu time, and percentages of recent cpu time and system memory.
-T
Report information about processes and tasks. In this mode prstat displays
separate reports about processes and tasks at the same time.

-u euidlist
Report only processes whose effective user ID is in the given list. Each user ID may
be specified as either a login name or a numerical user ID.
-U uidlist
Report only processes whose real user ID is in the given list. Each user ID may be
specified as either a login name or a numerical user ID.
-v
Report verbose process usage. This output format includes the percentage of time
the process has spent in user mode, in system mode, and sleeping. It also includes
the number of voluntary and involuntary context switches, system calls and the
number of signals received. Statistics that are not reported are marked with the -
sign.
-z zoneidlist
Report only processes or LWPs whose zone ID is in the given list. Each zone ID can
be specified as either a zone name or a numerical zone ID. See zones(5).
-Z
Report information about processes and zones. In this mode, prstat displays
separate reports about processes and zones at the same time.
The following list defines the column headings and the meanings of a prstat report:
PID
The process ID of the process.
USERNAME
The real user (login) name or real user ID.
SIZE
The total virtual memory size of the process, including all mapped files and
devices, in kilobytes (K), megabytes (M), or gigabytes (G).
RSS
The resident set size of the process (RSS), in kilobytes (K), megabytes (M), or
gigabytes (G). The RSS value is an estimate provided by proc(4) that might
underestimate the actual resident set size. Users who want to get more accurate
usage information for capacity planning should use the -x option to pmap(1)
instead.
STATE
The state of the process:
cpuN
Process is running on CPU N.
sleep
Sleeping: process is waiting for an event to complete.
run
Runnable: process in on run queue.

zombie
Zombie state: process terminated and parent not waiting.
stop
Process is stopped.
PRI
The priority of the process. Larger numbers mean higher priority.
NICE
Nice value used in priority computation. Only processes in certain scheduling
classes have a nice value.
TIME
The cumulative execution time for the process.
CPU
The percentage of recent CPU time used by the process. If executing in a non-global
zone and the pools facility is active, the percentage will be that of the processors in
the processor set in use by the pool to which the zone is bound.
PROCESS
The name of the process (name of executed file).
LWPID
The lwp ID of the lwp being reported.
NLWP
The number of lwps in the process.
With the some options, in addition to a number of the column headings shown above,
there are:
NPROC Number of processes in a specified collection.
MEMORY Percentage of memory used by a specified collection of processes.
The following columns are displayed when the -v or -m option is specified
USR The percentage of time the process has spent in user mode.
SYS The percentage of time the process has spent in system mode.
TRP The percentage of time the process has spent in processing system
traps.
TFL The percentage of time the process has spent processing text page
faults.
DFL The percentage of time the process has spent processing data page
faults.
LCK The percentage of time the process has spent waiting for user
locks.
SLP The percentage of time the process has spent sleeping.

LAT The percentage of time the process has spent waiting for CPU.
VCX The number of voluntary context switches.
ICX The number of involuntary context switches.
SCL The number of system calls.
SIG The number of signals received.
Under the -L option, one line is printed for each lwp in the process and some
reporting fields show the values for the lwp, not the process.
The following operands are supported:
count Specifies the number of times that the statistics are repeated. By
default, prstat reports statistics until a termination signal is
received.
interval Specifies the sampling interval in seconds; the default interval is 5
seconds.

论坛徽章:
2
IT运维版块每日发帖之星
日期:2016-03-19 06:20:00数据库技术版块每日发帖之星
日期:2016-07-05 06:20:00
2 [报告]
发表于 2007-03-29 11:03 |只看该作者
EXAMPLE 1 Reporting the Five Most Active Super-User Processes
The following command reports the five most active super-user processes running on
CPU1 and CPU2:
example% prstat -u root -n 5 -P 1,2 1 1
PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/LWP
306 root 3024K 1448K sleep 58 0 0:00.00 0.3% sendmail/1
102 root 1600K 592K sleep 59 0 0:00.00 0.1% in.rdisc/1
250 root 1000K 552K sleep 58 0 0:00.00 0.0% utmpd/1
288 root 1720K 1032K sleep 58 0 0:00.00 0.0% sac/1
1 root 744K 168K sleep 58 0 0:00.00 0.0% init/1
TOTAL: 25, load averages: 0.05, 0.08, 0.12
EXAMPLE 2 Displaying Verbose Process Usage Information
The following command displays verbose process usage information about processes
with lowest resident set sizes owned by users root and john.
example% prstat -S rss -n 5 -vc -u root,john
PID USERNAME USR SYS TRP TFL DFL LCK SLP LAT VCX ICX SCL SIG PROCESS/LWP
1 root 0.0 0.0 - - - - 100 - 0 0 0 0 init/1
102 root 0.0 0.0 - - - - 100 - 0 0 3 0 in.rdisc/1
250 root 0.0 0.0 - - - - 100 - 0 0 0 0 utmpd/1
1185 john 0.0 0.0 - - - - 100 - 0 0 0 0 csh/1
240 root 0.0 0.0 - - - - 100 - 0 0 0 0 powerd/4
TOTAL: 71, load averages: 0.02, 0.04, 0.08

论坛徽章:
2
IT运维版块每日发帖之星
日期:2016-03-19 06:20:00数据库技术版块每日发帖之星
日期:2016-07-05 06:20:00
3 [报告]
发表于 2007-03-29 11:04 |只看该作者
查看进程信息
# prstat -T
   PID USERNAME  SIZE   RSS STATE  PRI NICE      TIME  CPU PROCESS/NLWP      
  2554 oracle    289M  254M sleep   59    0   0:13.26 0.2% oracle/11
11001 root     2552K 1856K cpu0    59    0   0:00.00 0.1% prstat/1
   461 root     4104K 3304K sleep   59    0   0:00.00 0.0% picld/7
  1335 root     2688K 2408K sleep   59    0   0:00.00 0.0% mibiisa/12
     4 root        0K    0K sleep   60    -   0:00.00 0.0% cluster/1048
   732 root     1760K 1336K sleep   59    0   0:00.00 0.0% smcboot/1
  1084 root       18M 3416K sleep  100    -   0:00.00 0.0% rpc.pmfd/5
   657 root     3144K 1128K sleep   59    0   0:00.00 0.0% lpsched/1
   756 root     3168K 1944K sleep   59    0   0:00.00 0.0% htt_server/5
   727 root     1912K  112K sleep  100    -   0:00.00 0.0% rdaemon/1
  1323 root     2232K 1704K sleep   59    0   0:00.00 0.0% snmpdx/1
   593 root     3848K 2280K sleep   59    0   0:00.00 0.0% syslogd/13
   572 root     2696K 2016K sleep   59    0   0:00.00 0.0% inetd/1
   565 root     2064K 1280K sleep   59    0   0:00.00 0.0% lockd/1
   564 daemon   2592K 1792K sleep   59    0   0:00.00 0.0% statd/3
   579 root     4800K 3216K sleep   59    0   0:00.00 0.0% automountd/5
   798 root      792K  496K sleep   59    0   0:00.00 0.0% vxrelocd/1
   200 root     2200K 1264K sleep   59    0   0:00.00 0.0% vxesd/4
   650 root     3360K 2944K sleep   59    0   0:00.00 0.0% nscd/13
   597 root     2264K 1264K sleep  100    -   0:00.00 0.0% xntpd/1
   629 root     1992K 1472K sleep   59    0   0:00.00 0.0% cron/1
   121 root     3128K 1696K sleep   59    0   0:00.00 0.0% devfsadm/7
    80 root     2792K 1880K sleep   59    0   0:00.00 0.0% syseventd/14
   131 root     4264K 1680K sleep  100    -   0:00.00 0.0% clexecd/4
   508 root       25M   13M sleep   59    0   0:00.00 0.0% vxsvc/17
    21 root       10M 8592K sleep   59    0   0:00.07 0.0% vxconfigd/1
   130 root       10M 2456K sleep  100    -   0:00.00 0.0% clexecd/12
TASKID    NPROC  SIZE   RSS MEMORY      TIME  CPU PROJECT                     
     2       10 2885M 2511M    64%   0:13.29 0.2% default                     
     1       56  321M  130M   3.2%   0:00.07 0.1% system                     
    33        3 5520K 4208K   0.1%   0:00.00 0.1% user.root                  
     0        1    0K    0K   0.0%   0:00.00 0.0% system                     
    35        3 4264K 3496K   0.1%   0:00.00 0.0% user.root                  
    27        3 5424K 4160K   0.1%   0:00.00 0.0% user.root                  
    34        2 2896K 2248K   0.1%   0:00.00 0.0% user.root                  



Total: 78 processes, 1325 lwps, load averages: 0.01, 0.02, 0.02

论坛徽章:
2
IT运维版块每日发帖之星
日期:2016-03-19 06:20:00数据库技术版块每日发帖之星
日期:2016-07-05 06:20:00
4 [报告]
发表于 2007-03-29 11:05 |只看该作者
查看用户和进程的信息:
prstat -a
   PID USERNAME  SIZE   RSS STATE  PRI NICE      TIME  CPU PROCESS/NLWP      
  2554 oracle    289M  254M sleep   59    0   0:13.27 0.2% oracle/11
11009 root     1616K 1432K cpu0    49    0   0:00.00 0.0% prstat/1
   461 root     4104K 3304K sleep   59    0   0:00.00 0.0% picld/7
10997 root     2616K 2120K sleep   59    0   0:00.00 0.0% bash/1
     4 root        0K    0K sleep   60    -   0:00.00 0.0% cluster/1048
  1335 root     2688K 2408K sleep   59    0   0:00.00 0.0% mibiisa/12
   732 root     1760K 1336K sleep   59    0   0:00.00 0.0% smcboot/1
  1084 root       18M 3416K sleep  100    -   0:00.00 0.0% rpc.pmfd/5
   657 root     3144K 1128K sleep   59    0   0:00.00 0.0% lpsched/1
   756 root     3168K 1944K sleep   59    0   0:00.00 0.0% htt_server/5
   727 root     1912K  112K sleep  100    -   0:00.00 0.0% rdaemon/1
  1323 root     2232K 1704K sleep   59    0   0:00.00 0.0% snmpdx/1
   593 root     3848K 2280K sleep   59    0   0:00.00 0.0% syslogd/13
   572 root     2696K 2016K sleep   59    0   0:00.00 0.0% inetd/1
   565 root     2064K 1280K sleep   59    0   0:00.00 0.0% lockd/1
   564 daemon   2592K 1792K sleep   59    0   0:00.00 0.0% statd/3
   579 root     4800K 3216K sleep   59    0   0:00.00 0.0% automountd/5
   798 root      792K  496K sleep   59    0   0:00.00 0.0% vxrelocd/1
   200 root     2200K 1264K sleep   59    0   0:00.00 0.0% vxesd/4
   650 root     3360K 2944K sleep   59    0   0:00.00 0.0% nscd/13
   597 root     2264K 1264K sleep  100    -   0:00.00 0.0% xntpd/1
   629 root     1992K 1472K sleep   59    0   0:00.00 0.0% cron/1
   121 root     3128K 1696K sleep   59    0   0:00.00 0.0% devfsadm/7
    80 root     2792K 1880K sleep   59    0   0:00.00 0.0% syseventd/14
   131 root     4264K 1680K sleep  100    -   0:00.00 0.0% clexecd/4
   508 root       25M   13M sleep   59    0   0:00.00 0.0% vxsvc/17
    21 root       10M 8592K sleep   59    0   0:00.07 0.0% vxconfigd/1
NPROC USERNAME  SIZE   RSS MEMORY      TIME  CPU                             
    10 oracle   2885M 2511M    64%   0:13.30 0.2%
    64 root      270M  134M   3.3%   0:00.07 0.1%
     3 spmadmin   65M 7648K   0.2%   0:00.00 0.0%
     1 daemon   2592K 1792K   0.0%   0:00.00 0.0%






Total: 78 processes, 1325 lwps, load averages: 0.00, 0.02, 0.02

论坛徽章:
2
IT运维版块每日发帖之星
日期:2016-03-19 06:20:00数据库技术版块每日发帖之星
日期:2016-07-05 06:20:00
5 [报告]
发表于 2007-03-29 11:08 |只看该作者
根据CPU的使用时间排序的输出
# prstat -s cpu
   PID USERNAME  SIZE   RSS STATE  PRI NICE      TIME  CPU PROCESS/NLWP      
  1077 root      223M   41M sleep   59    0   0:10:43 0.2% java/18
  8412 root     4848K 4512K cpu1    59    0   0:00:00 0.0% prstat/1
  1462 root      133M   69M sleep   59    0   0:04:39 0.0% java/26
     4 root        0K    0K sleep   60    -   0:01:35 0.0% cluster/1116
  1852 noaccess  220M  140M sleep   59    0   0:02:00 0.0% java/27
   163 root     7872K 7072K sleep   59    0   0:01:19 0.0% picld/12
  1656 root       16M 4360K sleep   59    0   0:00:33 0.0% scdpmd/13
   743 root       69M   46M sleep   59    0   0:00:45 0.0% vxsvc/42
   404 root     2304K 1480K sleep   59    0   0:00:35 0.0% in.routed/1
  4473 root     1688K 1608K sleep   59    0   0:00:13 0.0% oracle_listener/1
  1854 root       66M 7480K sleep  101    -   0:00:10 0.0% rgmd/47
  1690 root       47M 2968K sleep  100    -   0:00:11 0.0% rpc.pmfd/21
   444 root       10M 7528K sleep   59    0   0:00:06 0.0% nscd/25
   142 root     2288K 1104K sleep   59    0   0:00:17 0.0% in.mpathd/1
   569 root     2024K 1440K sleep   59    0   0:00:00 0.0% smcboot/1
   656 root     2144K 1328K sleep   59    0   0:00:00 0.0% in.rarpd/6
   630 root     4744K 1312K sleep   59    0   0:00:00 0.0% automountd/2
   571 root     2016K 1016K sleep   59    0   0:00:00 0.0% smcboot/1
   521 root     2072K 1224K sleep   59    0   0:00:00 0.0% sf880drd/1
  3118 root     2312K 1872K sleep   59    0   0:00:00 0.0% ttymon/1
   527 root     1280K  960K sleep   59    0   0:00:00 0.0% utmpd/1
   537 root     2240K 1496K sleep   59    0   0:00:00 0.0% ttymon/1
   508 root     2304K 1576K sleep   59    0   0:00:00 0.0% rpc.bootparamd/1
   514 root     2008K 1248K sleep   59    0   0:00:00 0.0% sac/1
   570 root     2016K 1024K sleep   59    0   0:00:00 0.0% smcboot/1
   512 daemon   2384K 1760K sleep   60  -20   0:00:00 0.0% lockd/2
   503 daemon   2640K 1528K sleep   59    0   0:00:00 0.0% rpcbind/1
   466 root     8008K 2008K sleep  100    -   0:00:00 0.0% clexecd/2
   464 root       14M 3928K sleep  100    -   0:00:00 0.0% clexecd/15
   474 root     1232K  536K sleep   59    0   0:00:00 0.0% efdaemon/1
   524 root     5352K 4264K sleep   59    0   0:00:02 0.0% inetd/4
   648 root     3696K 2008K sleep   59    0   0:00:00 0.0% syslogd/14
   174 root     7000K 3584K sleep   59    0   0:00:00 0.0% syseventd/16
  1680 root     6600K 2400K sleep   59    0   0:00:00 0.0% cl_eventlogd/4
   443 root     7976K 3368K sleep   59    0   0:00:00 0.0% failfastd/4
   509 daemon   2680K 1952K sleep   59    0   0:00:00 0.0% statd/1
   220 root     2504K 1464K sleep   59    0   0:00:00 0.0% vxesd/3
   419 root     7944K 2040K sleep   59    0   0:00:00 0.0% qd_userd/3
Total: 76 processes, 1578 lwps, load averages: 0.03, 0.03, 0.03

论坛徽章:
2
IT运维版块每日发帖之星
日期:2016-03-19 06:20:00数据库技术版块每日发帖之星
日期:2016-07-05 06:20:00
6 [报告]
发表于 2007-03-29 11:10 |只看该作者
查看进程使用率的情况:
prstat -v
   PID USERNAME USR SYS TRP TFL DFL LCK SLP LAT VCX ICX SCL SIG PROCESS/NLWP  
  8453 root     0.0 0.3 0.0 0.0 0.0 0.0 100 0.0  41   1 238   0 prstat/1
  1077 root     0.0 0.0 0.0 0.0 0.0  78  22 0.0 269   0 223   0 java/18
   142 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   8   0  40   4 in.mpathd/1
   163 root     0.0 0.0 0.0 0.0 0.0  17  83 0.0  43   0 119   0 picld/12
   789 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   5   0  25   5 xntpd/1
   404 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   4   0  12   0 in.routed/1
  1852 noaccess 0.0 0.0 0.0 0.0 0.0  81  19 0.0 164   2  90   0 java/27
  1656 root     0.0 0.0 0.0 0.0 0.0  46  54 0.0  12   0 120   0 scdpmd/13
  1462 root     0.0 0.0 0.0 0.0 0.0  65  35 0.0 165   1  91   0 java/26
   665 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   2   0  10   0 sendmail/1
   569 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 smcboot/1
   656 root     0.0 0.0 0.0 0.0 0.0  20  80 0.0   0   0   0   0 in.rarpd/6
   630 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 automountd/2
   571 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 smcboot/1
   521 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 sf880drd/1
  3118 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 ttymon/1
   527 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 utmpd/1
   537 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 ttymon/1
   508 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 rpc.bootpara/1
   514 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 sac/1
   570 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 smcboot/1
   512 daemon   0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 lockd/2
   503 daemon   0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 rpcbind/1
   466 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 clexecd/2
   464 root     0.0 0.0 0.0 0.0 0.0  43  57 0.0   0   0   0   0 clexecd/15
   474 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 efdaemon/1
   524 root     0.0 0.0 0.0 0.0 0.0  25  75 0.0   0   0   0   0 inetd/4
   648 root     0.0 0.0 0.0 0.0 0.0  57  43 0.0   0   0   0   0 syslogd/14
   444 root     0.0 0.0 0.0 0.0 0.0 4.0  96 0.0  40   0 115   0 nscd/25
   174 root     0.0 0.0 0.0 0.0 0.0  75  25 0.0   0   0   0   0 syseventd/16
  1680 root     0.0 0.0 0.0 0.0 0.0  25  75 0.0   0   0   0   0 cl_eventlogd/4
   443 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 failfastd/4
   509 daemon   0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 statd/1
   220 root     0.0 0.0 0.0 0.0 0.0  67  33 0.0   0   0   0   0 vxesd/3
   419 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 qd_userd/3
   510 daemon   0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 nfsmapid/3
   180 daemon   0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 kcfd/3
   482 root     0.0 0.0 0.0 0.0 0.0 0.0 100 0.0   0   0   0   0 cron/1
Total: 76 processes, 1579 lwps, load averages: 0.03, 0.03, 0.03

论坛徽章:
7
荣誉会员
日期:2011-11-23 16:44:17水瓶座
日期:2013-08-28 21:20:16丑牛
日期:2013-10-02 21:01:462015年迎新春徽章
日期:2015-03-04 09:54:45操作系统版块每日发帖之星
日期:2016-06-05 06:20:0015-16赛季CBA联赛之吉林
日期:2016-06-20 08:24:0515-16赛季CBA联赛之四川
日期:2016-08-18 15:02:02
7 [报告]
发表于 2007-03-29 11:35 |只看该作者
在系统遇到性能问题的时候,这样的帖子是相当的有用!!!

论坛徽章:
0
8 [报告]
发表于 2007-03-29 11:36 |只看该作者
顶,收藏了.

论坛徽章:
0
9 [报告]
发表于 2007-03-29 17:04 |只看该作者
我在03年也转贴过该命令的使用,可以一起参考。

论坛徽章:
0
10 [报告]
发表于 2007-03-29 17:30 |只看该作者
不错,好文章.收藏了.谢谢楼主.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP