一:查看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
一、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
# 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 的定义
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
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
#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
使用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系统支持很多种文件系统。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实现的,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