文章列表
[root@localhost network-scripts]# cat ifcfg-br0
DEVICE=br0
HWADDR="F0:DE:F1:57:2B:09"
IPADDR=192.168.6.1
TYPE=Bridge
NM_CONTROLLED="yes"
ONBOOT=yes
[root@localhost network-scripts]# cat ifcfg-eth0
DEVICE="eth0"
HWADDR="F0:DE:F1:57:2B:09"
BRIDG ...
命令:
visudo -f /etc/sudoers
在 “ root ALL=(ALL) ALL ” 下添加 “ 帐号名 ALL=(ALL) ALL ”
例如: test1 ALL=(ALL) ALL
查询网站
http://rpm.pbone.net/
chrome浏览器安装中提示少依赖包
安装如下两个包
pax-3.4-10.fc12.i686.rpm
redhat-lsb-4.0-4.fc12.i686.rpm
rpm安装
rpm -ivh xxxxx.rpm
rpm强制安装
rpm -ivh xxxxx.rpm --nodeps
css 在线教程网站
http://www.w3school.com.cn/index.html
项目立项
立项申请
项目预算
合同审批
需求调研
调研准备
调研计划
调研问题
现在调研
业务流程
业务数据
其它功能意见
需求整理
编写需求规格说明书
确认需求规格说明书
总体设计
系统总体设计
数据库设计
功能设计
页面设计
接口设计
与其它系统的设计
设计整理
设计方案
方案确认
系统研发
系统研发
接口研发
系统测试
测试设计
测试大纲
测试计划
系统测试
各模块测试
接口测试
public static void main(String[] args) {
String parten ="#.0%";
DecimalFormat decimal = new DecimalFormat(parten);
decimal.setMaximumFractionDigits(2);
// setRoundingMode为1.6 新增方法
decimal.setRoundingMode(RoundingMode.HALF_UP);
String str= decimal.format(0.7233);
Strin ...
查看端口
iptables -L -n --line-num
添加端口
iptables -A INPUT -p tcp --dport 80 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
关闭端口
iptables -A OUTPUT -p tcp --sport 80 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
保存配置
/sbin/service iptables save
重启
service iptables restart