起因:两台ibm 小型机搭建的oracle10g
rac环境,使用asm磁盘组,运行了多年没有问题,今天机房要计划停电,正常关机后,开机后数据库节点1无法自动启动,使用ps -ef |grep
d.bin查看,有crs进程。但是使用crs_stat -t 命令查看,报IOT/Abort trap(c...
分类:
数据库 时间:
2014-05-30 09:30:23
阅读次数:
394
FTP服务器的安装与配置(Ubuntu)1.查询是否安装vsftpd: rpm -qa |grep
vsftpd(rpm的安装:apt-get install rpm)或者查询当前ftp进程:ps -ef|grep
vsftpd2.安装vsftpd服务器:rpm -ivh vsftpd-*.rpm ...
分类:
系统相关 时间:
2014-05-30 02:00:41
阅读次数:
386
ifconfig |grep "inet addr"|cut -f 2 -d":"|cut
-f 1 -d " "|head -n 1ifconfigeth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx
inet addr:192.168.1.100 ....
分类:
系统相关 时间:
2014-05-29 20:55:58
阅读次数:
435
ShellLinux Shell脚本教程:30分钟玩转Shell脚本编程Bash
Shell字符串操作小结vivim使用vi、vim删除以及其他命令Vim静态模板文件打造自己的vim界面命令linux中grep命令的用法linux之sort用法gawkgawk手册Common
threads: Aw...
分类:
系统相关 时间:
2014-05-26 20:38:26
阅读次数:
332
http://blog.sina.com.cn/s/blog_62e7fe670101dg9d.htmlLinux下find一次查找多个指定文件或者排除某类文件,在
GREP 中匹配多个关键字的方法(1)Linux下find一次查找多个指定文件:查找a.html和b.htmlfind.-name"a...
分类:
系统相关 时间:
2014-05-26 11:52:02
阅读次数:
409
windows netstat -ano | find "8080"mac,Linux lsof
-i:8700 或者 lsof -i | grep 8700
分类:
其他好文 时间:
2014-05-26 09:44:32
阅读次数:
253
my @a=("a","b","c","d","e");my
@b=("b","g","f","e");my %a=map{$_=>1} @a;my %b=map{$_=>1} @b;# 交集@A =
grep( $a{$_}, @b ) ;# 补集@B1=grep(!defined $a{$_},...
分类:
其他好文 时间:
2014-05-26 08:02:22
阅读次数:
269
最近,在修改Android4.4的原生相机Camera2,很习惯的去寻找SurfaceView,结果任凭我使用grep还是ack,都无法搜索到SurfaceView,最后还是通过代码CameraActivity-->CameraModule-->PhotoUI-->R.layout.photo_module找到,原来是使用了TextureView。不是很了解此控件,百度之,在官方API文档中找到此...
分类:
移动开发 时间:
2014-05-26 04:55:25
阅读次数:
351
1.先用:ls -al /usr/lib | grep
libevent查看是否已安装,如果已安装且版本低于1.3,则先通过:rpm -e libevent —nodeps进行卸载。安装:# wget
http://www.monkey.org/~provos/libevent-1.4.13-sta...
分类:
其他好文 时间:
2014-05-25 23:34:50
阅读次数:
271
正则表达式是基于样式匹配的进行文本处理,透过一些特殊符号的辅助,可以达到搜寻、删除、取代某特定的字符串。
grep可用于shell脚本,因为grep通过返回一个状态值来说明搜索的状态,如果模板搜索成功,则返回0,如果搜索不成功,则返回1,如果搜索的文件不存在,则返回2。
..
分类:
其他好文 时间:
2014-05-24 16:58:02
阅读次数:
270