系统完整性审核工具shell脚本如下:#!/bin/bash
#
#变量首先声明才能使用
shopt-s-onounset
#声明
#建立日期
Date=$(date+‘%Y%m%d%H%M%S‘)
#加入审核的目录#
Dirs="/bin/sbin/usr/bin/usr/sbin/lib/usr/local/sbin/usr/local/bin/usr/local/lib"
#临时文件#
TMP_file=$(..
分类:
系统相关 时间:
2014-12-05 19:32:46
阅读次数:
216
#!/bin/sh#数据库备份文件所在路径db_dir=/backup/oracle/rman/dbfarchive_dir=/backup/oracle/rman/archivelog#临时目录,用于上传所找出的文件db_tmp_dir=/backup/oracle/rman/dbftmparchive_tmp_dir=/backup/oracle/rman/archivelogtmp#找出最新的数据库备份文件df_put_file..
分类:
Web程序 时间:
2014-12-05 19:31:57
阅读次数:
217
近日,VMwareWorkstation版本又一次升级,带来了VMwareWorkstation11.0.0的新版本,下面简单的介绍下新版本。关于新版本的介绍:http://www.vmware.com/products/workstation/特性1:LeadingEdgePCVirtualization特性2:StateoftheArtDesktopVirtualizationforWindowsandLinux..
分类:
系统相关 时间:
2014-12-05 19:32:36
阅读次数:
202
方法一:使用target-action设计模式代码如下:(由根视图推出子视图,再由子视图推出根视图,在推出根视图时,子视图传一个color的属性给根视图,用来修改根视图的背景颜色)根视图控制器代码://.m文件
-(void)viewDidLoad
{
[superviewDidLoad];
self.view.backgroundColor=[UIColorr..
分类:
移动开发 时间:
2014-12-05 19:31:57
阅读次数:
194
#!/usr/bin/envpython
#encoding:utf-8
importMySQLdb
importparamiko
importsys,os
fromemail.mime.textimportMIMEText
fromemail.headerimportHeader
importsmtplib
db1_ip="172.17.2.51"
db2_ip="172.17.2.52"
num=‘‘
mmm_info=‘‘
IoS=‘‘
SqS=‘‘
Sec=‘‘
e=‘‘
defdb_info(ip..
分类:
数据库 时间:
2014-12-05 19:30:01
阅读次数:
293
视频播放地址:http://v.youku.com/v_show/id_XODQyMDUxMDI0.html
Linux中DNS的搭建在这我就不对理论知识进行过多的阐述需要了解的到:http://baike.baidu.com/subview/22276/15346050.htm?fr=aladdin下来直接进入搭建使用的软件:Vmwareworkstation10rhel6.3(64位)使用的操作系统:[root@wang~]#uname-aLinuxwang2.6.32-279.el6.x86_64#1SMPW..
分类:
系统相关 时间:
2014-12-05 19:30:21
阅读次数:
292
class中变量默认是private,struct中的变量默认是public,其他两个均相似,可以有构造函数析构函数,也可以继承。
#include<iostream>
usingnamespacestd;
enumBREED{GOLDEN,CAIRN,DANDIE,SHETLAND,DOBERMAN,LAB};
structMammal
{
public:
Mammal():itsAge(2),itsWeight..
分类:
其他好文 时间:
2014-12-05 19:32:11
阅读次数:
142
首先,我yum的httpd,把备份好的文件会存到/data/backup,并且在http.conf中配置虚拟目录alias/mogodb/"/data/backup"
<Directory"/data/backup">
OptionsIndexesFollowSymLinks
AllowOverrideAll
Orderallow,deny
Allowfromall
</Directory>当我访问http://host/m..
分类:
Web程序 时间:
2014-12-05 19:30:39
阅读次数:
185
总结
本章主要简示了UITabView得使用方法,使用UITabViewController的三个页面演示不同情况,包括简单的表格,分段带副标题风格的表格以及索引表格。
运行结果
工程构建概要
1.UITabViewController的使用方法可参考以前的文章
2.使用UITabView的控制类必须实现该控件对应的数据源和代理的方法,同时需要在IB里面指定UI...
分类:
移动开发 时间:
2014-12-05 19:27:07
阅读次数:
233
NSFileManager *fileManager = [NSFileManager
defaultManager];
NSError *error;
//复制本地数据库文件到安装目录
NSArray *paths =
NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
N...
分类:
数据库 时间:
2014-12-05 19:26:07
阅读次数:
153
Oracle
Driver oracle.jdbc.driver.OracleDriver
URL jdbc:oracle:thin:@loaclhost:1521:orcl // orcl为数据库的SID
MySQL
Driver ...
分类:
数据库 时间:
2014-12-05 19:27:46
阅读次数:
227
堆中几乎存放着Java世界中所有的对象实例,垃圾收集器在对堆回收之前,第一件事情就是要确定这些对象哪些还“存活”着,哪些对象已经“死去”(即不可能再被任何途径使用的对象)
1.引用计数算法
很多教科书判断对象是否存活的算法是这样的:给对象中添加一个引用计数器,每当有一个地方引用它时,计数器值加1;当引用失效时,计数器减1;任何时刻计数器都为0的对象就是不可能再被使用的。
引...
分类:
编程语言 时间:
2014-12-05 19:28:36
阅读次数:
252
UIButton *leftBtn = [UIButton
buttonWithType:UIButtonTypeCustom];
[leftBtn setTitleColor:lightBlue
forState:UIControlStateNormal];
leftBtn.backgroundColor = [UIColor
clearColor];
l...
分类:
其他好文 时间:
2014-12-05 19:26:24
阅读次数:
131
//
#include "stdafx.h"
#include"mpi.h"
#include
#include
#include
using namespace std;
#define TRUE 1
/*
* 函...
分类:
其他好文 时间:
2014-12-05 19:26:21
阅读次数:
251