du与df[root@CentOS5 samba]# dumpe2fs /dev/sda3|grep "Block size" 4096字节du 内容实际大小,以字节为单位,统计文件大小相加df 占用空间大小,以块为单位,统计数据块使用情况du -s命令通过将指定文件系统中所有的目录、符号链接和文件...
分类:
系统相关 时间:
2014-06-28 21:10:08
阅读次数:
292
ffmpeg -codecs | grep mp3可以查看ffmpeg是否把mp3编解码模块编译进去了。libmp3lame is the mp3 encoder for ffmpeg. It needs to be enabled during configure stage of the bui...
分类:
其他好文 时间:
2014-06-28 21:02:23
阅读次数:
258
在某些情况下想把centos中的数据库相关安装文件全部删除掉,需要用到yum命令,具体方法如下:查找mysql相关的安装文件:[root@localhost ~]# rpm -qa | grep mysqlmysql-5.1.47-1.fc11.i586mysql-server-5.1.47-1.f...
分类:
数据库 时间:
2014-06-21 12:05:15
阅读次数:
248
安装查看有没有安装过: yum list installed mysql* rpm -qa | grep mysql* 查看有没有安装包: yum list mysql* 安装mysql客户端: yum install mysql 安装mysql 服务器端: yum install mysql-server ...
分类:
数据库 时间:
2014-06-18 12:34:59
阅读次数:
284
法1:cut[root@oldboy oldboy]# ifconfig eth0|grep 'inet addr'|cut -d ":" -f2|cut -d " " -f110.0.0.162法2:awk[root@oldboy oldboy]# ifconfig eth0|grep 'inet...
分类:
系统相关 时间:
2014-06-17 21:23:57
阅读次数:
357
检查HP服务器硬盘状态脚本(如有问题则发邮件通知):#vidisk.sh按a或i进入编辑模式#!/bin/bashName=`hostname`Date=`date+%m%d%y`Num=`dmidecode|grep-i‘serialnumber‘|head-n1`Disk=`hpacuclictrlallshowconfig|grepphysicaldrive|awk-F[:""]+‘{print$15}‘`#echo$Diski=1;for..
分类:
其他好文 时间:
2014-06-17 17:44:32
阅读次数:
328
如果一个程序启动了很多进程,那怎么看所有的进程的PID呢,你可以ps-ef|grep进程查看,但是有一个好的命令pgrep可以快速的查看首先看一下pgrep的使用:pgrep是通过程序的名字来查询进程的工具,一般是用来判断程序是否正在运行。在服务器的配置和管理中,这个工具常被应用常用..
分类:
其他好文 时间:
2014-06-17 17:41:52
阅读次数:
338
vi.profile-----------------aliasls=‘ls-F‘aliascls=‘clear‘aliasgrep=‘grep--color=auto‘CLICOLOR="xterm-color"LSCOLORS="gxfxcxdxcxegedabagacad"exportCLICOLORLsCOLORSvi.vimrc-----------------syntaxon
分类:
其他好文 时间:
2014-06-17 17:27:36
阅读次数:
280
七. grep家族: 1. grep退出状态: 0: 表示成功; 1: 表示在所提供的文件无法找到匹配的pattern; 2: 表示参数中提供的文件不存在。 见如下示例: /> grep 'root' /etc/passwd root:x:0:0:root:/root:/bin/bash opera...
分类:
系统相关 时间:
2014-06-17 14:47:16
阅读次数:
312
grep(Globel Search Regular Expression and Printing out the line)全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,是一个对行进行操作的搜索工作,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgrep。 egrep表示扩展的grep,相比grep支持更多的元字符,"grep...
分类:
其他好文 时间:
2014-06-16 20:07:52
阅读次数:
220