码迷,mamicode.com
首页 >  
搜索关键字:proc    ( 8879个结果
CentOS查看系统信息|CentOS查看命令
一:查看cpu more /proc/cpuinfo | grep "model name" ??????grep "model name" /proc/cpuinfo 如果觉得需要看的更加舒服 grep "model name" /proc/cpuinfo | cut -f2 -d: 怎么样,linux的命令...
分类:其他好文   时间:2014-08-09 21:39:29    阅读次数:325
【SAS ADVANCE】Performing Advanced Queries Using PROC SQL
一、Objectivesdisplay all rows, eliminate duplicate rows, and limit the number of rows displayedsubset rows using other conditional operators and cacula...
分类:数据库   时间:2014-08-09 11:20:27    阅读次数:235
Linux系统巡检常用命令
# uname -a # 查看内核/操作系统/CPU信息# head -n 1 /etc/issue # 查看操作系统版本# cat /proc/cpuinfo # 查看CPU信息# hostname # 查看计算机名# lspci -tv # 列出所有PCI设备# lsusb -tv #...
分类:系统相关   时间:2014-08-08 09:32:25    阅读次数:300
PDE_DATA 的定义
PDE_DATA 的定义 Location: /fs/proc/internal.h static inline struct proc_dir_entry *PDE(const struct inode *inode) { return PROC_I(inode)->pde; } static inline void *__PDE_DATA(const struct inode...
分类:其他好文   时间:2014-08-08 02:00:25    阅读次数:203
【SAS ADVANCE】Performing Queries Using PROC SQL
SQL: Structured Query Language一、Objectives in this chapter:invoke the SQL procedureselect columnsdefine new columnsspecify the table(s) to readspecify...
分类:数据库   时间:2014-08-07 03:03:38    阅读次数:478
查找进程所在路径和启动命令
ps -def 或者pid可以查看到进程id和启动命令的相对路径,要想查看详细的,请查找目录/proc/${pid}比如:??root@jobs:~# root root 0 Aug 6 23:52 cwd -> /home/benny/logserver -r-------- 1 root root 0 Aug 6 23:52 environ lrwxrwxrwx 1 root root 0...
分类:其他好文   时间:2014-08-07 00:49:07    阅读次数:232
设置线程的亲缘性(指定其所运行的CPU核心)
#include?<stdio.h> #include?<windows.h> #include?<process.h> #include?<time.h> unsigned?int?_stdcall?thread_proc(void*?arg) { double x?= 100.0; int r?=?0; srand((unsigned)time(0)?...
分类:编程语言   时间:2014-08-06 19:37:12    阅读次数:712
sybase带输出参数的存储过程实例
使用return返回 --create?pro USE?yfb go create?proc?cwqi_test_pro( ?@newName?varchar(20)?out, ?@oldName?varchar(20)?in ?) as begin ??set?@newName=@oldName ??return?1 end --run?pro...
分类:数据库   时间:2014-08-06 19:36:12    阅读次数:582
[Linux] linux文件系统学习
linux系统支持很多种文件系统。1. 如何确认当前系统挂载了哪些文件系统?使用mount命令可以查看当前系统上已经挂载了哪些文件系统,lqt@lqt-ThinkPad-T420:~$ mount/dev/sda1 on / type ext4 (rw,errors=remount-ro)proc ...
分类:系统相关   时间:2014-08-06 17:24:21    阅读次数:451
zabbix优化之LLD Filter Multi-macro
提出问题:zabbix对文件系统的监控是通过LLD实现的,zabbix首先通过Discoveryrule发现所有的文件系统名称和类型,如下:shell#zabbix_get-s127.0.0.1-kvfs.fs.discovery { "data":[ { "{#FSNAME}":"/", "{#FSTYPE}":"rootfs" }, { "{#FSNAME}":"/proc", "{#FSTYPE}":"proc" }, ..
分类:其他好文   时间:2014-08-05 23:00:01    阅读次数:379
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!